Apache9 commented on a change in pull request #3688:
URL: https://github.com/apache/hbase/pull/3688#discussion_r717696072



##########
File path: 
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/StoreScanner.java
##########
@@ -757,7 +757,7 @@ public boolean next(List<Cell> outResult, ScannerContext 
scannerContext) throws
         }
       } while ((cell = this.heap.peek()) != null);
 
-      if (count > 0) {
+      if (count > 0 || (storeLimit > -1 && this.countPerRow > (storeLimit + 
storeOffset))) {

Review comment:
       We do not need to add this extra check any more?




-- 
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: issues-unsubscr...@hbase.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to