我创建了一个类型
create type (
street text,
city text,
state text,
zip int
);
然后尝试创建一个这样的表:
create table (
fName text PRIMARY KEY,
addressess map<text, frozen<address>>
);
但我不断收到此错误:
SyntaxException: <ErrorMessage code=2000 [Syntax error in CQL query] message="line 1:78 no viable alternative at input '<' (..., addresses <string, frozen [<]...)">
我在datastax上关注了这个文档,而我在版本2.1.8上关注了这个文档 http://docs.datastax.com/en/cql/3.1/cql/cql_using/cqlUseUDT.html