Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/16422#discussion_r126275554
  
    --- Diff: 
sql/core/src/test/resources/sql-tests/results/describe-table-column.sql.out ---
    @@ -0,0 +1,133 @@
    +-- Automatically generated by SQLQueryTestSuite
    +-- Number of queries: 15
    +
    +
    +-- !query 0
    +CREATE TEMPORARY VIEW desc_col_temp_table (key int COMMENT 
'column_comment') USING PARQUET
    +-- !query 0 schema
    +struct<>
    +-- !query 0 output
    +
    +
    +
    +-- !query 1
    +DESC desc_col_temp_table key
    +-- !query 1 schema
    +struct<col_name:string,data_type:string,comment:string>
    +-- !query 1 output
    +col_name   data_type       comment         
    +key        int             column_comment
    +
    +
    +-- !query 2
    +DESC EXTENDED desc_col_temp_table key
    --- End diff --
    
    Since we already treat `DESC EXTENDED` and `DESC FORMATTED` identical for 
the tables, let us make DESC EXTENDED and FORMATTED the same for the column too.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to