HBASE-25120 Remove the deprecated annotation for MetaTableAccessor.getScanForTableName (#2493)

Signed-off-by: Duo Zhang <zhangduo@apache.org>
This commit is contained in:
SteNicholas 2020-10-02 21:27:01 +08:00 committed by GitHub
parent 3b91a15183
commit 5e5166dc40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -319,9 +319,7 @@ public final class MetaTableAccessor {
* and scan until it hits a new table since that requires parsing the HRI to get the table name.
* @param tableName bytes of table's name
* @return configured Scan object
* @deprecated This is internal so please remove it when we get a chance.
*/
@Deprecated
public static Scan getScanForTableName(Connection connection, TableName tableName) {
// Start key is just the table name with delimiters
byte[] startKey = ClientMetaTableAccessor.getTableStartRowForMeta(tableName, QueryType.REGION);