You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
It would work if kundera supported setting parameters on native queries.
According to this issue and my own tests, setting parameters on native queries is not supported.
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?
The text was updated successfully, but these errors were encountered: