nsivabalan commented on code in PR #17928:
URL: https://github.com/apache/hudi/pull/17928#discussion_r3003306881
##########
hudi-common/src/main/java/org/apache/hudi/common/model/DefaultHoodieRecordPayload.java:
##########
@@ -82,7 +84,7 @@ public Option<IndexedRecord>
combineAndGetUpdateValue(IndexedRecord currentValue
// Null check is needed here to support schema evolution. The record in
storage may be from old schema where
// the new ordering column might not be present and hence returns null.
if (!needUpdatingPersistedRecord(currentValue, incomingRecord,
properties)) {
- return Option.of(currentValue);
+ return Option.of(SENTINEL);
Review Comment:
hey @yihua : looks like we are changing the behavior here. you wanna review
it once?
--
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]