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/04/17 02:55:53 UTC

svn commit: r1326854 - /pig/branches/branch-0.10/test/org/apache/pig/test/TestMultiQueryLocal.java

Author: daijy
Date: Tue Apr 17 00:55:53 2012
New Revision: 1326854

URL: http://svn.apache.org/viewvc?rev=1326854&view=rev
Log:
Fix TestMultiQueryLocal failure due to PIG-2578

Modified:
    pig/branches/branch-0.10/test/org/apache/pig/test/TestMultiQueryLocal.java

Modified: pig/branches/branch-0.10/test/org/apache/pig/test/TestMultiQueryLocal.java
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.10/test/org/apache/pig/test/TestMultiQueryLocal.java?rev=1326854&r1=1326853&r2=1326854&view=diff
==============================================================================
--- pig/branches/branch-0.10/test/org/apache/pig/test/TestMultiQueryLocal.java (original)
+++ pig/branches/branch-0.10/test/org/apache/pig/test/TestMultiQueryLocal.java Tue Apr 17 00:55:53 2012
@@ -384,8 +384,8 @@ public class TestMultiQueryLocal {
 
             myPig.registerQuery("a = load 'test/org/apache/pig/test/data/passwd' " +
                                 "using PigStorage(':') as (uname:chararray, passwd:chararray, uid:int,gid:int);");
-            myPig.registerQuery("store a into '/tmp/Pig-TestMultiQueryLocal1' using MultiStoreWithSuffix('a');");
-            myPig.registerQuery("store a into '/tmp/Pig-TestMultiQueryLocal2' using MultiStoreWithSuffix('b');");
+            myPig.registerQuery("store a into '/tmp/Pig-TestMultiQueryLocal1' using " + PigStorageWithSuffix.class.getName() + "('a');");
+            myPig.registerQuery("store a into '/tmp/Pig-TestMultiQueryLocal2' using " + PigStorageWithSuffix.class.getName() + "('b');");
 
             myPig.executeBatch();
             myPig.discardBatch();