aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorXiao Li <gatorsmile@gmail.com>2017-04-03 23:30:12 -0700
committerXiao Li <gatorsmile@gmail.com>2017-04-03 23:30:12 -0700
commit51d3c854c54369aec1bfd55cefcd080dcd178d5f (patch)
tree8c83dc8698f16b4af724fe4f8a1a7901224bdffb /README.md
parent3bfb639cb7352aec572ef6686d3471bd78748ffa (diff)
downloadspark-51d3c854c54369aec1bfd55cefcd080dcd178d5f.tar.gz
spark-51d3c854c54369aec1bfd55cefcd080dcd178d5f.tar.bz2
spark-51d3c854c54369aec1bfd55cefcd080dcd178d5f.zip
[SPARK-20067][SQL] Unify and Clean Up Desc Commands Using Catalog Interface
### What changes were proposed in this pull request? This PR is to unify and clean up the outputs of `DESC EXTENDED/FORMATTED` and `SHOW TABLE EXTENDED` by moving the logics into the Catalog interface. The output formats are improved. We also add the missing attributes. It impacts the DDL commands like `SHOW TABLE EXTENDED`, `DESC EXTENDED` and `DESC FORMATTED`. In addition, by following what we did in Dataset API `printSchema`, we can use `treeString` to show the schema in the more readable way. Below is the current way: ``` Schema: STRUCT<`a`: STRING (nullable = true), `b`: INT (nullable = true), `c`: STRING (nullable = true), `d`: STRING (nullable = true)> ``` After the change, it should look like ``` Schema: root |-- a: string (nullable = true) |-- b: integer (nullable = true) |-- c: string (nullable = true) |-- d: string (nullable = true) ``` ### How was this patch tested? `describe.sql` and `show-tables.sql` Author: Xiao Li <gatorsmile@gmail.com> Closes #17394 from gatorsmile/descFollowUp.
Diffstat (limited to 'README.md')
0 files changed, 0 insertions, 0 deletions