Why does this CQL return empty results with beginning and ending date range are the same value
问题 I am writing a parameterized CQL statement that is not behaving as I would expect. I am trying to return a list of records for a range of dates that in this instance are using the same date for the beginning and end points. The table is defined as follows: CREATE TABLE sometable ( partition_key varchar, cluster_start_date timestamp, other_cluster_key varchar, data varchar, PRIMARY KEY((partition_key), cluster_start_date, other_cluster_key) ) WITH CLUSTERING ORDER BY(cluster_start_date ASC,