amogh-jahagirdar commented on issue #537: URL: https://github.com/apache/iceberg-python/issues/537#issuecomment-2016861138
Renaming a table is already supported via the `catalog.rename_table` API https://py.iceberg.apache.org/reference/pyiceberg/catalog/#pyiceberg.catalog.Catalog.rename_table So you'd do something like ``` from pyiceberg.catalog import load_catalog catalog = load_catalog('your_catalog') catalog.rename_table('db.table', 'db.renamed_table') ``` -- 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