For a table that has only primary columns. we insert a row with ttl. now how do we check what is the ttl associated with the row.
I am talking about data inserted by this dml
INSERT INTO test.table (id, wsid) VALUES (‘test-rand-id’, ‘test-ws-id’) USING TTL 10;
and table created using this ddl
CREATE TABLE IF NOT EXISTS test.table ( id text, wsid text,PRIMARY KEY ((id, wsid))) WITH bloom_filter_fp_chance = 0.005;