Skip to content

Commit

Permalink
0006055: Multi-threaded routing by channel
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Oct 26, 2023
1 parent 008258e commit 4b56b8a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -156,7 +156,7 @@ public CsvData next() {
data.setNoBinaryOldData(requiresLobSelectedFromSource || dialectHasNoOldBinaryData);
outgoingBatch.incrementExtractRowCount();
outgoingBatch.incrementExtractRowCount(data.getDataEventType());
if (!containsBigLob && (data.getDataEventType().equals(DataEventType.INSERT) || data.getDataEventType().equals(DataEventType.UPDATE))) {
if (data.getDataEventType().equals(DataEventType.INSERT) || data.getDataEventType().equals(DataEventType.UPDATE)) {
int expectedCommaCount = triggerHistory.getParsedColumnNames().length;
int commaCount = StringUtils.countMatches(data.getRowData(), ",") + 1;
if (commaCount < expectedCommaCount) {
Expand Down

0 comments on commit 4b56b8a

Please sign in to comment.