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 2014/02/25 18:31:00 UTC

svn commit: r1571758 - in /pig/branches/branch-0.12: CHANGES.txt src/docs/src/documentation/content/xdocs/basic.xml

Author: daijy
Date: Tue Feb 25 17:30:59 2014
New Revision: 1571758

URL: http://svn.apache.org/r1571758
Log:
PIG-3777: Pig 12.0 Documentation

Modified:
    pig/branches/branch-0.12/CHANGES.txt
    pig/branches/branch-0.12/src/docs/src/documentation/content/xdocs/basic.xml

Modified: pig/branches/branch-0.12/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.12/CHANGES.txt?rev=1571758&r1=1571757&r2=1571758&view=diff
==============================================================================
--- pig/branches/branch-0.12/CHANGES.txt (original)
+++ pig/branches/branch-0.12/CHANGES.txt Tue Feb 25 17:30:59 2014
@@ -34,6 +34,8 @@ PIG-3480: TFile-based tmpfile compressio
 
 BUG FIXES
 
+PIG-3777: Pig 12.0 Documentation (karinahauser via daijy)
+
 PIG-3774: Piggybank Over UDF get wrong result (daijy)
 
 PIG-3657: New partition filter extractor fails with NPE (cheolsoo)

Modified: pig/branches/branch-0.12/src/docs/src/documentation/content/xdocs/basic.xml
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.12/src/docs/src/documentation/content/xdocs/basic.xml?rev=1571758&r1=1571757&r2=1571758&view=diff
==============================================================================
--- pig/branches/branch-0.12/src/docs/src/documentation/content/xdocs/basic.xml (original)
+++ pig/branches/branch-0.12/src/docs/src/documentation/content/xdocs/basic.xml Tue Feb 25 17:30:59 2014
@@ -7983,7 +7983,7 @@ X = SAMPLE A 0.01;
 a = load 'a.txt';
 b = group a all;
 c = foreach b generate COUNT(a) as num_rows;
-e = sample d 1000/num_rows;
+e = sample a 1000/c.num_rows;
 </source>
    </section></section>