Skip to content

Commit

Permalink
0001602: Allow old source values to be accessible to other column tra…
Browse files Browse the repository at this point in the history
…nsforms than just copy column
  • Loading branch information
mhanes committed Feb 24, 2014
1 parent 751e093 commit 8c08d4c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -332,7 +332,7 @@ private void addOldValue(List<String> keyNames, List<String> keyValues, List<Str
} else {
String transformType = transformColumn.getTransformType();
String sourceColumnName = transformColumn.getSourceColumnName();
if (CopyColumnTransform.NAME.equals(transformType) &&
if (transformType!=null && transformType.startsWith(CopyColumnTransform.NAME) &&
oldSourceValues.containsKey(sourceColumnName)) {
values.add(oldSourceValues.get(sourceColumnName));
return;
Expand Down

0 comments on commit 8c08d4c

Please sign in to comment.