| Trying to prepare an IN clause via the criteria API I use the CriteriaBuilder to lookup a parameter of type Iterable
ParameterExpression<Iterable> expression = cb.parameter(Iterable.class);
root.get("id").in(expression);
This code works fine on Hibernate 5.1, fails with the following exception on Hibernate 5.2:
|