-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[bugFix][Connector-V2][CDC] SeaTunnelRowDebeziumDeserializationConverters NPE #7119
Conversation
@@ -184,7 +184,7 @@ private void deserializeDataChangeRecord(SourceRecord record, Collector<SeaTunne | |||
delete.setRowKind(RowKind.DELETE); | |||
delete.setTableId(tableId); | |||
collector.collect(delete); | |||
} else { | |||
} else if (operation == Envelope.Operation.UPDATE) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In addition to update related statements, are there any other statements that can reach the else block?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, we should ignore it. cc @hailin0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Purpose of this pull request
close #6901
ref #7113
Does this PR introduce any user-facing change?
How was this patch tested?
Check list
New License Guide
release-note
.