You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Ashutosh Chauhan (JIRA)" <ji...@apache.org> on 2010/02/25 22:38:28 UTC

[jira] Commented: (PIG-1260) Param Subsitution results in parser error if there is no EOL after last line in script

    [ https://issues.apache.org/jira/browse/PIG-1260?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12838551#action_12838551 ] 

Ashutosh Chauhan commented on PIG-1260:
---------------------------------------

Work around is to add a EOL after last line in the script-file.

> Param Subsitution results in parser error if there is no EOL after last line in script
> --------------------------------------------------------------------------------------
>
>                 Key: PIG-1260
>                 URL: https://issues.apache.org/jira/browse/PIG-1260
>             Project: Pig
>          Issue Type: Bug
>          Components: impl
>    Affects Versions: 0.7.0
>            Reporter: Ashutosh Chauhan
>             Fix For: 0.7.0
>
>
> {noformat}
> A = load '$INPUT' using PigStorage(':');
> B = foreach A generate $0 as id;
> store B into '$OUTPUT' USING PigStorage();
> {noformat}
> Invoking above script which contains no EOL in the last line of script as following:
> {noformat} 
> pig -param INPUT=mydata/input -param OUTPUT=mydata/output myscript.pig
> {noformat}
> results in parser error:
> {noformat}
> [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 1000: Error during parsing. Lexical error at line 3, column 42.  Encountered: <EOF> after : ""
> {noformat}

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