danny0405 commented on code in PR #13951:
URL: https://github.com/apache/hudi/pull/13951#discussion_r2366651117
##########
hudi-common/src/main/java/org/apache/hudi/common/table/HoodieTableConfig.java:
##########
@@ -1321,7 +1321,18 @@ public Option<HoodieFileFormat>
getPartitionMetafileFormat() {
}
public Map<String, String> getTableMergeProperties() {
- return ConfigUtils.extractWithPrefix(this.props,
RECORD_MERGE_PROPERTY_PREFIX);
+ Map<String, String> configs = ConfigUtils.extractWithPrefix(this.props,
RECORD_MERGE_PROPERTY_PREFIX);
+ if (getTableVersion().lesserThan(HoodieTableVersion.NINE)) {
Review Comment:
The write path uses the `ConfigUtils.getMergeProps` instead, while this is
just for read path, should we just all invoke `ConfigUtils.getMergeProps`
instead.
--
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]