HBASE-22000 Deprecated isTableAvailable with splitKeys

Signed-off-by: Duo Zhang <zhangduo@apache.org>
This commit is contained in:
johnhomsea 2019-03-06 22:55:44 +08:00 committed by Duo Zhang
parent 0d69f84bd2
commit 63d0e6ed4a
1 changed files with 2 additions and 0 deletions

View File

@ -219,7 +219,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);
/**