You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by la...@apache.org on 2016/11/01 19:47:45 UTC

[07/50] hbase git commit: Revert "HBASE-16376 Scan#setBatch(int) javadoc update WRT partial results"

Revert "HBASE-16376 Scan#setBatch(int) javadoc update WRT partial results"

This reverts commit 7ca58503b5514b5fc509a631ed84c0e21a097a63.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/bc6b564f
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/bc6b564f
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/bc6b564f

Branch: refs/heads/0.98
Commit: bc6b564fca5242f7a261301c83b7bfcddb85bbc2
Parents: 02badbd
Author: Andrew Purtell <ap...@apache.org>
Authored: Wed Aug 24 09:42:09 2016 -0700
Committer: Andrew Purtell <ap...@apache.org>
Committed: Wed Aug 24 09:42:09 2016 -0700

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/client/Scan.java   | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/bc6b564f/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java
index 710c6dc..2b77359 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java
@@ -374,13 +374,7 @@ public class Scan extends Query {
   }
 
   /**
-   * Set the maximum number of values to return for each call to next().
-   * Callers should be aware that invoking this method with any value
-   * is equivalent to calling {@link #setAllowPartialResults(boolean)}
-   * with a value of {@code true}; partial results may be returned if
-   * this method is called. Use {@link #setMaxResultSize(long)}} to
-   * limit the size of a Scan's Results instead.
-   *
+   * Set the maximum number of values to return for each call to next()
    * @param batch the maximum number of values
    */
   public void setBatch(int batch) {