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:58:43 UTC

svn commit: r1211222 - /pig/trunk/test/e2e/pig/tests/nightly.conf

Author: daijy
Date: Tue Dec  6 22:58:42 2011
New Revision: 1211222

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

Modified:
    pig/trunk/test/e2e/pig/tests/nightly.conf

Modified: pig/trunk/test/e2e/pig/tests/nightly.conf
URL: http://svn.apache.org/viewvc/pig/trunk/test/e2e/pig/tests/nightly.conf?rev=1211222&r1=1211221&r2=1211222&view=diff
==============================================================================
--- pig/trunk/test/e2e/pig/tests/nightly.conf (original)
+++ pig/trunk/test/e2e/pig/tests/nightly.conf Tue Dec  6 22:58:42 2011
@@ -3891,6 +3891,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';?,
                     }
                 ],
             },{