You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by dm...@apache.org on 2011/08/03 16:59:07 UTC

svn commit: r1153523 - /hbase/trunk/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.java

Author: dmeil
Date: Wed Aug  3 14:59:07 2011
New Revision: 1153523

URL: http://svn.apache.org/viewvc?rev=1153523&view=rev
Log:
HBASE-4086 - make constructors match each other in terms of Javadoc

Modified:
    hbase/trunk/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.java

Modified: hbase/trunk/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.java
URL: http://svn.apache.org/viewvc/hbase/trunk/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.java?rev=1153523&r1=1153522&r2=1153523&view=diff
==============================================================================
--- hbase/trunk/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.java (original)
+++ hbase/trunk/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.java Wed Aug  3 14:59:07 2011
@@ -82,8 +82,11 @@ public class SingleColumnValueFilter ext
   /**
    * Constructor for binary compare of the value of a single column.  If the
    * column is found and the condition passes, all columns of the row will be
-   * emitted.  If the column is not found or the condition fails, the row will
-   * not be emitted.
+   * emitted.  If the condition fails, the row will not be emitted.
+   * <p>
+   * Use the filterIfColumnMissing flag to set whether the rest of the columns
+   * in a row will be emitted if the specified column to check is not found in
+   * the row.
    *
    * @param family name of column family
    * @param qualifier name of column qualifier