Skip to content

Commit

Permalink
perf: remove redundant column index calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
wooln committed Jan 31, 2025
1 parent 6041422 commit 4f12d72
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2213,7 +2213,6 @@ public int[] executeBatch() throws SQLServerException, BatchUpdateException, SQL
// connection contains database name
boolean isCaseSensitive = connection.getDatabaseCollation().getIsCaseSensitive();
int columnIndex;
columnIndex = bcOperationColumnList.indexOf(c.getColumnName());
if (isCaseSensitive) {
columnIndex = bcOperationColumnList.indexOf(c.getColumnName());
} else {
Expand Down

0 comments on commit 4f12d72

Please sign in to comment.