提交 21a7e2af 编写于 作者: S serge-rider

#3348 Quoted identifiers case conversion fix


Former-commit-id: 712ff99c
上级 de15d1f9
......@@ -54,7 +54,7 @@ public class DBObjectNameCaseTransformer implements IPropertyValueTransformer<DB
}
final SQLDialect dialect = ((SQLDataSource)dataSource).getSQLDialect();
if (DBUtils.isQuotedIdentifier(dataSource, value)) {
if (dialect.supportsQuotedMixedCase()) {
if (dialect.supportsQuotedMixedCase() || dialect.supportsUnquotedMixedCase()) {
return value;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册