Reidddddd commented on a change in pull request #3066:
URL: https://github.com/apache/hbase/pull/3066#discussion_r597392152
##########
File path:
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
##########
@@ -2958,22 +2959,22 @@ private void scan(HBaseRpcController controller,
ScanRequest request, RegionScan
// Collect values to be returned here
moreRows = scanner.nextRaw(values, scannerContext);
+ numOfNextRawCalls++;
if (!values.isEmpty()) {
if (limitOfRows > 0) {
// First we need to check if the last result is partial and we
have a row change. If
// so then we need to increase the numOfCompleteRows.
if (results.isEmpty()) {
- if (rsh.rowOfLastPartialResult != null &&
- !CellUtil.matchingRow(values.get(0),
rsh.rowOfLastPartialResult)) {
+ if (rsh.rowOfLastPartialResult != null &&
!CellUtil.matchingRow(values.get(0), rsh.rowOfLastPartialResult)) {
Review comment:
Ditto
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]