gustafn
committed
on 15 Feb 22
Fixes for Oracle 19c boolean types in query

This fixes the following bug for Oracle:
: SQL:
: select locale
: from… Show more
Fixes for Oracle 19c boolean types in query

This fixes the following bug for Oracle:

:    SQL:

:            select locale

:            from ad_locales l

:            where language = :language

:              and enabled_p

:              !>>>!and (default_p or not exists (select 1 from ad_locales

:                                             where language = :language

:                                               and locale <> l.locale))

:

Show less