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

相关文章
相关标签/搜索