Skip to content

Commit

Permalink
0002136: Changing a primary key with an implied transform does not work
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Jan 15, 2015
1 parent 8d25e11 commit ccbdd40
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public void put(TransformColumn column, String columnValue, String oldValue, boo
keyValues = new LinkedHashMap<String, String>();
targetNewKeysByIncludeOnType.put(column.getIncludeOn(), keyValues);
}
keyValues.put(column.getTargetColumnName(), columnValue);
keyValues.put(column.getTargetColumnName(), oldValue != null ? oldValue : columnValue);
}

if (targetNewValueByIncludeOnType == null) {
Expand Down

0 comments on commit ccbdd40

Please sign in to comment.