Stratio / cassandra-lucene-index

Lucene based secondary indexes for Cassandra
Apache License 2.0
600 stars 170 forks source link

Another CQL "date" type: No results #414

Open kotdv opened 5 years ago

kotdv commented 5 years ago

The same bug as in #158 still occurs for slightly different table setup. It occurs in 3.11.3 plugin and probably everywhere else if table is created like below.

CREATE TABLE test_date.test (
  id text,
  dob date,
  lucene text,
  PRIMARY KEY ((id), date)
) WITH CLUSTERING ORDER BY (date desc);

WITH CLUSTERING ORDER BY (date desc); is the cause.