[
https://issues.apache.org/jira/browse/CASSANDRA-5300?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13589750#comment-13589750
]
Aleksey Yeschenko commented on CASSANDRA-5300:
----------------------------------------------
1.1 is not affected - this is a 1.2 regression.
{noformat}
update demo set c = 20 where id = 0;
Bad Request: invalid operation for commutative columnfamily demo
{noformat}
> Insufficient validation of UPDATE queries against counter cfs
> -------------------------------------------------------------
>
> Key: CASSANDRA-5300
> URL: https://issues.apache.org/jira/browse/CASSANDRA-5300
> Project: Cassandra
> Issue Type: Bug
> Components: Core
> Affects Versions: 1.2.0
> Reporter: Aleksey Yeschenko
> Fix For: 1.2.3
>
>
> {noformat}
> CREATE TABLE demo (
> id int PRIMARY KEY,
> c counter
> )
> {noformat}
> This is expected:
> {noformat}
> insert into demo (id, c) VALUES ( 0, 20);
> Bad Request: INSERT statement are not allowed on counter tables, use UPDATE
> instead
> {noformat}
> This should also be forbidden, but it is not:
> {noformat}
> update demo set c = 20 where id = 0;
> select * from demo;
> id | c
> ----+----
> 0 | 20
> {noformat}
--
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