Skip to content

Commit

Permalink
do not change columnName to upper case when searching for save point …
Browse files Browse the repository at this point in the history
…columns
  • Loading branch information
johnrobbet committed Mar 11, 2022
1 parent 04c3c2e commit e740300
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,6 @@ private static String[] getPkColumns(Connection conn, TaskContext context) {
hasPk = true;
String columnName = rs.getString("Column_name");
columnName = escapeDatabaseKeywords(columnName);
if (!isEscapeMode(columnName)) {
columnName = columnName.toLowerCase();
}
if (!realIndex.contains(columnName)) {
realIndex.add(columnName);
}
Expand Down

0 comments on commit e740300

Please sign in to comment.