Skip to content

Commit

Permalink
0001323: Missing columns at target table can cause columns after the …
Browse files Browse the repository at this point in the history
…missing columns to not be updated
  • Loading branch information
chenson42 committed Jul 13, 2013
1 parent a3d9b86 commit 44dc4a4
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -961,7 +961,8 @@ protected boolean doesColumnNeedUpdated(int columnIndex, Column column, CsvData
|| containsEmptyLobColumn;
if (containsEmptyLobColumn) {
// indicate that we are considering the column to be changed
data.getChangedDataIndicators()[sourceTable.getColumnIndex(column.getName())] = true;
Column sourceColumn = sourceTable.findColumn(column.getName(), false);
data.getChangedDataIndicators()[sourceTable.getColumnIndex(sourceColumn.getName())] = true;
}
} else {
/*
Expand Down

0 comments on commit 44dc4a4

Please sign in to comment.