Skip to content

Commit

Permalink
Fixes the build
Browse files Browse the repository at this point in the history
Signed-off-by: Tejas Shah <[email protected]>
  • Loading branch information
shatejas committed Jan 30, 2025
1 parent 7b0d3f6 commit 10821cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public PerLeafResult searchLeaf(LeafReaderContext context, int k) throws IOExcep
// results less than K, though we have more than k filtered docs
if (isExactSearchRequire(context, cardinality, docIdsToScoreMap.size())) {
final BitSetIterator docs = filterWeight != null ? new BitSetIterator(filterBitSet, cardinality) : null;
Map<Integer, Float> result = doExactSearch(context, docs, cardinality, k, segmentName);
Map<Integer, Float> result = doExactSearch(context, docs, cardinality, k);
return new PerLeafResult(filterWeight == null ? null : filterBitSet, result);
}
return new PerLeafResult(filterWeight == null ? null : filterBitSet, docIdsToScoreMap);
Expand Down

0 comments on commit 10821cd

Please sign in to comment.