- Phoenix建表
create table "test_big_int"(
"ROW" varchar primary key,
"ci"."column1" bigint
)
- 在hbase里put数据
hbase 里面进行put: put 'test_big_int','001','ci:column1',1'
- 在Phoenix里进行查看(问题出现)
第二个尝试:
- 在Phoenix里插入big int类型的数据
phoenix里进行insert:upsert into "test_big_int" ("ROW","ci"."column1") values ('000',0);
select * from "test_big_int" limit 1;
- 在hbase里进行查看(问题出现)
scan 'test_big_int'