Support query by names for compact CF
-------------------------------------

                 Key: CASSANDRA-3791
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-3791
             Project: Cassandra
          Issue Type: Sub-task
          Components: API
            Reporter: Sylvain Lebresne
            Assignee: Sylvain Lebresne
            Priority: Minor
             Fix For: 1.1


Current code don't allow doing a query by names on wide rows (compact CF). I.e. 
with:
{noformat}
CREATE TABLE test1 (
    k int,
    c int,
    v int,
    PRIMARY KEY (k, c)
) WITH COMPACT STORAGE;
{noformat}
you cannot do:
{noformat}
SELECT v FROM test1 WHERE k = 0 AND c IN (5, 2, 8)
{noformat}
even though this is a simple name query.

This ticket proposes to allow it.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to