You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Lefty Leverenz (JIRA)" <ji...@apache.org> on 2016/08/10 06:20:20 UTC

[jira] [Resolved] (HIVE-14387) Add an option to skip the table names for the column headers

     [ https://issues.apache.org/jira/browse/HIVE-14387?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lefty Leverenz resolved HIVE-14387.
-----------------------------------
    Resolution: Duplicate

This duplicates HIVE-6687, which added the configuration parameter *hive.resultset.use.unique.column.names* in release 0.13.0.

Resolving this issue as a duplicate.

> Add an option to skip the table names for the column headers
> ------------------------------------------------------------
>
>                 Key: HIVE-14387
>                 URL: https://issues.apache.org/jira/browse/HIVE-14387
>             Project: Hive
>          Issue Type: Improvement
>          Components: Beeline
>            Reporter: Vihang Karajgaonkar
>            Assignee: Marta Kuczora
>            Priority: Minor
>
> It would be good to have an option where the beeline output could skip reporting the <table_name>.<column_name> in the headers.
> Eg:
> {noformat}
> 0: jdbc:hive2://:> select * from sample_07 limit 1; 
> --------------------------------------------------------------------------------------------------
> sample_07.code	sample_07.description	sample_07.total_emp	sample_07.salary
> --------------------------------------------------------------------------------------------------
> 00-0000	Operations	123	12345
> --------------------------------------------------------------------------------------------------
> {noformat}
> b) After the option is set:
> {noformat}
> 0: jdbc:hive2://:> select * from sample_07 limit 1; 
> ---------------------------------------------------
> code	 description	total_emp	 salary
> ---------------------------------------------------
> 00-0000	Operations	123	12345
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)