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/10/22 06:25:07 UTC

svn commit: r1400763 - in /pig/trunk: CHANGES.txt src/org/apache/pig/builtin/BagToString.java

Author: daijy
Date: Mon Oct 22 04:25:07 2012
New Revision: 1400763

URL: http://svn.apache.org/viewvc?rev=1400763&view=rev
Log:
PIG-2950: Fix tiny documentation error in BagToString builtin

Modified:
    pig/trunk/CHANGES.txt
    pig/trunk/src/org/apache/pig/builtin/BagToString.java

Modified: pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1400763&r1=1400762&r2=1400763&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Mon Oct 22 04:25:07 2012
@@ -326,6 +326,8 @@ OPTIMIZATIONS
 
 BUG FIXES
 
+PIG-2950: Fix tiny documentation error in BagToString builtin (initialcontext via daijy)
+
 PIG-2967: Fix Glob_local test failure for Pig E2E Test Framework (sushantj via daijy)
 
 PIG-1283: COUNT on null bag causes failure (analog.sony via jcoveney)

Modified: pig/trunk/src/org/apache/pig/builtin/BagToString.java
URL: http://svn.apache.org/viewvc/pig/trunk/src/org/apache/pig/builtin/BagToString.java?rev=1400763&r1=1400762&r2=1400763&view=diff
==============================================================================
--- pig/trunk/src/org/apache/pig/builtin/BagToString.java (original)
+++ pig/trunk/src/org/apache/pig/builtin/BagToString.java Mon Oct 22 04:25:07 2012
@@ -30,8 +30,8 @@ import org.apache.pig.impl.logicalLayer.
 import org.apache.pig.impl.logicalLayer.schema.Schema.FieldSchema;
 
 /**	
- * Flatten a bag into a string.  This UDF will the character '-' as the default delimiter 
- * if one is not provided.
+ * Flatten a bag into a string.  This UDF will use the character '_'
+ * as the default delimiter if one is not provided.
  * 
  * Example: 
  *