You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Xuefu Zhang (JIRA)" <ji...@apache.org> on 2011/04/15 02:02:05 UTC

[jira] [Created] (PIG-1996) Pig new parser fails to recognize PARALLEL keywords in a case

Pig new parser fails to recognize PARALLEL keywords in a case
-------------------------------------------------------------

                 Key: PIG-1996
                 URL: https://issues.apache.org/jira/browse/PIG-1996
             Project: Pig
          Issue Type: Bug
    Affects Versions: 0.9.0
            Reporter: Xuefu Zhang
            Assignee: Xuefu Zhang
             Fix For: 0.9.0


The following query fails with the new parser:

B = FOREACH (group (load 'a') ALL PARALLEL 16) generate group;

runt> B = FOREACH (group (load 'a') ALL PARALLEL 16) generate group;
2011-04-14 16:57:23,413 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 1200: <line 1, column 34>  mismatched input 'PARALLEL' expecting RIGHT_PAREN


--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (PIG-1996) Pig new parser fails to recognize PARALLEL keywords in a case

Posted by "Xuefu Zhang (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIG-1996?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13021660#comment-13021660 ] 

Xuefu Zhang commented on PIG-1996:
----------------------------------

Unit test passed. Patch is committed to trunk.

> Pig new parser fails to recognize PARALLEL keywords in a case
> -------------------------------------------------------------
>
>                 Key: PIG-1996
>                 URL: https://issues.apache.org/jira/browse/PIG-1996
>             Project: Pig
>          Issue Type: Bug
>    Affects Versions: 0.9.0
>            Reporter: Xuefu Zhang
>            Assignee: Xuefu Zhang
>             Fix For: 0.9.0
>
>         Attachments: PIG-1996.patch
>
>
> The following query fails with the new parser:
> B = FOREACH (group (load 'a') ALL PARALLEL 16) generate group;
> runt> B = FOREACH (group (load 'a') ALL PARALLEL 16) generate group;
> 2011-04-14 16:57:23,413 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 1200: <line 1, column 34>  mismatched input 'PARALLEL' expecting RIGHT_PAREN

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Resolved] (PIG-1996) Pig new parser fails to recognize PARALLEL keywords in a case

Posted by "Xuefu Zhang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIG-1996?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Xuefu Zhang resolved PIG-1996.
------------------------------

    Resolution: Fixed

> Pig new parser fails to recognize PARALLEL keywords in a case
> -------------------------------------------------------------
>
>                 Key: PIG-1996
>                 URL: https://issues.apache.org/jira/browse/PIG-1996
>             Project: Pig
>          Issue Type: Bug
>    Affects Versions: 0.9.0
>            Reporter: Xuefu Zhang
>            Assignee: Xuefu Zhang
>             Fix For: 0.9.0
>
>         Attachments: PIG-1996.patch
>
>
> The following query fails with the new parser:
> B = FOREACH (group (load 'a') ALL PARALLEL 16) generate group;
> runt> B = FOREACH (group (load 'a') ALL PARALLEL 16) generate group;
> 2011-04-14 16:57:23,413 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 1200: <line 1, column 34>  mismatched input 'PARALLEL' expecting RIGHT_PAREN

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (PIG-1996) Pig new parser fails to recognize PARALLEL keywords in a case

Posted by "Daniel Dai (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIG-1996?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13021129#comment-13021129 ] 

Daniel Dai commented on PIG-1996:
---------------------------------

+1

> Pig new parser fails to recognize PARALLEL keywords in a case
> -------------------------------------------------------------
>
>                 Key: PIG-1996
>                 URL: https://issues.apache.org/jira/browse/PIG-1996
>             Project: Pig
>          Issue Type: Bug
>    Affects Versions: 0.9.0
>            Reporter: Xuefu Zhang
>            Assignee: Xuefu Zhang
>             Fix For: 0.9.0
>
>         Attachments: PIG-1996.patch
>
>
> The following query fails with the new parser:
> B = FOREACH (group (load 'a') ALL PARALLEL 16) generate group;
> runt> B = FOREACH (group (load 'a') ALL PARALLEL 16) generate group;
> 2011-04-14 16:57:23,413 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 1200: <line 1, column 34>  mismatched input 'PARALLEL' expecting RIGHT_PAREN

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (PIG-1996) Pig new parser fails to recognize PARALLEL keywords in a case

Posted by "Xuefu Zhang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIG-1996?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Xuefu Zhang updated PIG-1996:
-----------------------------

    Attachment: PIG-1996.patch

> Pig new parser fails to recognize PARALLEL keywords in a case
> -------------------------------------------------------------
>
>                 Key: PIG-1996
>                 URL: https://issues.apache.org/jira/browse/PIG-1996
>             Project: Pig
>          Issue Type: Bug
>    Affects Versions: 0.9.0
>            Reporter: Xuefu Zhang
>            Assignee: Xuefu Zhang
>             Fix For: 0.9.0
>
>         Attachments: PIG-1996.patch
>
>
> The following query fails with the new parser:
> B = FOREACH (group (load 'a') ALL PARALLEL 16) generate group;
> runt> B = FOREACH (group (load 'a') ALL PARALLEL 16) generate group;
> 2011-04-14 16:57:23,413 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 1200: <line 1, column 34>  mismatched input 'PARALLEL' expecting RIGHT_PAREN

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira