Skip to content

Commit

Permalink
0002429: new data is bound as old data in the load filter extension
Browse files Browse the repository at this point in the history
point
  • Loading branch information
chenson42 committed Oct 28, 2015
1 parent 7ce9d03 commit e158c6b
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -181,8 +181,8 @@ protected void bind(Interpreter interpreter, DataContext context, Table table, C
Map<String, String> oldValues = data.toColumnNameValuePairs(table.getColumnNames(),
CsvData.OLD_DATA);
for (String columnName : oldValues.keySet()) {
interpreter.set(OLD_ + columnName, sourceValues.get(columnName));
interpreter.set(OLD_ + columnName.toUpperCase(), sourceValues.get(columnName));
interpreter.set(OLD_ + columnName, oldValues.get(columnName));
interpreter.set(OLD_ + columnName.toUpperCase(), oldValues.get(columnName));
}
}

Expand Down

0 comments on commit e158c6b

Please sign in to comment.