Re: CQL3 to ORDER BY Verification

2013-03-01 Thread Adam Venturella
Perfect! Thanks for the response Sylvain! On Friday, March 1, 2013, Sylvain Lebresne wrote: > On Fri, Mar 1, 2013 at 5:16 PM, Adam Venturella > > > wrote: > >> My ColumnFamily is defined as follows: >> >> >> CREATE TABLE UserProfileHistory( >> username text, >> timestamp bigint, -- mill

Re: CQL3 to ORDER BY Verification

2013-03-01 Thread Sylvain Lebresne
On Fri, Mar 1, 2013 at 5:16 PM, Adam Venturella wrote: > My ColumnFamily is defined as follows: > > > CREATE TABLE UserProfileHistory( > username text, > timestamp bigint, -- millis since epoch > data text, -- JSON > PRIMARY KEY (username, timestamp) > ) WITH CLUSTERING ORDER BY (t

CQL3 to ORDER BY Verification

2013-03-01 Thread Adam Venturella
My ColumnFamily is defined as follows: CREATE TABLE UserProfileHistory( username text, timestamp bigint, -- millis since epoch data text, -- JSON PRIMARY KEY (username, timestamp) ) WITH CLUSTERING ORDER BY (timestamp DESC); Each insert on the username adds to the wide row. The