[
https://issues.apache.org/jira/browse/PIG-1193?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12801090#action_12801090
]
Hadoop QA commented on PIG-1193:
--------------------------------
-1 overall. Here are the results of testing the latest attachment
http://issues.apache.org/jira/secure/attachment/12430462/PIG-1193-1.patch
against trunk revision 899502.
+1 @author. The patch does not contain any @author tags.
+1 tests included. The patch appears to include 3 new or modified tests.
+1 javadoc. The javadoc tool did not generate any warning messages.
+1 javac. The applied patch does not increase the total number of javac
compiler warnings.
-1 findbugs. The patch appears to introduce 1 new Findbugs warnings.
+1 release audit. The applied patch does not increase the total number of
release audit warnings.
+1 core tests. The patch passed core unit tests.
+1 contrib tests. The patch passed contrib unit tests.
Test results:
http://hudson.zones.apache.org/hudson/job/Pig-Patch-h8.grid.sp2.yahoo.net/177/testReport/
Findbugs warnings:
http://hudson.zones.apache.org/hudson/job/Pig-Patch-h8.grid.sp2.yahoo.net/177/artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html
Console output:
http://hudson.zones.apache.org/hudson/job/Pig-Patch-h8.grid.sp2.yahoo.net/177/console
This message is automatically generated.
> Secondary sort issue on nested desc sort
> ----------------------------------------
>
> Key: PIG-1193
> URL: https://issues.apache.org/jira/browse/PIG-1193
> Project: Pig
> Issue Type: Bug
> Components: impl
> Affects Versions: 0.6.0
> Reporter: Daniel Dai
> Assignee: Daniel Dai
> Fix For: 0.6.0
>
> Attachments: PIG-1193-1.patch
>
>
> Secondary sort doing nested desc sort order incorrectly if the following
> conditions meet:
> 1. We have sort and UDF in nested plan
> 2. This UDF will use the same input tuples more than once
> 3. The input tuples are sorted in desc order
> Here is a test case:
> {code}
> register sequence.jar;
> A = load 'input' as (a0:int);
> B = group A ALL;
> C = foreach B {
> D = order A by a0 desc;
> generate sequence.CUMULATIVE(D,D);
> };
> dump C;
> {code}
> input file:
> {code}
> 3
> 4
> {code}
> The input for the UDF is:
> {code}
> ({(4),(3)},{(3),(4)})
> {code}
> The first bag is sorted desc, but the second is not.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.