I'm using cassandra 3.11.0 and it looks that aggregate functions are not supported.
A simple query like:
SELECT MAX(field) FROM Table t WHERE id = :value
is translated to CQL by kundera as
SELECT * FROM "Table" WHERE "id" = value
and getSingleResult() returns an Entity object instead of a field.
Are there any plans to add support for standard aggregate functions?
I'm using cassandra 3.11.0 and it looks that aggregate functions are not supported.
A simple query like:
SELECT MAX(field) FROM Table t WHERE id = :valueis translated to CQL by kundera as
SELECT * FROM "Table" WHERE "id" = valueand
getSingleResult()returns an Entity object instead of a field.Are there any plans to add support for standard aggregate functions?