Skip to content

Commit

Permalink
0005375: Fixed how handleError() load filter method is handled for Po…
Browse files Browse the repository at this point in the history
…stgres
  • Loading branch information
evan-miller-jumpmind committed Aug 3, 2022
1 parent 453cd53 commit 094d67a
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -222,8 +222,12 @@ public void write(CsvData data) {
throw ex;
} else {
uncommittedCount++;
statistics.get(batch).increment(DataWriterStatisticConstants.IGNORECOUNT);
statistics.get(batch).increment(DataWriterStatisticConstants.IGNOREROWCOUNT);
checkForEarlyCommit();
if (Boolean.TRUE.equals(context.get(AbstractDatabaseWriter.TRANSACTION_ABORTED))) {
context.put(CONFLICT_IGNORE, true);
throw ex;
}
}
}
}
Expand Down

0 comments on commit 094d67a

Please sign in to comment.