T Jake Luciani created CASSANDRA-4716:
-----------------------------------------
Summary: CQL3 predicate logic is reversed when used on a reversed
column
Key: CASSANDRA-4716
URL: https://issues.apache.org/jira/browse/CASSANDRA-4716
Project: Cassandra
Issue Type: Bug
Components: Core
Affects Versions: 1.1.0
Reporter: T Jake Luciani
Fix For: 1.1.6
Example:
{code}
cqlsh:test>
cqlsh:test> CREATE TABLE testrev (
... key text,
... rdate timestamp,
... num double,
... PRIMARY KEY(key,rdate)
... ) WITH COMPACT STORAGE
... AND CLUSTERING ORDER BY(rdate DESC);
cqlsh:test> INSERT INTO testrev(key,rdate,num) VALUES ('foo','2012-01-01',10.5);
cqlsh:test> select key from testrev where rdate > '2012-01-02' ;
key
-----
foo
cqlsh:test> select key from testrev where rdate < '2012-01-02' ;
cqlsh:test>
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira