3

我正在使用 Cassandra 1.1.0 和 CQL 3.0。

创建表时,出现以下错误。我提到了http://www.datastax.com/dev/blog/cql3-evolutions

cqlsh:test> CREATE TABLE timeseries (
        ...   event_type text,
        ...   insertion_time timestamp,
        ...   event blob,
        ...   PRIMARY KEY (event_type, insertion_time)
        ... ) WITH CLUSTERING ORDER BY insertion_time DESC;
Bad Request: line 6:22 mismatched input 'ORDER' expecting '='

这是无效的查询吗?你有什么建议吗?

谢谢。

4

2 回答 2

8

WITH CLUSTERING ORDER语法仅在 Cassandra 1.1.1(几天前刚刚发布)中添加,因此在 1.1.0 中不起作用。

此外,该示例在聚类定义周围缺少一些括号。你要:

CREATE TABLE timeseries (
   event_type text,
   insertion_time timestamp,
   event blob,
   PRIMARY KEY (event_type, insertion_time)
) WITH CLUSTERING ORDER BY (insertion_time DESC);

希望有帮助。我会让那篇文章的作者知道这个问题。

于 2012-06-05T18:39:07.870 回答
0

是的,您可以在此链接中查看详细信息 http://www.datastax.com/documentation/cql/3.0/cql/cql_reference/create_table_r.html

于 2013-07-31T14:13:59.770 回答