Closed
Description
With #541 (DATAJPA-121), we introduced a long time ago rewrite from foo = ?
to foo IS NULL
if the query method argument yields null
. We should consistently rewrite its negating form from foo <> ?
to foo IS NOT NULL
if the query method argument is null
.