I have created a table in crate DB with timestamp column. However while inserting records into it, there is not timezone information passed along as mentioned in the docs.
insert into t1 values(2,'2017-06-30T02:21:20');
this gets stored as:
2 | 1498789280000 (Fri, 30 Jun 2017 02:21:20 GMT)
Now my queries are all failing as the timestamp has got recorded as GMT and my queries are all in localtime timezone (Asia/Kolkata)
If anyone has run into this problem, could you please let me know whats the best way to modify the column to change values from GMT to IST without losing it, It has couple of millions of important records which cannot be lost or corrupted.
cheers!