cabhishek opened a new pull request, #59: URL: https://github.com/apache/iceberg-python/pull/59
* Rename column example in [this](https://py.iceberg.apache.org/api/#rename-column) doc is incorrect. * This PR updates the example to use `update.rename_column(...)` instead of `update.rename(...)`. After PR ``` with table.update_schema() as update: update.rename_column("retries", "num_retries") # This will rename `confirmed_by` to `exchange` update.rename_column("properties.confirmed_by", "exchange") ``` -- 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]
