diff --git a/jOOQ-meta/src/main/java/org/jooq/util/AbstractTypedElementDefinition.java b/jOOQ-meta/src/main/java/org/jooq/util/AbstractTypedElementDefinition.java index 60d9c4fe83..1093673f5d 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/AbstractTypedElementDefinition.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/AbstractTypedElementDefinition.java @@ -161,7 +161,12 @@ abstract class AbstractTypedElementDefinition } if (type != null) { - log.info("Forcing type", child + " with type " + definedType.getType() + " into " + type + (converter != null ? " using converter " + converter : "")); + log.info("Forcing type", child + + " with type " + definedType.getType() + + " into " + type + + (converter != null ? " using converter " + converter : "") + + (binding != null ? " using binding " + binding : "")); + DataType forcedDataType = null; boolean n = result.isNullable();