[
https://issues.apache.org/jira/browse/CASSANDRA-6160?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jonathan Ellis updated CASSANDRA-6160:
--------------------------------------
Reviewer: Jonathan Ellis
Component/s: API
Fix Version/s: 1.2.11
Assignee: Sylvain Lebresne
> 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
> Components: API
> Reporter: Adam Hattrell
> Assignee: Sylvain Lebresne
> Priority: Minor
> Fix For: 1.2.11
>
>
> 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)