[jOOQ/jOOQ#10180] Add native support for DECODE where it is supported

This commit is contained in:
Lukas Eder 2020-05-08 09:52:30 +02:00
parent fc3b9cdca1
commit e30c32bc8d

View File

@ -82,7 +82,9 @@ final class Decode<T, Z> extends AbstractField<Z> {
case H2:
ctx.visit(function("decode", getDataType(), Tools.combine(field, search, result, more)));
return;
// Other dialects emulate it with a CASE ... WHEN expression
default: