How can I change the TTL value for SnappyData table?
For Example: If I create table with TTL = 60 seconds:
CREATE TABLE APP.TEST (ID INTEGER NOT NULL PRIMARY KEY, TTL INTEGER) USING ROW OPTIONS (PARTITION_BY 'ID', EXPIRE '60') ;
How can I change the TTL value later if required?