yihua commented on code in PR #9883:
URL: https://github.com/apache/hudi/pull/9883#discussion_r1369118091
##########
hudi-common/src/main/java/org/apache/hudi/common/model/HoodieRecord.java:
##########
@@ -195,6 +206,10 @@ public HoodieKey getKey() {
return key;
}
+ public boolean isPartial() {
+ return isPartial;
Review Comment:
`isPartial` is determined at the commit or write batch level, but for record
merging to work in the current implementation and maintain the layering, it's
better to have the flag at the record level.
--
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]