Author: daijy
Date: Fri Jun 12 22:56:43 2015
New Revision: 1685188
URL: http://svn.apache.org/r1685188
Log:
PIG-4570: Allow AvroStorage to use a class for the schema (Rollback unrelated
change)
Modified:
pig/trunk/src/docs/src/documentation/content/xdocs/func.xml
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=1685188&r1=1685187&r2=1685188&view=diff
==============================================================================
--- pig/trunk/src/docs/src/documentation/content/xdocs/func.xml (original)
+++ pig/trunk/src/docs/src/documentation/content/xdocs/func.xml Fri Jun 12
22:56:43 2015
@@ -1394,9 +1394,12 @@ A = load 'myinput.bz';
store A into 'myoutput.bz';
</source>
-<p>Note: PigStorage and TextLoader correctly read compressed files as long as
they are NOT CONCATENATED bz/bz2 FILES generated in this manner: </p>
+<p>Note: PigStorage and TextLoader correctly read compressed files as long as
they are NOT CONCATENATED FILES generated in this manner: </p>
<ul>
<li>
+ <p>cat *.gz > text/concat.gz</p>
+ </li>
+ <li>
<p>cat *.bz > text/concat.bz </p>
</li>
<li>
@@ -1404,7 +1407,7 @@ store A into 'myoutput.bz';
</li>
</ul>
<p></p>
-<p>If you use concatenated bzip files with your Pig jobs, you will NOT see a
failure but the results will be INCORRECT.</p>
+<p>If you use concatenated gzip or bzip files with your Pig jobs, you will NOT
see a failure but the results will be INCORRECT.</p>
<p></p>
</section>