This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2 by this push:
new 1667762 HBASE-22000 Deprecated isTableAvailable with splitKeys
1667762 is described below
commit 1667762937e8fa440c6f8c0ba983082a9f8339d8
Author: johnhomsea <[email protected]>
AuthorDate: Wed Mar 6 22:55:44 2019 +0800
HBASE-22000 Deprecated isTableAvailable with splitKeys
Signed-off-by: Duo Zhang <[email protected]>
---
.../src/main/java/org/apache/hadoop/hbase/client/AsyncAdmin.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncAdmin.java
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncAdmin.java
index 1cdff00..fac985f 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncAdmin.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncAdmin.java
@@ -215,7 +215,9 @@ public interface AsyncAdmin {
* {@link CompletableFuture}.
* @param tableName name of table to check
* @param splitKeys keys to check if the table has been created with all
split keys
+ * @deprecated Since 2.2.0. Will be removed in 3.0.0. Use {@link
#isTableAvailable(TableName)}
*/
+ @Deprecated
CompletableFuture<Boolean> isTableAvailable(TableName tableName, byte[][]
splitKeys);
/**