minor improvement to table in doc

This commit is contained in:
Gavin King 2022-10-09 11:45:04 +02:00
parent f1dd638519
commit 4453af984b
1 changed files with 3 additions and 3 deletions

View File

@ -2043,10 +2043,10 @@ include::{sourcedir}/HQLTest.java[tags=hql-aggregate-functions-example]
HQL defines the two additional aggregate functions which accept a logical predicate as an argument, for example, `every(p.amount < 1000.0)`.
|===
| Aggregate function | Argument type | Result type
| Aggregate function | Argument type | Result type | JPA standard
| `any()` | Logical predicate | `Boolean`
| `every()` | Logical predicate | `Boolean`
| `any()` | Logical predicate | `Boolean` | &cross;
| `every()` | Logical predicate | `Boolean` | &cross;
|===
NOTE: Aggregate functions usually appear in the `select` clause, but control over aggregation is the responsibility of the `group by` clause, as described <<hql-group-by,below>>.