rdblue commented on code in PR #12672: URL: https://github.com/apache/iceberg/pull/12672#discussion_r2017832034
########## core/src/main/java/org/apache/iceberg/GenericManifestFile.java: ########## @@ -128,8 +131,15 @@ public GenericManifestFile(Schema avroSchema) { this.deletedRowsCount = deletedRowsCount; this.partitions = partitions == null ? null : partitions.toArray(new PartitionFieldSummary[0]); this.keyMetadata = ByteBuffers.toByteArray(keyMetadata); + this.firstRowId = firstRowId; } + /** + * GenericManifestFile constructor. + * + * @deprecated will be removed in 1.10.0; use {@link ManifestWriter#toManifestFile()} instead. + */ + @Deprecated Review Comment: I still need to remove a few more references to this older constructor. I'm not sure why there was a public constructor and I think we should avoid having one. That's why it is now deprecated. -- 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