diegoceccarelli commented on a change in pull request #162: SOLR-8776: Support 
RankQuery in grouping
URL: https://github.com/apache/lucene-solr/pull/162#discussion_r277808422
 
 

 ##########
 File path: 
solr/core/src/java/org/apache/solr/handler/component/QueryComponent.java
 ##########
 @@ -1270,7 +1270,7 @@ private void 
doProcessGroupedDistributedSearchFirstPhase(ResponseBuilder rb, Que
       final int topNGroups;
       Query query = cmd.getQuery();
       if (query instanceof AbstractReRankQuery){
-        topNGroups = cmd.getOffset() + 
((AbstractReRankQuery)query).getReRankDocs();
+        topNGroups = Math.max(((AbstractReRankQuery)query).getReRankDocs(), 
cmd.getOffset() + cmd.getLen());
 
 Review comment:
   the non distributed case looks fine to me. 

----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to