这是我对impala-shell的创建声明:
CREATE TABLE IF NOT EXISTS tmp.demo0011(
uid Bigint, comment'用户uid'
nick String, comment'昵称'
primary key(uid)
)
partition by hash(uid) partitions 128
stored as kudu
tblproperties (
'kudu.master_addresses'='10.10.10.1'
);
输入desc tmp.demo0011;
后,我得到:
+------+--------+---------+ | name | type | comment | +------+--------+---------+ | uid | bigint | | | nick | string | | +------+--------+---------+
评论部分为空。为什么?
谢谢。
答案 0 :(得分:1)
好的,我知道为什么。
当我输入时:
alter table demo0011 change uid uid bigint comment 'test comment';
我得到:
错误:AnalysisException:Kudu不支持列注释。