do not change columnName to upper case when searching for save point columns

This commit is contained in:
johnrobbet 2022-03-08 17:43:14 +08:00
parent 04c3c2e810
commit e740300481

View File

@ -171,9 +171,6 @@ public class ObReaderUtils {
hasPk = true; hasPk = true;
String columnName = rs.getString("Column_name"); String columnName = rs.getString("Column_name");
columnName = escapeDatabaseKeywords(columnName); columnName = escapeDatabaseKeywords(columnName);
if (!isEscapeMode(columnName)) {
columnName = columnName.toLowerCase();
}
if (!realIndex.contains(columnName)) { if (!realIndex.contains(columnName)) {
realIndex.add(columnName); realIndex.add(columnName);
} }