You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Amir Youssefi (JIRA)" <ji...@apache.org> on 2008/05/01 00:30:55 UTC

[jira] Updated: (PIG-225) \r in windows

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

Amir Youssefi updated PIG-225:
------------------------------

    Description: 
Priority: Trivial 

I noticed this while preparing for a Pig Training session on windows.  

grunt> cat C:/tmp/test88.txt;
1       2       3       4
a       b       c       d
r       s       t       ugrunt>

-- meaning the file doesn't have \n and \r in the last line but has those on previous lines. This is to test the difference

grunt> a = load 'C:/tmp/test88.txt';
grunt> dump a;
)1, 2, 3, 4
)a, b, c, d
(r, s, t, u)

 location of ")" and the fact that "(" doesn't show up are the problems.

  was:
Priority: Trivial 

I noticed this while preparing for a Pig Training session on windows.  

grunt> cat C:/tmp/test88.txt;
1       2       3       4
a       b       c       d
r       s       t       ugrunt>

-- meaning the file doesn't have \n and \r in the last line but has those on previous lines. This is to test the difference

grunt> a = load 'C:/tmp/test88.txt';
grunt> dump a;
)1, 2, 3, 4
)a, b, c, d
(r, s, t, u)

-notice location of ")"


> \r in windows
> -------------
>
>                 Key: PIG-225
>                 URL: https://issues.apache.org/jira/browse/PIG-225
>             Project: Pig
>          Issue Type: Bug
>         Environment: Pig Local on Windows
>            Reporter: Amir Youssefi
>            Priority: Trivial
>
> Priority: Trivial 
> I noticed this while preparing for a Pig Training session on windows.  
> grunt> cat C:/tmp/test88.txt;
> 1       2       3       4
> a       b       c       d
> r       s       t       ugrunt>
> -- meaning the file doesn't have \n and \r in the last line but has those on previous lines. This is to test the difference
> grunt> a = load 'C:/tmp/test88.txt';
> grunt> dump a;
> )1, 2, 3, 4
> )a, b, c, d
> (r, s, t, u)
>  location of ")" and the fact that "(" doesn't show up are the problems.

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