Hi,
I'm using Cassandra Workbench to run my code against cassandra and it is just great to use it.
At some point i need to run a command with a reserved word for a column.
Could be possible to escape this keywords to be able to execute the code?
When i try to run this code it's not executed in cassandra even when it works in cqlsh.
´´´
CREATE TABLE keyspace.table(
uniqueid text,
timestamp timestamp,
PRIMARY KEY (uniqueid , timestamp)
) WITH CLUSTERING ORDER BY (timestamp ASC);
´´´
Thanks in advance
Hi,
I'm using Cassandra Workbench to run my code against cassandra and it is just great to use it.
At some point i need to run a command with a reserved word for a column.
Could be possible to escape this keywords to be able to execute the code?
When i try to run this code it's not executed in cassandra even when it works in cqlsh.
´´´
CREATE TABLE keyspace.table(
uniqueid text,
timestamp timestamp,
PRIMARY KEY (uniqueid , timestamp)
) WITH CLUSTERING ORDER BY (timestamp ASC);
´´´
Thanks in advance