[jOOQ/jOOQ#982] The data types aren't in the OSS edition

This commit is contained in:
Lukas Eder 2021-12-15 08:26:42 +01:00
parent 1fb263a129
commit ddc9762698

View File

@ -327,21 +327,12 @@ public class DefaultBinding<T, U> implements Binding<T, U> {
return new DefaultDoubleBinding(dataType, converter);
else if (type == Float.class || type == float.class)
return new DefaultFloatBinding(dataType, converter);
else if (type == Geometry.class)
return new CommercialOnlyBinding(dataType, converter);
else if (type == Geography.class)
return new CommercialOnlyBinding(dataType, converter);
else if (type == Integer.class || type == int.class)
return new DefaultIntegerBinding(dataType, converter);
else if (type == JSON.class)