提交 ad7c0e92 authored 作者: Thomas Mueller Graf's avatar Thomas Mueller Graf

Performance improvement for metadata queries that join against the COLUMNS metadata table.

上级 843eebed
...@@ -616,6 +616,9 @@ public class MetaTable extends Table { ...@@ -616,6 +616,9 @@ public class MetaTable extends Table {
} }
private ArrayList<Table> getTablesByName(Session session, String tableName) { private ArrayList<Table> getTablesByName(Session session, String tableName) {
if (database.getMode().lowerCaseIdentifiers) {
tableName = StringUtils.toUpperEnglish(tableName);
}
ArrayList<Table> tables = database.getTableOrViewByName(tableName); ArrayList<Table> tables = database.getTableOrViewByName(tableName);
for (Table temp : session.getLocalTempTables()) { for (Table temp : session.getLocalTempTables()) {
if (temp.getName().equals(tableName)) { if (temp.getName().equals(tableName)) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论