[jOOQ/jOOQ#18970] ORA-01790 when projecting NULL bind value of type BLOB in UNION ALL query
This commit is contained in:
parent
233fa3e981
commit
3d21f331f0
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user