the-other-tim-brown commented on code in PR #13699:
URL: https://github.com/apache/hudi/pull/13699#discussion_r2271573930
##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/index/HoodieIndexUtils.java:
##########
@@ -430,16 +430,11 @@ private static <R> Option<HoodieRecord<R>>
mergeIncomingWithExistingRecordWithEx
//the record was deleted
return Option.empty();
}
- if (mergeResult.getRecord() == null) {
- // SENTINEL case: the record did not match and merge case and should not
be modified
+ if (mergeResult.getRecord() == null || mergeResult ==
existingBufferedRecord) {
Review Comment:
Yes, the expression payload is only used for Merge Into
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]