hbase里插入big int数据用Phoenix查看的报错问题

  • Phoenix建表

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

clipboard.png

  • 在hbase里put数据

hbase 里面进行put: put 'test_big_int','001','ci:column1',1'

  • 在Phoenix里进行查看(问题出现

hbase里插入big int数据用Phoenix查看的报错问题_第1张图片


第二个尝试:

  • 在Phoenix里插入big int类型的数据

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

select * from "test_big_int" limit 1;

hbase里插入big int数据用Phoenix查看的报错问题_第2张图片

  • 在hbase里进行查看(问题出现

scan 'test_big_int'

clipboard.png

你可能感兴趣的:(phoenix,hbase)