HBASE-6481 SkipFilter javadoc is incorrect (Shrijeet)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1369027 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2012-08-03 15:23:56 +00:00
parent 2131ef1cf8
commit 87a250924c
1 changed files with 3 additions and 2 deletions

View File

@ -40,10 +40,11 @@ import java.util.List;
* with a {@link ValueFilter}:
* <p>
* <pre>
* scan.setFilter(new SkipFilter(new ValueFilter(CompareOp.EQUAL,
* scan.setFilter(new SkipFilter(new ValueFilter(CompareOp.NOT_EQUAL,
* new BinaryComparator(Bytes.toBytes(0))));
* </code>
* Any row which contained a column whose value was 0 will be filtered out.
* Any row which contained a column whose value was 0 will be filtered out
* (since ValueFilter will not pass that KeyValue).
* Without this filter, the other non-zero valued columns in the row would still
* be emitted.
*/