You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To improve null-safety, Querydsl predicates should not be null. Also, QuerydslPredicateExecutor doesn't accept null values so usage of QuerydslPredicateBuilder always requires special handling on the calling side.
The text was updated successfully, but these errors were encountered:
We now no longer return a null Predicate from QuerydslPredicateBuilder.getPredicate(…) if the input values are empty or if the constraints are empty. Instead, we return an empty BooleanBuilder instance to avoid null handling on the calling side.
HandlerMethodArgumentsResolvers for QuerydslBindings retain their null/Optional.empty semantics.
Closes#2396
To improve null-safety, Querydsl predicates should not be
null
. Also,QuerydslPredicateExecutor
doesn't acceptnull
values so usage ofQuerydslPredicateBuilder
always requires special handling on the calling side.The text was updated successfully, but these errors were encountered: