BELUGA BEHR created HIVE-19977:
----------------------------------
Summary: Improve Output of SHOW PARTITIONS
Key: HIVE-19977
URL: https://issues.apache.org/jira/browse/HIVE-19977
Project: Hive
Issue Type: Improvement
Components: Hive
Affects Versions: 3.0.0, 4.0.0
Reporter: BELUGA BEHR
{code:sql}
> create table partition_test (a string) partitioned by (b string, c string);
> insert into table partition_test partition (b='z', c='z') VALUES ('top');
> show partitions partition_test;
b=z/c=z
{code}
I think it would be more informative in a table format:
||b||z||
|z|z|
This clearly provides the information and prevents users from doing something
like...
{code:sql}
> alter table partition_test drop partition ("b=z/c=z");
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)