HADOOP-7048. Wrong description of Block-Compressed SequenceFile Format in SequenceFile's javadoc. Contributed by Jingguo Yao.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1069677 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas White 2011-02-11 05:54:34 +00:00
parent 223f651118
commit ab611ed091
2 changed files with 5 additions and 1 deletions

View File

@ -68,6 +68,9 @@ Trunk (unreleased changes)
HADOOP-7129. Fix typo in method name getProtocolSigature (todd)
HADOOP-7048. Wrong description of Block-Compressed SequenceFile Format in
SequenceFile's javadoc. (Jingguo Yao via tomwhite)
Release 0.22.0 - Unreleased
INCOMPATIBLE CHANGES

View File

@ -165,6 +165,7 @@ import org.apache.hadoop.util.PriorityQueue;
* <li>
* Record <i>Block</i>
* <ul>
* <li>Uncompressed number of records in the block</li>
* <li>Compressed key-lengths block-size</li>
* <li>Compressed key-lengths block</li>
* <li>Compressed keys block-size</li>
@ -176,7 +177,7 @@ import org.apache.hadoop.util.PriorityQueue;
* </ul>
* </li>
* <li>
* A sync-marker every few <code>100</code> bytes or so.
* A sync-marker every block.
* </li>
* </ul>
*