h5chauhan
h5chauhan

Reputation: 1291

Select write time of collection column cassandra

How to select WRITETIMEof a column of type list<text> in Cassandra. I get the following exception when I try this SELECT WRITETIME (column_name) from TABLE_NAME WHERE ID='1';
Exception com.datastax.driver.core.exceptions.InvalidQueryException: Cannot use selection function writeTime on collections

Upvotes: 2

Views: 1726

Answers (1)

Zanson
Zanson

Reputation: 4031

There is not currently a way to get the writetime of the values in a collection column.

Upvotes: 2

Related Questions