jpountz commented on code in PR #14273:
URL: https://github.com/apache/lucene/pull/14273#discussion_r2017552582


##########
lucene/core/src/java/org/apache/lucene/search/BooleanScorer.java:
##########
@@ -207,8 +164,32 @@ private void scoreWindowIntoBitSetAndReplay(
       acceptDocs.applyMask(matching, base);
     }
 
-    docIdStreamView.base = base;
-    collector.collect(docIdStreamView);
+    if (buckets == null) {
+      if (acceptDocs != null) {
+        // In this case, live docs have not been applied yet.
+        acceptDocs.applyMask(matching, base);
+      }

Review Comment:
   Thanks for catching, this bit of code was mistakenly duplicated.



-- 
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...@lucene.apache.org

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

Reply via email to