Cassandra1.1.0とCQL3.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 '='
これは無効なクエリですか?何か提案はありますか?
ありがとう。