jiakai-li commented on issue #1493: URL: https://github.com/apache/iceberg-python/issues/1493#issuecomment-2679119652
Sorry for the late response regards this issue. Thanks for the information @brunomendola , I can confirm that the way suggested from java side works, doing something similarly ```python ... table = table.transaction() first_update = table.update_schema() first_update.add_column("parent_bad", StructType()) first_update.commit() second_update = table.update_schema() second_update.add_column(("parent_bad", "child_bad"), StringType()) second_update.commit() table.commit_transaction() ... ``` -- 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