I have the below presto query to retrieve data from cassandra
select * from table where created_time >= '2017-03-23 00:00:00.0' and created_time <= '2017-03-25 00:00:00.0';
The table has 70 rows with created_time as 2017-03-25 but the above query is not returning me all the rows.
created_time is defined as timeuuid in cassandra. Can someone help me why the query does not work
select * from table limit 10;
, what values do you get in create_time? Keep in mind that in Presto, thetimeuuid
type is mapped toVARCHAR
. – Christina Wallin