[jOOQ/jOOQ#13029] Fix also DataType::getCastTypeName
This commit is contained in:
parent
e707d8a84a
commit
842988c989
@ -471,7 +471,7 @@ implements
|
||||
}
|
||||
|
||||
@Override
|
||||
public final String getCastTypeName() {
|
||||
public /* final */ String getCastTypeName() {
|
||||
return getCastTypeName0(SQLDialect.DEFAULT);
|
||||
}
|
||||
|
||||
|
||||
@ -129,6 +129,11 @@ final class ArrayDataType<T> extends DefaultDataType<T[]> {
|
||||
return getArrayType(configuration, typeName);
|
||||
}
|
||||
|
||||
@Override
|
||||
public final String getCastTypeName() {
|
||||
return getCastTypeName(CTX.configuration());
|
||||
}
|
||||
|
||||
@Override
|
||||
public final String getCastTypeName(Configuration configuration) {
|
||||
String castTypeName = elementType.getCastTypeName(configuration);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user