You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by th...@apache.org on 2011/09/06 19:55:33 UTC

svn commit: r1165770 - in /pig/branches/branch-0.9: CHANGES.txt src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/PigCombiner.java

Author: thejas
Date: Tue Sep  6 17:55:33 2011
New Revision: 1165770

URL: http://svn.apache.org/viewvc?rev=1165770&view=rev
Log:
PIG-2152: Null pointer exception while reporting progress 

Modified:
    pig/branches/branch-0.9/CHANGES.txt
    pig/branches/branch-0.9/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/PigCombiner.java

Modified: pig/branches/branch-0.9/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.9/CHANGES.txt?rev=1165770&r1=1165769&r2=1165770&view=diff
==============================================================================
--- pig/branches/branch-0.9/CHANGES.txt (original)
+++ pig/branches/branch-0.9/CHANGES.txt Tue Sep  6 17:55:33 2011
@@ -202,6 +202,8 @@ PIG-1696: Performance: Use System.arrayc
 
 BUG FIXES
 
+PIG-2152: Null pointer exception while reporting progress (thejas)
+
 PIG-2258: ant rpm doesn't work (daijy)
 
 PIG-2231: Limit produce wrong number of records after foreach flatten (daijy)

Modified: pig/branches/branch-0.9/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/PigCombiner.java
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.9/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/PigCombiner.java?rev=1165770&r1=1165769&r2=1165770&view=diff
==============================================================================
--- pig/branches/branch-0.9/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/PigCombiner.java (original)
+++ pig/branches/branch-0.9/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/PigCombiner.java Tue Sep  6 17:55:33 2011
@@ -254,7 +254,6 @@ public class PigCombiner {
             super.cleanup(context);
             leaf = null;
             pack = null;
-            pigReporter.setRep(null);
             pigReporter = null;
             pigContext = null;
             roots = null;