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
192
192
193
193
* GITHUB#14772: Implement ConstantScoreScorer#nextDocsAndScores. (Ge Song)
194
194
195
+ * GITHUB#14854: Using BatchScoreBulkScorer on CombinedFieldQuery. (Ge Song)
196
+
195
197
Bug Fixes
196
198
---------------------
197
199
* 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 {
395
395
public long cost () {
396
396
return finalCost ;
397
397
}
398
+
399
+ @ Override
400
+ public BulkScorer bulkScorer () throws IOException {
401
+ return new BatchScoreBulkScorer (get (Long .MAX_VALUE ));
402
+ }
398
403
};
399
404
}
400
405
You can’t perform that action at this time.
0 commit comments