CQL timestamps and timezones

2012-12-07 Thread B. Todd Burruss
trying to figure out if i'm doing something wrong or a bug. i am creating a simple schema, inserting a timestamp using ISO8601 format, but when retrieving the timestamp, the timezone is displayed incorrectly. i'm inserting using GMT, the result is shown with +, but the time is for my local

Re: CQL timestamps and timezones

2012-12-07 Thread Bryan Talbot
With 1.1.5, the TS is displayed with the local timezone and seems correct. cqlsh:bat create table test (id uuid primary key, ts timestamp ); cqlsh:bat insert into test (id,ts) values ( '89d09c88-40ac-11e2-a1e2-6067201fae78', '2012-12-07T10:00:00-'); cqlsh:bat select * from test; id