nsivabalan commented on code in PR #12350:
URL: https://github.com/apache/hudi/pull/12350#discussion_r1862584099
##########
hudi-common/src/main/java/org/apache/hudi/metadata/HoodieTableMetadataUtil.java:
##########
@@ -2389,7 +2395,12 @@ public static HoodieData<HoodieRecord>
convertFilesToPartitionStatsRecords(Hoodi
LOG.warn("No columns to index for partition stats index");
return engineContext.emptyHoodieData();
}
- LOG.debug("Indexing following columns for partition stats index: {}",
columnsToIndex);
+ // filter columns with only supported types
+ final List<String> validColumnsToIndex = columnsToIndex.stream()
Review Comment:
as part of this https://github.com/apache/hudi/pull/12310, we are enabling
col stats for 3 meta fields (record key, commit time and partition path)
--
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]