Author: rohini
Date: Mon May  4 18:16:24 2015
New Revision: 1677647

URL: http://svn.apache.org/r1677647
Log:
PIG-4530: StackOverflow in TestMultiQueryLocal running under hadoop20 
(nielsbasjes via rohini)

Modified:
    pig/trunk/CHANGES.txt
    pig/trunk/shims/test/hadoop20/org/apache/pig/test/MiniCluster.java

Modified: pig/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1677647&r1=1677646&r2=1677647&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Mon May  4 18:16:24 2015
@@ -76,6 +76,8 @@ PIG-4333: Split BigData tests into multi
  
 BUG FIXES
 
+PIG-4530: StackOverflow in TestMultiQueryLocal running under hadoop20 
(nielsbasjes via rohini)
+
 PIG-4529: Pig on tez hit counter limit imposed by MR (daijy)
 
 PIG-4524: Pig Minicluster unit tests broken by TEZ-2333 (daijy)

Modified: pig/trunk/shims/test/hadoop20/org/apache/pig/test/MiniCluster.java
URL: 
http://svn.apache.org/viewvc/pig/trunk/shims/test/hadoop20/org/apache/pig/test/MiniCluster.java?rev=1677647&r1=1677646&r2=1677647&view=diff
==============================================================================
--- pig/trunk/shims/test/hadoop20/org/apache/pig/test/MiniCluster.java 
(original)
+++ pig/trunk/shims/test/hadoop20/org/apache/pig/test/MiniCluster.java Mon May  
4 18:16:24 2015
@@ -25,7 +25,9 @@ import org.apache.hadoop.conf.Configurat
 import org.apache.hadoop.hdfs.MiniDFSCluster;
 import org.apache.hadoop.mapred.MiniMRCluster;
 import org.apache.pig.ExecType;
+import org.apache.pig.backend.hadoop.executionengine.Launcher;
 import 
org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.MRConfiguration;
+import 
org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.MapReduceLauncher;
 
 public class MiniCluster extends MiniGenericCluster {
     private static final File CONF_DIR = new File("build/classes");
@@ -95,4 +97,8 @@ public class MiniCluster extends MiniGen
         if (m_mr != null) { m_mr.shutdown(); }
             m_mr = null;
     }
+
+    static public Launcher getLauncher() {
+        return new MapReduceLauncher();
+    }
 }


Reply via email to