No, I've checked and it doesn't. DBIdentifierUtilImpl.makeIdentifierValid
doesn't check for it. The relevant part is at the end:
if (validName.isDelimited()) {
String delimCase =
getIdentifierConfiguration().getDelimitedCase();
if (delimCase.equals(CASE_LOWER)) {
return DBIdentifier.toLower(validName,true);
}
else if (delimCase.equals(CASE_UPPER)) {
return DBIdentifier.toUpper(validName,true);
}
else {
return validName;
}
}
return DBIdentifier.toUpper(validName);
Of course, I could avoid calling dict.getValidColumnName in my
ImprovedMappingDefaults, but I don't think that's ideal.
--
View this message in context: http://openjpa.208410.n2.nabble.com/Change-of-MappingDefaults-breaks-OPENJPA-SEQUENCE-TABLE-tp7580246p7580294.html
Sent from the OpenJPA Users mailing list archive at Nabble.com.
|