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

dbeaver/dbeaver-ee#923 KEyword case determine fix


Former-commit-id: cc501527
上级 c57e8501
......@@ -195,11 +195,7 @@ public class SQLSyntaxManager {
// Database specific
return sqlDialect.storesUnquotedCase();
} else {
try {
return DBPIdentifierCase.valueOf(caseName.toUpperCase());
} catch (IllegalArgumentException e) {
return DBPIdentifierCase.MIXED;
}
return CommonUtils.valueOf(DBPIdentifierCase.class, caseName.toUpperCase(), DBPIdentifierCase.MIXED);
}
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册