Fokko commented on code in PR #8673: URL: https://github.com/apache/iceberg/pull/8673#discussion_r1348841775
########## core/src/main/java/org/apache/iceberg/GenericManifestFile.java: ########## @@ -84,15 +84,24 @@ public GenericManifestFile(Schema avroSchema) { } } + /** + * @deprecated since 1.5.0, will be removed in 1.6.0. Use {@link + * GenericManifestFile#GenericManifestFile(InputFile, int, Long)} with a snapshot-id + */ + @Deprecated GenericManifestFile(InputFile file, int specId) { + this(file, specId, null); + } + + GenericManifestFile(InputFile file, int specId, Long snapshotId) { Review Comment: `copyOf` loses the reference to the file, and therefore the length will be `null`, resulting in an NPE. Let me dig into this. -- 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