Skip to content

Commit

Permalink
try enabling a commented test
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin King <gavin@hibernate.org>
  • Loading branch information
gavinking committed May 2, 2024
1 parent 8b118c2 commit 54b7b78
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1238,9 +1238,8 @@ public void testAggregateFunctions(SessionFactoryScope scope) {
.list();
session.createQuery("select any(e.theInt > 0), every(e.theInt > 0) from EntityOfBasics e", Object[].class)
.list();
//not supported by grammar:
// session.createQuery("select any(e.theBoolean), every(e.theBoolean) from EntityOfBasics e")
// .list();
session.createQuery("select any(e.theBoolean), every(e.theBoolean) from EntityOfBasics e")
.list();
session.createQuery("select some(e.theInt > 0), all(e.theInt > 0) from EntityOfBasics e", Object[].class)
.list();
}
Expand Down

0 comments on commit 54b7b78

Please sign in to comment.