Does anyone know, is the "floor" function available in Apache Cassandra?
This query works on Datastax's Cassandra
SELECT min(value) AS min, timestamp FROM test WHERE id=2020 AND timestamp>=1596240000073 AND timestamp<1598917999073 GROUP BY floor(timestamp, 10s);
But I can't run the same on Apache Cassandra.