Aggarwal-Raghav opened a new pull request, #6228: URL: https://github.com/apache/hive/pull/6228
### What changes were proposed in this pull request? Please check the discussion in [HIVE-29259](https://issues.apache.org/jira/browse/HIVE-29259) ### Why are the changes needed? To have to correct output format for `desc catalog` as its there for `desc database` ### Does this PR introduce _any_ user-facing change? Yes, User will observe different table output format **Older:** ``` 0: jdbc:hive2://127.0.0.1:10000/default> desc catalog hive; +------------------+---------------------------------------------------------+------------+ | cat_name | comment | location | +------------------+-------------------------------------------------------- +-------------+ | Catalog Name | hive | NULL | | Comment | Default catalog for Hive | NULL | | Location | hdfs://127.0.0.1:8028/user/hive/warehouse/hiveicetest | NULL | +------------------+---------------------------------------------------------+------------+ ``` **New:** ``` 0: jdbc:hive2://127.0.0.1:10000/default> desc catalog hive; +------------------+-------------------------------------------------------+-------------------------------------------------------------+ | cat_name | comment | location | +------------------+-------------------------------------------------------+-------------------------------------------------------------+ | hive | Default catalog for Hive | hdfs://127.0.0.1:8028/user/hive/warehouse/hiveicetest | +------------------+-------------------------------------------------------+-------------------------------------------------------------+ ``` ### How was this patch tested? On local Setup and ran `catalog.q` -- 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]
