kokila-19 commented on code in PR #5724: URL: https://github.com/apache/hive/pull/5724#discussion_r2273182522
########## iceberg/iceberg-handler/src/main/java/org/apache/iceberg/mr/hive/HiveIcebergStorageHandler.java: ########## @@ -601,20 +601,27 @@ private boolean writeColStats(List<ColumnStatistics> colStats, Table tbl) { long snapshotId = tbl.currentSnapshot().snapshotId(); long snapshotSequenceNumber = tbl.currentSnapshot().sequenceNumber(); - colStats.forEach(statsObj -> { - byte[] serializeColStats = SerializationUtils.serialize(statsObj); - puffinWriter.add( - new Blob( - ColumnStatisticsObj.class.getSimpleName(), - ImmutableList.of(1), - snapshotId, - snapshotSequenceNumber, - ByteBuffer.wrap(serializeColStats), - PuffinCompressionCodec.NONE, - ImmutableMap.of("partition", - String.valueOf(statsObj.getStatsDesc().getPartName())) - )); + colStats.forEach(stats -> { + boolean isTblLevel = stats.getStatsDesc().isIsTblLevel(); + + for (Serializable statsObj : isTblLevel ? stats.getStatsObj() : Collections.singletonList(stats)) { + byte[] serializeColStats = SerializationUtils.serialize(statsObj); + puffinWriter.add( + new Blob( + ColumnStatisticsObj.class.getSimpleName(), + ImmutableList.of(isTblLevel ? tbl.spec().schema().findField( + ((ColumnStatisticsObj) statsObj).getColName()).fieldId() : 1), + snapshotId, + snapshotSequenceNumber, + ByteBuffer.wrap(serializeColStats), + PuffinCompressionCodec.NONE, Review Comment: Revisiting sounds good and making it configurable makes sense. It will be useful for wide tables. -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org