在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的每个字段提供描述。在卡桑德拉有可能吗?