Skip to content

Commit 9943432

Browse files
authored
update tantivy (#5935)
1 parent f911e26 commit 9943432

File tree

4 files changed

+23
-11
lines changed

4 files changed

+23
-11
lines changed

LICENSE-3rdparty.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,7 @@ opentelemetry,https://github.com/open-telemetry/opentelemetry-rust,Apache-2.0,Th
312312
opentelemetry-otlp,https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-otlp,Apache-2.0,The opentelemetry-otlp Authors
313313
opentelemetry-proto,https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-proto,Apache-2.0,The opentelemetry-proto Authors
314314
opentelemetry_sdk,https://github.com/open-telemetry/opentelemetry-rust,Apache-2.0,The opentelemetry_sdk Authors
315+
ordered-float,https://github.com/reem/rust-ordered-float,MIT,"Jonathan Reem <jonathan.reem@gmail.com>, Matt Brubeck <mbrubeck@limpet.net>"
315316
ouroboros,https://github.com/someguynamedjosh/ouroboros,MIT OR Apache-2.0,Josh <someguynamedjosh@github.com>
316317
ouroboros_macro,https://github.com/someguynamedjosh/ouroboros,MIT OR Apache-2.0,Josh <someguynamedjosh@github.com>
317318
outref,https://github.com/Nugine/outref,MIT,The outref Authors

quickwit/Cargo.lock

Lines changed: 20 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quickwit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ quickwit-serve = { path = "quickwit-serve" }
346346
quickwit-storage = { path = "quickwit-storage" }
347347
quickwit-telemetry = { path = "quickwit-telemetry" }
348348

349-
tantivy = { git = "https://github.com/quickwit-oss/tantivy/", rev = "203751f", default-features = false, features = [
349+
tantivy = { git = "https://github.com/quickwit-oss/tantivy/", rev = "dabcaa5", default-features = false, features = [
350350
"lz4-compression",
351351
"mmap",
352352
"quickwit",

quickwit/quickwit-query/src/query_ast/user_input_query.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ fn convert_user_input_ast_to_query_ast(
187187
default_search_fields,
188188
lenient,
189189
)?;
190-
let boost: NotNaNf32 = (boost as f32)
190+
let boost: NotNaNf32 = (boost.into_inner() as f32)
191191
.try_into()
192192
.map_err(|err_msg: &str| anyhow::anyhow!(err_msg))?;
193193
Ok(QueryAst::Boost {

0 commit comments

Comments
 (0)