[ 
http://issues.apache.org/jira/browse/HADOOP-653?page=comments#action_12445277 ] 
            
Runping Qi commented on HADOOP-653:
-----------------------------------


Here is the method in question in class CsvOutputArchive:

   public void writeString(Text s, String tag) throws IOException {
        printCommaUnlessFirst();
        stream.print(Utils.toCSVString(s));
        throwExceptionOnError(tag);
    }

This also happens to XML output archive:

   public void writeString(Text s, String tag) throws IOException {
        printBeginEnvelope(tag);
        stream.print("<string>");
        stream.print(Utils.toXMLString(s));
        stream.print("</string>");
        printEndEnvelope(tag);
    }



> Hadoop Record csv serialization should not convert Text into String
> -------------------------------------------------------------------
>
>                 Key: HADOOP-653
>                 URL: http://issues.apache.org/jira/browse/HADOOP-653
>             Project: Hadoop
>          Issue Type: Bug
>            Reporter: Runping Qi
>


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to