bbeaudreault commented on a change in pull request #4161:
URL: https://github.com/apache/hbase/pull/4161#discussion_r818886838
##########
File path:
hbase-client/src/main/java/org/apache/hadoop/hbase/client/MetaScanner.java
##########
@@ -220,6 +220,7 @@ private static Result getClosestRowOrBefore(final Table
metaTable, final TableNa
throws IOException {
byte[] searchRow = HRegionInfo.createRegionName(userTableName, row,
HConstants.NINES, false);
Scan scan = Scan.createGetClosestRowOrBeforeReverseScan(searchRow);
+ scan.addFamily(HConstants.CATALOG_FAMILY);
Review comment:
The real error comes from ConnectionManager, but I tried to audit all
reads against meta table and this was the only other one which did not have a
family specified. I figured I should add it while I'm here even if we haven't
hit an issue with this yet.
--
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]