Open
Description
jOOQ 3.20 fixes a bug when comparing LOB values in Oracle:
The above fix only addresses ordinary comparison predicates (=
, !=
, <
, <=
, >
, >=
). Quantified comparsion predicates aren't fixed yet, i.e. these are unlikely to work, still:
(lob, x) = ((lob, y))
(lob, x) in (lob, y)
As with #17600, other dialects are probably affected as well.
Activity