Pig should allow self joins
---------------------------

                 Key: PIG-2631
                 URL: https://issues.apache.org/jira/browse/PIG-2631
             Project: Pig
          Issue Type: Improvement
            Reporter: Jonathan Coveney
             Fix For: 0.11


This doesn't have to even be optimized, and can still involve a double scan of 
the data, but there is no reason the following should work:

{code}
a = load 'thing' as (x:int);
b = join a by x, (foreach a generate *) by x;
{code}

but this does not:
{code}
a = load 'thing' as (x:int);
b = join a by x, a by x;
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to