anish749 commented on issue #11952: URL: https://github.com/apache/iceberg/issues/11952#issuecomment-2587642557
I am facing the same issue with AWS S3 tables, when writing to a branch. so ```sql MERGE INTO `catalog`.namespace.table.branch_audit ... ``` fails because S3 tables requires 1 namespace, and the parsing here fails. as a work around, with using spark, the following works: ```sql SET spark.wap.branch = audit; MERGE INTO `catalog`.namespace.table.branch_audit ... ``` however `SET spark.wap.branch = audit;` breaks other read operations since this branch gets set at the session level. -- 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