kerwin-zk opened a new pull request, #7924:
URL: https://github.com/apache/paimon/pull/7924
### Purpose
This allows `CREATE TABLE LIKE` to resolve source and target tables
through Paimon catalogs when either side uses a catalog-qualified identifier.
Examples:
```sql
-- target and source are both catalog-qualified
CREATE TABLE paimon.default.target_tbl LIKE paimon.default.source_tbl;
-- only the target table is catalog-qualified
CREATE TABLE paimon.default.target_tbl LIKE source_tbl;
-- only the source table is catalog-qualified
CREATE TABLE target_tbl LIKE paimon.default.source_tbl;
### Tests
CI
--
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]