You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by ch...@apache.org on 2013/03/20 22:11:19 UTC

svn commit: r1459056 - in /pig/trunk: CHANGES.txt src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/PigSplit.java

Author: cheolsoo
Date: Wed Mar 20 21:11:19 2013
New Revision: 1459056

URL: http://svn.apache.org/r1459056
Log:
PIG-3253: Misleading comment w.r.t getSplitIndex() method in PigSplit.java (cheolsoo)

Modified:
    pig/trunk/CHANGES.txt
    pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/PigSplit.java

Modified: pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1459056&r1=1459055&r2=1459056&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Wed Mar 20 21:11:19 2013
@@ -149,6 +149,8 @@ PIG-3013: BinInterSedes improve chararra
 
 BUG FIXES
 
+PIG-3253: Misleading comment w.r.t getSplitIndex() method in PigSplit.java (cheolsoo)
+
 PIG-3208: [zebra] TFile should not set io.compression.codec.lzo.buffersize (ekoontz via daijy)
 
 PIG-3172: Partition filter push down does not happen when there is a non partition key map column filter (rohini)

Modified: pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/PigSplit.java
URL: http://svn.apache.org/viewvc/pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/PigSplit.java?rev=1459056&r1=1459055&r2=1459056&view=diff
==============================================================================
--- pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/PigSplit.java (original)
+++ pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/PigSplit.java Wed Mar 20 21:11:19 2013
@@ -289,9 +289,6 @@ public class PigSplit extends InputSplit
         }
     }
 
-    // package level access because we don't want LoadFunc implementations
-    // to get this information - this is to be used only from
-    // MergeJoinIndexer
     public int getSplitIndex() {
         return splitIndex;
     }