You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Olga Natkovich (JIRA)" <ji...@apache.org> on 2008/10/31 20:13:44 UTC

[jira] Resolved: (PIG-504) Illustrate and Dump do not seem to work correctly for files containing utf8

     [ https://issues.apache.org/jira/browse/PIG-504?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Olga Natkovich resolved PIG-504.
--------------------------------

    Resolution: Fixed

dump part is addressed by PIG-497.

The illustrate just requires environment var change:

export LANG="en_US.UTF-8"

> Illustrate and Dump do not seem to work correctly for files containing utf8
> ---------------------------------------------------------------------------
>
>                 Key: PIG-504
>                 URL: https://issues.apache.org/jira/browse/PIG-504
>             Project: Pig
>          Issue Type: Bug
>          Components: impl
>    Affects Versions: types_branch
>         Environment: Hadoop 18
>            Reporter: Viraj Bhat
>             Fix For: types_branch
>
>         Attachments: 504.patch, utf8.txt
>
>
> For the snippet of code which runs on the latest types branch. (utf8.txt attached)
> {code}
> A = load 'utf8.txt' using PigStorage() as (t1: chararray);
> illustrate A;
> {code}
> results in this output being produced
> -------------------------------
> | A     | t1: bytearray cn: 1 | 
> -------------------------------
> |       | gabriella??         | 
> -------------------------------
> Three observations:
> 1) text should be chararray, not bytearray.
> 2) cn: 1 should be removed from the display
> 3) Value for text is "username??" is not displayed properly
> Now replacing illustrate with dump
> {code}
> A = load 'utf8.txt' using PigStorage() as (t1: chararray);
> dump A;
> {code}
> (david?)
> (rachel?)
> (jessica?)
> (sarah?)
> (katie?)
> (wendy?)
> (david?)
> (priscilla?)
> (oscar?)
> (xavier?)
> ..some more. 
> The utf8 characters after username are not displayed correctly but instead substituted by ?.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.