cristof commented on code in PR #124: URL: https://github.com/apache/openjpa/pull/124#discussion_r1958322145
########## openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/DBDictionary.java: ########## @@ -1956,6 +1967,15 @@ public String getTypeName(Column col) { if (col.isAutoAssigned() && autoAssignTypeName != null) return appendSize(col, autoAssignTypeName); + if (col.getJavaType() == JavaTypes.UUID_OBJ) { + if (supportsUuidType) + return appendSize(col, uuidTypeName); + else { + //col.setSize(36); Review Comment: Cleaned ########## openjpa-kernel/src/main/java/org/apache/openjpa/abstractstore/AbstractStoreManager.java: ########## @@ -42,6 +42,7 @@ import org.apache.openjpa.util.ApplicationIds; import org.apache.openjpa.util.Id; import org.apache.openjpa.util.ImplHelper; +import org.apache.openjpa.util.UuidId; Review Comment: Yep, removed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@openjpa.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org