You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Olga Natkovich (JIRA)" <ji...@apache.org> on 2008/09/25 21:03:44 UTC

[jira] Updated: (PIG-461) Limit produces results in the wrong order

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

Olga Natkovich updated PIG-461:
-------------------------------

        Fix Version/s: types_branch
    Affects Version/s: types_branch

> Limit produces results in the wrong order
> -----------------------------------------
>
>                 Key: PIG-461
>                 URL: https://issues.apache.org/jira/browse/PIG-461
>             Project: Pig
>          Issue Type: Bug
>    Affects Versions: types_branch
>            Reporter: Olga Natkovich
>            Assignee: Alan Gates
>             Fix For: types_branch
>
>
> Script:
> A = load 'studenttab200m' as (name, age, gpa);
> B = filter A by age > 20;
> C = group B by name;
> D = foreach C generate group, COUNT(B) PARALLEL 16;
> E = order D by $0 PARALLEL 16;
> F = limit E 10;
> --explain F;
> dump F;
> Output:
> comes out not sorted on the name

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