diff --git a/documentation/src/main/asciidoc/userguide/chapters/query/hql/QueryLanguage.adoc b/documentation/src/main/asciidoc/userguide/chapters/query/hql/QueryLanguage.adoc index d5916072d3..f6b4c1205d 100644 --- a/documentation/src/main/asciidoc/userguide/chapters/query/hql/QueryLanguage.adoc +++ b/documentation/src/main/asciidoc/userguide/chapters/query/hql/QueryLanguage.adoc @@ -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` | ✗ +| `every()` | Logical predicate | `Boolean` | ✗ |=== NOTE: Aggregate functions usually appear in the `select` clause, but control over aggregation is the responsibility of the `group by` clause, as described <>.