Using DataStax 4.8.11 with Cassandra 2.1.17, Ubuntu14.04 I am trying to create a table with time data type. The syntax works fine on Cassandra 2.2.8/Win7, but not on DataStax 4.8.11.
CREATE KEYSPACE tests WITH REPLICATION = {'class' : 'SimpleStrategy', 'replication_factor': 1};
CREATE TABLE testts (
ID int PRIMARY KEY,
mdate timestamp,
ttime time);
I get error :
Invalid request: code=2200 [Invalid Query] message=Unknown type tests.time]
Thanks