You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "BELUGA BEHR (JIRA)" <ji...@apache.org> on 2018/06/25 14:06:00 UTC

[jira] [Created] (HIVE-19977) Improve Output of SHOW PARTITIONS

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)