You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ra...@apache.org on 2013/03/14 04:18:51 UTC

svn commit: r1456316 - /hbase/trunk/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java

Author: ramkrishna
Date: Thu Mar 14 03:18:51 2013
New Revision: 1456316

URL: http://svn.apache.org/r1456316
Log:
HBASE-8066 - Provide Admin.isTableAvailable() for a given table along with splitkeys (Ram) - addendum for javadoc warnings


Modified:
    hbase/trunk/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java

Modified: hbase/trunk/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java
URL: http://svn.apache.org/viewvc/hbase/trunk/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java?rev=1456316&r1=1456315&r2=1456316&view=diff
==============================================================================
--- hbase/trunk/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java (original)
+++ hbase/trunk/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java Thu Mar 14 03:18:51 2013
@@ -982,9 +982,9 @@ public class HBaseAdmin implements Abort
    * splitkeys which was used while creating the given table.
    * Note : If this api is used after a table's region gets splitted, the api may return
    * false.
-   * @param table
+   * @param tableName
    *          name of table to check
-   * @param split
+   * @param splitKeys
    *          keys to check if the table has been created with all split keys
    * @throws IOException
    *           if a remote or network excpetion occurs
@@ -998,9 +998,9 @@ public class HBaseAdmin implements Abort
    * splitkeys which was used while creating the given table.
    * Note : If this api is used after a table's region gets splitted, the api may return
    * false.
-   * @param table
+   * @param tableName
    *          name of table to check
-   * @param split
+   * @param splitKeys
    *          keys to check if the table has been created with all split keys
    * @throws IOException
    *           if a remote or network excpetion occurs