[jOOQ/jOOQ#9384] DataType.getDataType(Configuration) turns this on dialect specific data types

This commit is contained in:
Lukas Eder 2019-10-16 16:35:38 +02:00
parent 31bcc97ea5
commit 7d82e18c83

View File

@ -607,7 +607,7 @@ public class DefaultDataType<T> implements DataType<T> {
// If this is another dialect's specific data type, recurse
else {
getSQLDataType().getDataType(configuration);
return getSQLDataType().getDataType(configuration);
}
return this;