Hi,
I am using Cassandra database with CQL version 3.4.5
When I search for a timestamp column then I get result in milliseconds with more precision.
For eg 2020-08-18 14:06:12.000000+0000
Now, when I use this timestamp for filter condition then it is providing following error:
InvalidRequest: Error from server: code=2200 [Invalid query] message="Unable to coerce '2020-08-18 14:06:12.000000+0000' to a formatted date (long)"
Sample query:
SELECT * FROM "Account" WHERE "appId" = 'CAMR-IGAManagedApplication' AND "nativeType" = 'Account' AND "tenantId" = 'Default' AND "ownerId" = 'PMATHUR' AND "updateTime" < '2020-08-18 14:06:12.000000+0000' ORDER BY "updateTime" DESC LIMIT 10;
Please let me know how can we resolve this error.