-
Type:
New Feature
-
Status: In Progress
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: Query Processor
-
Labels:None
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
- is related to
-
HIVE-3682 when output hive table to file,users should could have a separator of their own choice
-
- Closed
-