hat has a secondary index created on it:
>>
>>
>>
>> http://www.datastax.com/documentation/cql/3.1/cql/cql_reference/select_r.html
>>
>>
>>
>> From: Mikhail Mazursky [mailto:ash...@gmail.com]
>> Sent: vrijdag 25 april 2014 11:01
>> To:
/3.1/cql/cql_reference/select_r.html
>
>
>
> *From:* Mikhail Mazursky [mailto:ash...@gmail.com]
> *Sent:* vrijdag 25 april 2014 11:01
> *To:* user@cassandra.apache.org
> *Subject:* Select with filtering
>
>
>
> Hello all,
>
> I have the following schema:
From: Mikhail Mazursky [mailto:ash...@gmail.com]
Sent: vrijdag 25 april 2014 11:01
To: user@cassandra.apache.org
Subject: Select with filtering
Hello all,
I have the following schema:
CREATE TABLE my_table (
a varchar,
b varchar,
c int,
d varchar,
e uuid,
PRIMARY KEY ((a, b
Hello all,
I have the following schema:
CREATE TABLE my_table (
a varchar,
b varchar,
c int,
d varchar,
e uuid,
PRIMARY KEY ((a, b), c, d)
)
SELECT * FROM my_table WHERE a=? AND b=? AND e=? ALLOW FILTERING
The query above gives me the following exception message:
com.da