Skip to content

Commit

Permalink
0004941: Null pointer on registration when conflict resolution is needed
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Apr 5, 2021
1 parent afa00dc commit 6300540
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -329,6 +329,9 @@ public Table buildTargetTable() {
public CsvData buildTargetCsvData() {

CsvData data = new CsvData(this.targetDmlType);
if (transformation != null) {
data.putAttribute(CsvData.ATTRIBUTE_TABLE_NAME, transformation.getSourceTableName());
}
if (targetDmlType != DataEventType.DELETE) {
data.putParsedData(CsvData.ROW_DATA, getColumnValues());
}
Expand Down

0 comments on commit 6300540

Please sign in to comment.