zacharymorn commented on a change in pull request #2141: URL: https://github.com/apache/lucene-solr/pull/2141#discussion_r549545541
########## File path: lucene/core/src/java/org/apache/lucene/search/Boolean2ScorerSupplier.java ########## @@ -195,10 +201,13 @@ private Scorer opt(Collection<ScorerSupplier> optional, int minShouldMatch, for (ScorerSupplier scorer : optional) { optionalScorers.add(scorer.get(leadCost)); } - if (minShouldMatch > 1) { + + if (scoreMode == ScoreMode.TOP_SCORES) { + return new WANDScorer(weight, optionalScorers, minShouldMatch); + } else if (minShouldMatch > 1) { + // nocommit minShouldMath > 1 && scoreMode != ScoreMode.TOP_SCORES still requires MinShouldMatchSumScorer. + // Do we want to depcate this entirely now ? Review comment: Fixed. Thanks! ---------------------------------------------------------------- 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 --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org