tanishq-chugh commented on code in PR #6333: URL: https://github.com/apache/hive/pull/6333#discussion_r2880041491
########## ql/src/test/queries/clientpositive/desc_cols_formatted.q: ########## @@ -0,0 +1,19 @@ +CREATE TABLE tbl_t (id int, Point STRUCT<x:INT, y:INT>); + +DESCRIBE FORMATTED tbl_t; + +DESCRIBE FORMATTED tbl_t id; +DESCRIBE FORMATTED tbl_t Point; + +DESCRIBE tbl_t id; +DESCRIBE tbl_t Point; + +CREATE TABLE tbl_part(id int, Point STRUCT<x:INT, y:INT>) PARTITIONED BY (name string); + +DESCRIBE FORMATTED tbl_part; + +DESCRIBE FORMATTED tbl_part id; +DESCRIBE FORMATTED tbl_part Point; + +DESCRIBE tbl_part id; +DESCRIBE tbl_part Point; Review Comment: Addressed SonarQube issues in commit [d05c394](https://github.com/apache/hive/pull/6333/commits/d05c394a8eb1a95f87a0e73c6aabd0965a3f22e6) Added new line in commit [ce5bd65](https://github.com/apache/hive/pull/6333/commits/ce5bd657569788625e4a6b06c8fe1988c6f2d49b) -- 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]
