[#5404] Exceptions when calling Oracle functions / procedures with TABLE of TABLE type arguments

This commit is contained in:
lukaseder 2016-07-12 16:45:45 +02:00
parent d49dbfc4b7
commit fbf2bba9c3
2 changed files with 32 additions and 12 deletions

View File

@ -398,8 +398,6 @@ package org.jooq.impl;

View File

@ -1311,16 +1311,6 @@ public class DefaultBinding<T, U> implements Binding<T, U> {
else if (EnumType.class.isAssignableFrom(type)) {
ctx.output().writeString(((EnumType) value).getLiteral());
}
@ -1332,6 +1322,34 @@ public class DefaultBinding<T, U> implements Binding<T, U> {
}
}
@SuppressWarnings("unchecked")
@Override
public void get(BindingGetResultSetContext<U> ctx) throws SQLException {
@ -1926,6 +1944,10 @@ public class DefaultBinding<T, U> implements Binding<T, U> {