是否有可能在cassandra中为UDT写评论?

时间:2018-01-23 07:29:17

标签: cassandra comments cassandra-3.0 user-defined-types

在Cassandra中,对于表格,我们可以写下如下评论:

CREATE TABLE company.address( id int PRIMARY KEY, street text, ... ) WITH COMMENT = 'Table containing the address of company id - unique identifier of a company, street - street of the company';

但是对于UDT(用户定义的类型),我找不到是否有一种方法来编写注释,我想为UDT的每个字段提供描述。在Cassandra有可能吗?

1 个答案:

答案 0 :(得分:4)

cassandra 3.x(最新版本)中无法对列进行注释。

相同CASSANDRA-9836的Jira Ticket。

截至目前,最好的办法是使用自解释的列名。