Kudu表注释未显示。我该怎么办?

时间:2018-10-24 10:32:31

标签: impala apache-kudu

这是我对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 |         |
+------+--------+---------+

评论部分为空。为什么?

谢谢。

1 个答案:

答案 0 :(得分:1)

好的,我知道为什么。

当我输入时:

alter table demo0011 change uid uid bigint comment 'test comment';

我得到:

  

错误:AnalysisException:Kudu不支持列注释。