Прекарах известно време в разглеждане на това, защото наистина искам да сравня "date is null" в заявките и това е резултатът:
Когато използвате „cast(foo.date as date) е null ", работи добре, ако полето не е null. Ако полето е null, това изключение се хвърля:
org.postgresql.util.PSQLException: ERROR: cannot cast type bytea to date
Решението е да използвате coalesce:
coalesce(:date, null) is null
Работи добре с или без данни в полеви тестове.
Моят пример за заявка:
@Query("SELECT c "
+ " FROM Entity c "
+ " WHERE "
+ " and ( (coalesce(:dateFrom, null) is null and coalesce(:dateUntil, null) is null) "
+ " or ((coalesce(c.date, null) is not null) "
+ " and ( "
+ " ((coalesce(:dateFrom, null) is null and coalesce(:dateUntil, null) is not null) and c.date <= :dateUntil) "
+ " or ((coalesce(:dateUntil, null) is null and coalesce(:dateFrom, null) is not null) and c.date >= :dateFrom)"
+ " or (c.date between :dateFrom and :dateUntil)"
+ " )"
+ " )"
+ " ) "
Надяваме се, че работи за вас!