Details
-
New Feature
-
Status: In Progress
-
Minor
-
Resolution: Unresolved
-
None
-
None
-
None
Description
For example :
hive>desc src;
key string
value string
hive>select * from src;
1 10
2 20
hive>set hive.output.markschema=true;
hive>insert overwrite local directory './test1' select * from src ;
hive>!ls -l './test1';
./test1/_metadata
./test1/000000_0
hive>!cat './test1/_metadata'
key^Avalue
hive>!cat './test1/000000_0';
1^A10
2^A20
Attachments
Attachments
Issue Links
- is related to
-
HIVE-3682 when output hive table to file,users should could have a separator of their own choice
- Closed