nsivabalan commented on code in PR #12106:
URL: https://github.com/apache/hudi/pull/12106#discussion_r1801818728
##########
hudi-common/src/main/java/org/apache/hudi/metadata/HoodieTableMetadataUtil.java:
##########
@@ -2296,6 +2292,11 @@ public static HoodieMetadataColumnStats
mergeColumnStatsRecords(HoodieMetadataCo
return newColumnStats;
}
+ // If new column stats is tight bound, then discard the previous column
stats
+ if (newColumnStats.getIsTightBound() &&
!prevColumnStats.getIsTightBound()) {
Review Comment:
I pushed an update to fix this. If CI succeeds, will go ahead and land it.
--
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]