-
Task
-
Resolution: Done
-
Major
-
15.0.0.Final
-
None
Testing the aggregations it seems that we support:
select status, count(code) from org.infinispan.query.model.Sale where day = :day group by status order by status
but we didn't support:
select status, count(*) from org.infinispan.query.model.Sale where day = :day group by status order by status
The former should return the count of the group counting all the instances having code not null while the latter all the instances.