mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 12:38:55 +01:00
Merge #997
997: fix(core): fix benchmark in core with types r=LegendreM a=neeldug forces a dereference onto query and then creates an option to wrap the query Closes #994 Co-authored-by: nd419 <5161147+neeldug@users.noreply.github.com>
This commit is contained in:
commit
452d456fad
@ -98,7 +98,7 @@ pub fn criterion_benchmark(c: &mut Criterion) {
|
||||
let bench_name = BenchmarkId::from_parameter(format!("{:?}", query));
|
||||
group.bench_with_input(bench_name, &query, |b, query| b.iter(|| {
|
||||
let builder = index.query_builder();
|
||||
builder.query(&reader, query, 0..20).unwrap();
|
||||
builder.query(&reader, Some(*query), 0..20).unwrap();
|
||||
}));
|
||||
}
|
||||
group.finish();
|
||||
|
Loading…
Reference in New Issue
Block a user