Peter Vary created HIVE-16625:
---------------------------------

             Summary: Extra '\0' characters in the output, when 
SeparatedValuesOutputFormat is used and the quoting is disabled
                 Key: HIVE-16625
                 URL: https://issues.apache.org/jira/browse/HIVE-16625
             Project: Hive
          Issue Type: Bug
          Components: Beeline, Testing Infrastructure
    Affects Versions: 3.0.0
            Reporter: Peter Vary
            Assignee: Peter Vary


If the output format is using {{SeparatedValuesOutputFormat}}, and the quoting 
is disabled (by default is disabled), and the value of the cell contains the 
separator character, then the the output is "quoted" with '\0' characters.

To reproduce:
{code}
create table quotes(s string);
insert into quotes values('a\ta');
!set outputFormat tsv2
select * from quotes;
{code}
The result is:
{code}
quotes.s
^@a     a^@
{code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to