You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "caofangkun (JIRA)" <ji...@apache.org> on 2013/03/26 04:01:16 UTC

[jira] [Created] (HIVE-4230) when export data to local files ,users could decide whether the output contains corresponding column names

caofangkun created HIVE-4230:
--------------------------------

             Summary: when export data to local files ,users could decide whether the output contains corresponding column names
                 Key: HIVE-4230
                 URL: https://issues.apache.org/jira/browse/HIVE-4230
             Project: Hive
          Issue Type: New Feature
            Reporter: caofangkun


Example:
hive>desc src;
key string
value string
hive>insert overwrite local directory './src_table' select * from src;
hive>!cat ./src_table/000000_0;
a1 b1
a2 b2
a3 b3

when user set a property's value to true;
then output should be :
hive>!cat ./src_table/000000_0;
key value     --- the first line is corresponding column names
a1  b1
a2  b2
a3  b3


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira