Kota-SH commented on code in PR #7558:
URL: https://github.com/apache/hbase/pull/7558#discussion_r2734774137
##########
hbase-common/src/main/java/org/apache/hadoop/hbase/TableName.java:
##########
@@ -66,7 +70,8 @@ public final class TableName implements Comparable<TableName>
{
+ NAMESPACE_DELIM + ")?)" + "(?:" + VALID_TABLE_QUALIFIER_REGEX + "))";
/** The hbase:meta table's name. */
- public static final TableName META_TABLE_NAME =
+ @Deprecated
+ public static TableName META_TABLE_NAME =
Review Comment:
There no usages for this in the current patch. I have changed all the
references to either use connection or hard coded "hbase:meta" (in just a
couple of places but majorly in tests). I marked it Deprecated for backward
compatibility.
We can still use this deprecated var in all those above mentioned references
to make this patch smaller but needs some rework later and also here. We would
need another PR later, maybe after read replica, to delete this from TableName
and move this into TEST_UTILS.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]