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/02/03 22:45:01 UTC

svn commit: r1240353 - in /pig/trunk: CHANGES.txt src/docs/src/documentation/content/xdocs/func.xml

Author: daijy
Date: Fri Feb  3 21:45:01 2012
New Revision: 1240353

URL: http://svn.apache.org/viewvc?rev=1240353&view=rev
Log:
PIG-2504: Incorrect sample provided for REGEX_EXTRACT

Modified:
    pig/trunk/CHANGES.txt
    pig/trunk/src/docs/src/documentation/content/xdocs/func.xml

Modified: pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1240353&r1=1240352&r2=1240353&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Fri Feb  3 21:45:01 2012
@@ -88,6 +88,8 @@ OPTIMIZATIONS
 
 BUG FIXES
 
+PIG-2504: Incorrect sample provided for REGEX_EXTRACT (prkommireddi via daijy)
+
 PIG-2502: Make "hcat.bin" configurable in e2e test (daijy)
 
 PIG-2501: Changes needed to contrib/piggybank/java/build.xml in order to build piggybank.jar with Hadoop 0.23 

Modified: pig/trunk/src/docs/src/documentation/content/xdocs/func.xml
URL: http://svn.apache.org/viewvc/pig/trunk/src/docs/src/documentation/content/xdocs/func.xml?rev=1240353&r1=1240352&r2=1240353&view=diff
==============================================================================
--- pig/trunk/src/docs/src/documentation/content/xdocs/func.xml (original)
+++ pig/trunk/src/docs/src/documentation/content/xdocs/func.xml Fri Feb  3 21:45:01 2012
@@ -2812,7 +2812,7 @@ The function returns a string that corre
 This example will return the string '192.168.1.5'.
      </p>
  <source>
-REGEX_EXTRACT('192.168.1.5:8020', '(.*)\:(.*)', 1);
+REGEX_EXTRACT('192.168.1.5:8020', '(.*):(.*)', 1);
 </source>
      
  </section>