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

Aniket Mokashi updated PIG-2631:
--------------------------------

    Fix Version/s:     (was: 0.13.0)
                   0.14.0

> 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.14.0
>
>
> 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 was sent by Atlassian JIRA
(v6.2#6252)

Reply via email to