wchevreuil commented on code in PR #7398:
URL: https://github.com/apache/hbase/pull/7398#discussion_r2788130219
##########
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java:
##########
@@ -3236,6 +3257,11 @@ public RegionScannerImpl getScanner(Scan scan) throws
IOException {
return getScanner(scan, null);
}
+ RegionScannerImpl getScannerWithResults(Get get, Scan scan, List<Cell>
results)
+ throws IOException {
+ return getRowCacheService().getScanner(this, get, scan, results);
Review Comment:
We'll always go for the row cache? What if it's disabled?
--
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]