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