jonvex commented on code in PR #11881:
URL: https://github.com/apache/hudi/pull/11881#discussion_r1757121028
##########
hudi-common/src/main/java/org/apache/hudi/common/table/read/HoodieFileGroupReader.java:
##########
@@ -108,7 +108,8 @@ public HoodieFileGroupReader(HoodieReaderContext<T>
readerContext,
readerContext.setRecordMerger(this.recordMerger);
readerContext.setTablePath(tablePath);
readerContext.setLatestCommitTime(latestCommitTime);
- readerContext.setShouldMergeUseRecordPosition(shouldUseRecordPosition);
+ boolean isSkipMerge = props.getString("hoodie.datasource.merge.type",
"payload_combine").equalsIgnoreCase("skip_merge");
Review Comment:
Hive uses `hoodie.realtime.merge.skip` which is a boolean config. So if we
want backwards compatibility we will need to use some custom logic for the
config
--
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]