kevinjqliu commented on issue #1493:
URL: 
https://github.com/apache/iceberg-python/issues/1493#issuecomment-2588188799

   Thanks! Thats a good workaround. 
   
   I think a more generic use case is to be able to modify pending updates. 
   `details` here is a pending update, it has not yet been applied to the table
   ```
   with table.update_schema() as update:
       update.add_column("details", StructType())
       update.add_column(("details", "confirmed_by"), StringType(), "Name of 
the exchange")
   ```
   
   From an API perspective, i think this is a good use case to support. WDYT? 


-- 
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

Reply via email to