[
https://issues.apache.org/jira/browse/CASSANDRA-6706?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Benjamin Lerer updated CASSANDRA-6706:
--------------------------------------
Component/s: CQL
> Duplicate rows returned when in clause has repeated values
> ----------------------------------------------------------
>
> Key: CASSANDRA-6706
> URL: https://issues.apache.org/jira/browse/CASSANDRA-6706
> Project: Cassandra
> Issue Type: Bug
> Components: CQL
> Environment: Found on
> [cqlsh 4.1.0 | Cassandra 2.0.3-SNAPSHOT | CQL spec 3.0.0 | Thrift protocol
> 19.38.0]
> Reporter: Gavin Casey
> Assignee: Benjamin Lerer
> Labels: cql
> Fix For: 2.2.0 beta 1
>
> Attachments: CASSANDRA-6706-2.1.txt, CASSANDRA-6706-trunk-V2.txt,
> CASSANDRA-6706-trunk.txt
>
>
> If a value is repeated within an IN clause then repeated rows are returned
> for the repeats:
> cqlsh> create table t1(c1 text primary key);
> cqlsh> insert into t1(c1) values ('A');
> cqlsh> select * from t1;
> c1
> ----
> A
> cqlsh> select * from t1 where c1 = 'A';
> c1
> ----
> A
> cqlsh> select * from t1 where c1 in( 'A');
> c1
> ----
> A
> cqlsh:dslog> select * from t1 where c1 in( 'A','A');
> c1
> ----
> A
> A
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)