在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有可能吗?
答案 0 :(得分:4)