cloud-fan commented on a change in pull request #27642: [SPARK-30885][SQL] V1 table name should be fully qualified if catalog name is provided URL: https://github.com/apache/spark/pull/27642#discussion_r383086146
########## File path: sql/core/src/test/resources/sql-tests/results/show-create-table.sql.out ########## @@ -44,7 +44,7 @@ SHOW CREATE TABLE tbl -- !query schema struct<createtab_stmt:string> -- !query output -CREATE TABLE `tbl` ( +CREATE TABLE `default`.`tbl` ( Review comment: not related to this PR but a future improvement to v2 commands: since we resolve the catalog and tables during the analysis phase, it would be better to display the fully qualified table name(include catalog name) in EXPLAIN, to let users know which table exactly was picked by the command. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
