With cassandra-1.1.2. The Schema like this.
CREATE TABLE contacts (
userid text,
contactid text,
groups text,
name text,
PRIMARY KEY (userid, contactid)
)
All the date it contains.
cqlsh:contactks> select * from contacts;
userid | contactid | groups | name
--------+-----------+--------+------
a | a11 | a13 | a12
a | a21 | a23 | a22
a | a31 | a33 | a32
b | b11 | b13 | b12
so I make a query like this:
cqlsh:contactks> select * from contacts where contactid in ('a11', 'a21');
cqlsh:contactks>
Returns nothing!!! How can I get values with the "IN" option without make the "contactid" as a partition key? Thanks a lot.