mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-30 18:29:59 +00:00
Merge remote-tracking branch 'milli/main' into bring-v1-changes
This commit is contained in:
@ -240,14 +240,14 @@ fn alterate_query_tree(
|
||||
}
|
||||
|
||||
fn resolve_candidates(
|
||||
ctx: &'_ dyn Context,
|
||||
ctx: &dyn Context,
|
||||
query_tree: &Operation,
|
||||
number_typos: u8,
|
||||
cache: &mut HashMap<(Operation, u8), RoaringBitmap>,
|
||||
wdcache: &mut WordDerivationsCache,
|
||||
) -> Result<RoaringBitmap> {
|
||||
fn resolve_operation(
|
||||
ctx: &'_ dyn Context,
|
||||
ctx: &dyn Context,
|
||||
query_tree: &Operation,
|
||||
number_typos: u8,
|
||||
cache: &mut HashMap<(Operation, u8), RoaringBitmap>,
|
||||
@ -277,7 +277,7 @@ fn resolve_candidates(
|
||||
}
|
||||
|
||||
fn mdfs(
|
||||
ctx: &'_ dyn Context,
|
||||
ctx: &dyn Context,
|
||||
branches: &[Operation],
|
||||
mana: u8,
|
||||
cache: &mut HashMap<(Operation, u8), RoaringBitmap>,
|
||||
|
Reference in New Issue
Block a user