Spędziłem trochę czasu, patrząc na to, ponieważ naprawdę chcę porównać „data jest pusta” w zapytaniach i to jest wynik:
Gdy używasz „cast(foo.date as date) is null ", działa dobrze, jeśli pole nie jest puste. Jeśli pole jest puste, zgłaszany jest wyjątek:
org.postgresql.util.PSQLException: ERROR: cannot cast type bytea to date
Rozwiązaniem jest użycie koalescencji:
coalesce(:date, null) is null
Działa dobrze, mając lub nie dane w testowanym polu.
Przykład mojego zapytania:
@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)"
+ " )"
+ " )"
+ " ) "
Mam nadzieję, że to działa dla Ciebie!