badalprasadsingh opened a new issue, #1639: URL: https://github.com/apache/iceberg-go/issues/1639
### Apache Iceberg version main (development) ### Please describe the bug 🐞 On format-version-2 tables, `UpdateSpec.partitionField` only reuses a previously-deleted partition field's ID when a non-empty, matching name is supplied. When a field is re-added without an explicit name (letting Iceberg auto-generate the partition name), the historical lookup is skipped and a brand-new field ID is allocated. e.g., 1. Remove `id_identity` 2. Re-add a partition on `id` with identity transform, letting iceberg name it automatically (empty name) **Expected:** the field comes back with an ID `x`, name `id_identity` **Right Now:** a brand-new ID `y` is allocated, and a new name `id` -- 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]
