Here is my schema:
CREATE TABLE test (
x int,
y int,
z int,
PRIMARY KEY (x)
);
If I run follow query:
select * from test where x in (1,1,1);
Cassandra will return 3 duplicate rows for me. It seems like Cassandra execute the prepared statement to the same partition for 3 times in the query trace.
Does this the default behaviour for Cassandra.
Environment: [cqlsh 5.0.1 | Cassandra 2.1.9 | CQL spec 3.2.0 | Native protocol v3]