When I do select * from "TableToFetch" where column1='2js88saa-33oo-pzl7-b517-8584j2kf8wdd'; I get this error:
Bad Request: Invalid STRING constant (2js88saa-33oo-pzl7-b517-8584j2kf8wdd) for column1 of type timeuuid
These didn't help:
select * from "TableToFetch" where column1="2js88saa-33oo-pzl7-b517-8584j2kf8wdd"; returns
Bad Request: line 1:52 no viable alternative at input '2js88saa-33oo-pzl7-b517-8584j2kf8wdd'
select * from "TableToFetch" where column1=2js88saa-33oo-pzl7-b517-8584j2kf8wdd; returns
Bad Request: TimeUUID supports only version 1 UUIDs
What do I do?