Description
Purpose of this is two implement enis's suggestion to strongly type the methods that take "tableOrRegionName" as an argument.
For instance:
void compact(final String tableNameOrRegionName) void compact(final byte[] tableNameOrRegionName)
becomes
@Deprecated void compact(final String tableNameOrRegionName) @Deprecated void compact(final byte[] tableNameOrRegionName) void compact(TableName table) void compactRegion(final byte[] regionName)
Attachments
Attachments
Issue Links
- is part of
-
HBASE-10602 Cleanup HTable public interface
- Closed