You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Adam Hattrell (JIRA)" <ji...@apache.org> on 2013/10/08 12:26:41 UTC

[jira] [Created] (CASSANDRA-6160) Throw errror when attempting to create a secondary index against counter

Adam Hattrell created CASSANDRA-6160:
----------------------------------------

             Summary: Throw errror when attempting to create a secondary index against counter
                 Key: CASSANDRA-6160
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-6160
             Project: Cassandra
          Issue Type: Bug
            Reporter: Adam Hattrell
            Priority: Minor


Using CQL you can create a secondary index against a counter which is then non-functional.  

{code}
cqlsh:test> create table test2 (col1 int, col2 counter, primary key (col1)) ;
cqlsh:test> create index dodgy on test2(col2) ;
cqlsh:test> update test2 set col2 = col2 + 0 where col1 = 1 ;
cqlsh:test> select * from test2 ;

 col1 | col2
------+------
    1 |    0

cqlsh:t7088> select * from test2 where col2 = 0 ;
{code}

We should return an error to let users know they are in unsupported territory.




--
This message was sent by Atlassian JIRA
(v6.1#6144)