hbase裏插入big int數據用Phoenix查看的報錯問題

  • Phoenix建表

create table "test_big_int"(
"ROW" varchar primary key,
"ci"."column1" bigint
)spa

clipboard.png

  • 在hbase裏put數據

hbase 裏面進行put: put 'test_big_int','001','ci:column1',1'ip

  • 在Phoenix裏進行查看(問題出現

clipboard.png


第二個嘗試:ci

  • 在Phoenix裏插入big int類型的數據

phoenix裏進行insert:upsert into "test_big_int" ("ROW","ci"."column1") values ('000',0);it

select * from "test_big_int" limit 1;table

clipboard.png

  • 在hbase裏進行查看(問題出現

scan 'test_big_int'class

clipboard.png

相關文章
相關標籤/搜索