[jOOQ/jOOQ#18970] ORA-01790 when projecting NULL bind value of type BLOB in UNION ALL query

This commit is contained in:
Lukas Eder 2025-09-01 12:33:56 +02:00
parent 233fa3e981
commit 3d21f331f0

View File

@ -2274,12 +2274,19 @@ public class DefaultBinding<T, U> implements Binding<T, U> {
@Override
final void setNull0(BindingSetStatementContext<U> ctx) throws SQLException {
switch (ctx.family()) {
super.setNull0(ctx);
default:
super.setNull0(ctx);
break;
}
}
@Override
@ -2549,6 +2556,8 @@ public class DefaultBinding<T, U> implements Binding<T, U> {
default:
super.setNull0(ctx);
break;