Hello!
I have a column family to log in data coming from my GPS devices.
CREATE TABLE log(
imei ascii,
date ascii,
dtime timestamp,
data ascii,
stime timestamp,
PRIMARY KEY ((imei, date), dtime))
WITH CLUSTERING ORDER BY (dtime DESC)
;
It is the standard schema for modeling time se
Hi
I have run into the following issue
https://issues.apache.org/jira/browse/CASSANDRA-6722 when running a query
(contains IN on the partition key and an ORDER BY ) using datastax driver
for Java.
However, I am able to run this query alright in cqlsh.
cqlsh:> show version;
[cqlsh 5.0.1 | Cassand