mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 02:27:40 +08:00
Add explanatory comment
This commit is contained in:
parent
32c78ac8b1
commit
2bae9550c8
@ -60,6 +60,9 @@ pub fn bucket_sort<'ctx, Q: RankingRuleQueryTrait>(
|
|||||||
|
|
||||||
let mut all_candidates = universe - excluded;
|
let mut all_candidates = universe - excluded;
|
||||||
all_candidates.extend(results.iter().copied());
|
all_candidates.extend(results.iter().copied());
|
||||||
|
// drain the results of the skipped elements
|
||||||
|
// this **must** be done **after** writing the entire results in `all_candidates` to ensure
|
||||||
|
// e.g. estimatedTotalHits is correct.
|
||||||
if results.len() >= from {
|
if results.len() >= from {
|
||||||
results.drain(..from);
|
results.drain(..from);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user