pvary commented on code in PR #12647:
URL: https://github.com/apache/iceberg/pull/12647#discussion_r2015704267
##########
spark/v3.4/spark/src/main/java/org/apache/iceberg/spark/source/SparkScan.java:
##########
@@ -195,8 +196,10 @@ protected Statistics estimateStatistics(Snapshot snapshot)
{
if (readConf.reportColumnStats() && cboEnabled) {
colStatsMap = Maps.newHashMap();
List<StatisticsFile> files = table.statisticsFiles();
- if (!files.isEmpty()) {
- List<BlobMetadata> metadataList = (files.get(0)).blobMetadata();
+ Optional<StatisticsFile> file =
+ files.stream().filter(f -> f.snapshotId() ==
snapshot.snapshotId()).findFirst();
Review Comment:
Could we have multiple files with the same snapshotId? Or `findAny` is
enough?
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]