[ 
https://issues.apache.org/jira/browse/PIG-461?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12634770#action_12634770
 ] 

Daniel Dai commented on PIG-461:
--------------------------------

Looks good to me, thanks Alan

> 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
>
>         Attachments: PIG-461.patch
>
>
> 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.

Reply via email to