HonahX commented on issue #22: URL: https://github.com/apache/iceberg-python/issues/22#issuecomment-1794191459
Hi @Fokko. Is there an update on this issue? I am interested in taking this if it's still open. In terms of implementation, I was thinking of something like this: ```python def update_table_metadata(base_metadata: TableMetadata, updates: Tuple[TableUpdate, ...]) -> TableMetadata: builder = TableMetadataUpdateBuilder(base_metadata) for update in updates: builder.update_table_metadata(update) return builder.build() ``` Does this approach align with your expectations? Thanks! -- 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