bijanhoule opened a new pull request, #5112: URL: https://github.com/apache/iceberg/pull/5112
Allows e.g. `db.special-chars`.`table.special-chars` when calling the RewriteDataFiles action or procedure, e.g.: ```sql CALL system.rewrite_data_files(table => '`db.with-special`.`table.with-special`') ``` Currently this causes an exception as the full identifier (`<catalog>.<database>.<table>`) is stringified without any quoting. ``` IllegalArgumentException: Cannot parse path or identifier: dev.db.with-special.table.with-special ``` -- 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]
