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 2012/03/28 21:49:44 UTC

svn commit: r1306558 - /pig/branches/branch-0.10/test/e2e/pig/tests/nightly.conf

Author: daijy
Date: Wed Mar 28 19:49:44 2012
New Revision: 1306558

URL: http://svn.apache.org/viewvc?rev=1306558&view=rev
Log:
Fix several e2e tests

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

Modified: pig/branches/branch-0.10/test/e2e/pig/tests/nightly.conf
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.10/test/e2e/pig/tests/nightly.conf?rev=1306558&r1=1306557&r2=1306558&view=diff
==============================================================================
--- pig/branches/branch-0.10/test/e2e/pig/tests/nightly.conf (original)
+++ pig/branches/branch-0.10/test/e2e/pig/tests/nightly.conf Wed Mar 28 19:49:44 2012
@@ -3658,8 +3658,8 @@ store T4 into ':OUTPATH:.8';
                         }, {
 # TEST : cast for TOTUPLE/TOBAG
 						 'num' => 4
-                        ,'pig' => q?
                         ,'ignore' => 1 # different error message for different version of hadoop
+                        ,'pig' => q?
 A  = load ':INPATH:/types/numbers.txt' using PigStorage(':') as (intnum1000: int,id: int,intnum5: int,intnum100: int,intnum: int,longnum: long,floatnum: float,doublenum: double);
 B= limit A 10;
 C = foreach B generate $0,  TOTUPLE((int) $0, (long) $0, (double) $0), TOBAG( (float) $0, (chararray) $0), $0;