Skip to content

Commit

Permalink
SYMMETRICDS-563 - The transformation on a primary key does not have a…
Browse files Browse the repository at this point in the history
…ccess to new column values other than the keys of the original row. It should have access to all column values.
  • Loading branch information
chenson42 committed Dec 5, 2011
1 parent 090c98e commit 36eb141
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -180,7 +180,7 @@ protected List<TransformedData> create(ICacheContext context, DmlType dmlType,
for (TransformedData data : datas) {
try {
Object columnValue = transformColumn(context, data, transformColumn,
sourceKeyValues, oldSourceValues);
sourceValues, oldSourceValues);
if (columnValue instanceof String) {
data.put(transformColumn, (String) columnValue, true);
} else if (columnValue instanceof List) {
Expand Down

0 comments on commit 36eb141

Please sign in to comment.