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/11/09 20:26:52 UTC

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

Author: daijy
Date: Wed Nov  9 19:26:51 2011
New Revision: 1199925

URL: http://svn.apache.org/viewvc?rev=1199925&view=rev
Log:
Fix e2e test failure introduced by PIG-2337

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=1199925&r1=1199924&r2=1199925&view=diff
==============================================================================
--- pig/trunk/test/e2e/pig/tests/nightly.conf (original)
+++ pig/trunk/test/e2e/pig/tests/nightly.conf Wed Nov  9 19:26:51 2011
@@ -3980,9 +3980,9 @@ store E into ':OUTPATH:';\, 
                         'num' => 1,
                         'pig' => q?register :FUNCPATH:/testudf.jar
                                 a = load ':INPATH:/singlefile/studenttab10k' AS (a0);
-                                b = foreach a generate org.apache.pig.test.udf.evalfunc.UDFContextTestAutoUDF(a0);
+                                b = foreach a generate org.apache.pig.test.udf.evalfunc.UDFContextTestUDF(a0);
                                 c = load ':INPATH:/singlefile/studenttab10k' AS (c0:chararray);
-                                d = foreach c generate org.apache.pig.test.udf.evalfunc.UDFContextTestAutoUDF(c0);
+                                d = foreach c generate org.apache.pig.test.udf.evalfunc.UDFContextTestUDF(c0);
                                 e = union b, d;
                                 store e into ':OUTPATH:';?,
                         'verify_pig_script' => q?a = load ':INPATH:/singlefile/studenttab10k' AS (a0);