I want to execute this query:
select * FROM "data-api-timestream-test"."table_test" where time = 1637339664248
I get the error:
line 1:71: '=' cannot be applied to timestamp, bigint
I also tried
select * FROM "data-api-timestream-test"."table_test" where time = cast(1637339664248 as timestamp)
I get the error:
line 1:73: Cannot cast bigint to timestamp