Author: daijy
Date: Tue Jun 16 21:29:37 2015
New Revision: 1685912

URL: http://svn.apache.org/r1685912
Log:
PIG-4533: Document error: Pig does support concatenated gz file

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=1685912&r1=1685911&r2=1685912&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Tue Jun 16 21:29:37 2015
@@ -30,6 +30,8 @@ PIG-4570: Allow AvroStorage to use a cla
 
 BUG FIXES
 
+PIG-4533: Document error: Pig does support concatenated gz file (xhudik via 
daijy)
+
 PIG-4578: ToDateISO should support optional ' ' space variant used by JDBC 
(michaelthoward via daijy)
 
 Release 0.15.0

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=1685912&r1=1685911&r2=1685912&view=diff
==============================================================================
--- pig/trunk/src/docs/src/documentation/content/xdocs/func.xml (original)
+++ pig/trunk/src/docs/src/documentation/content/xdocs/func.xml Tue Jun 16 
21:29:37 2015
@@ -1394,12 +1394,9 @@ 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 FILES generated in this manner: </p>
+<p>Note: PigStorage and TextLoader correctly read compressed files as long as 
they are NOT CONCATENATED bz/bz2 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>
@@ -1407,7 +1404,7 @@ store A into 'myoutput.bz';
       </li>
    </ul>
 <p></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>If you use concatenated bzip files with your Pig jobs, you will NOT see a 
failure but the results will be INCORRECT.</p>
 <p></p>
 
 </section>


Reply via email to