PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Spring Data Rest:la query Date is null genera un'eccezione postgres

Ho passato del tempo a guardare questo perché voglio davvero confrontare "la data è nulla" nelle query e questo è il risultato:

Quando utilizzi "cast(foo.date as date) is null ", funziona bene se il campo non è nullo. Se il campo è nullo viene generata questa eccezione:

org.postgresql.util.PSQLException: ERROR: cannot cast type bytea to date

La soluzione è utilizzare coalescente:

coalesce(:date, null) is null

Funziona bene avendo o meno dati testati sul campo.

Il mio esempio di query:

@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)"
        + "                 )"
        + "             )"
        + "       ) "

Spero che funzioni per te!