I was trying to insert a specific timeuuid to cassandra and the only way I managed to insert one was using the now() function, because I assume, the now function knows what format the database likes it.
How do I create cqlsh command for this?
Currently I have this:
INSERT INTO my_table (tid) VALUES ( now() )
But I would like to be able to have 100% control of what date I insert for testing purposes when I am debugging my node.js or whatever program interfacing cassandra.
It would be nice to have something like:
INSERT INTO my_table (tid) VALUES ( 12/OCTOBER/2014 )
without it crashing
Thanks!