aokolnychyi commented on code in PR #6460: URL: https://github.com/apache/iceberg/pull/6460#discussion_r1052814712
########## core/src/main/java/org/apache/iceberg/AllManifestsTable.java: ########## @@ -212,19 +200,22 @@ public CloseableIterable<StructLike> rows() { return CloseableIterable.transform(rowIterable, projection::wrap); } catch (IOException e) { - throw new RuntimeIOException( - e, "Cannot read manifest list file: %s", manifestListTask.file().path()); + throw new RuntimeIOException(e, "Cannot read manifest list file: %s", manifestListLocation); } } @Override public DataFile file() { - return manifestListTask.file(); + return DataFiles.builder(PartitionSpec.unpartitioned()) Review Comment: +1 for having a lazy field -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org