You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by da...@apache.org on 2011/12/06 23:57:58 UTC

svn commit: r1211220 - /pig/branches/branch-0.9/test/e2e/pig/tests/nightly.conf

Author: daijy
Date: Tue Dec  6 22:57:57 2011
New Revision: 1211220

URL: http://svn.apache.org/viewvc?rev=1211220&view=rev
Log:
Fix BugFix_3 e2e failure with benchmark 0.9.1

Modified:
    pig/branches/branch-0.9/test/e2e/pig/tests/nightly.conf

Modified: pig/branches/branch-0.9/test/e2e/pig/tests/nightly.conf
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.9/test/e2e/pig/tests/nightly.conf?rev=1211220&r1=1211219&r2=1211220&view=diff
==============================================================================
--- pig/branches/branch-0.9/test/e2e/pig/tests/nightly.conf (original)
+++ pig/branches/branch-0.9/test/e2e/pig/tests/nightly.conf Tue Dec  6 22:57:57 2011
@@ -3600,6 +3600,14 @@ store E into ':OUTPATH:';\, 
                                 STORE B INTO ':OUTPATH:.1';
                                 C = DISTINCT B ;
                                 store C into ':OUTPATH:.2';?,
+                        'verify_pig_script' => q?A = LOAD ':INPATH:/singlefile/studenttab10k' AS (name:chararray, age:int,gpa:double);
+                                Z = group A all;
+                                Z1 = foreach Z generate AVG(A.gpa) as avg;
+                                B = cross A, Z1;
+                                B1 = foreach B generate name, age, gpa-Z1.avg as diff;
+                                STORE B1 INTO ':OUTPATH:.1';
+                                C = DISTINCT B1 ;
+                                store C into ':OUTPATH:.2';?,
                     }
                 ],
             },