File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
core/src/java/org/apache/lucene/search Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -192,6 +192,8 @@ Optimizations
192192
193193* GITHUB#14772: Implement ConstantScoreScorer#nextDocsAndScores. (Ge Song)
194194
195+ * GITHUB#14854: Using BatchScoreBulkScorer on CombinedFieldQuery. (Ge Song)
196+
195197Bug Fixes
196198---------------------
197199* GITHUB#14654: ValueSource.fromDoubleValuesSource(dvs).getSortField() would throw errors when
Original file line number Diff line number Diff line change @@ -395,6 +395,11 @@ public Scorer get(long leadCost) throws IOException {
395395 public long cost () {
396396 return finalCost ;
397397 }
398+
399+ @ Override
400+ public BulkScorer bulkScorer () throws IOException {
401+ return new BatchScoreBulkScorer (get (Long .MAX_VALUE ));
402+ }
398403 };
399404 }
400405
You can’t perform that action at this time.
0 commit comments