You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Ying He (JIRA)" <ji...@apache.org> on 2010/01/26 20:20:35 UTC

[jira] Created: (PIG-1202) explain plan throws out exception

explain plan throws out exception 
----------------------------------

                 Key: PIG-1202
                 URL: https://issues.apache.org/jira/browse/PIG-1202
             Project: Pig
          Issue Type: Bug
            Reporter: Ying He


run the following script

a = load 's/part*' as (id:int, f:chararray);
b = load 's/part*' as (id:int, f:chararray);
c = join a by id, b by id;
d = filter c by a::f == 'apple';
explain d;

got error message:
ERROR 1067: Unable to explain alias d

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


[jira] Resolved: (PIG-1202) explain plan throws out exception

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

Richard Ding resolved PIG-1202.
-------------------------------

    Resolution: Duplicate

Trace it in PIG-1212.

> explain plan throws out exception 
> ----------------------------------
>
>                 Key: PIG-1202
>                 URL: https://issues.apache.org/jira/browse/PIG-1202
>             Project: Pig
>          Issue Type: Bug
>            Reporter: Ying He
>
> run the following script
> a = load 's/part*' as (id:int, f:chararray);
> b = load 's/part*' as (id:int, f:chararray);
> c = join a by id, b by id;
> d = filter c by a::f == 'apple';
> explain d;
> got error message:
> ERROR 1067: Unable to explain alias d

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