Skip to content

Commit

Permalink
update tantivy (#5500)
Browse files Browse the repository at this point in the history
* update tantivy

* update test to cover datetime ns precision
  • Loading branch information
PSeitz authored Oct 19, 2024
1 parent 29338a8 commit 57062ce
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions quickwit/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion quickwit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ quickwit-serve = { path = "quickwit-serve" }
quickwit-storage = { path = "quickwit-storage" }
quickwit-telemetry = { path = "quickwit-telemetry" }

tantivy = { git = "https://github.com/quickwit-oss/tantivy/", rev = "55b0b52", default-features = false, features = [
tantivy = { git = "https://github.com/quickwit-oss/tantivy/", rev = "2f2db16", default-features = false, features = [
"lz4-compression",
"mmap",
"quickwit",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ expected:
hits:
- _source: {"timestamp": "2015-01-10T12:00:00Z"}
- _source: {"timestamp": "2015-01-10T13:00:00Z"}
- _source: {"timestamp": "2015-01-10T14:00:00Z"}
- _source: {"timestamp": "2015-01-10T14:00:00.000000001Z"}
- _source: {"timestamp": "2015-01-11T12:00:00Z"}
- _source: {"timestamp": "2015-01-11T12:00:00Z"}
--- # ASC + TIMESTAMP filter
Expand Down Expand Up @@ -129,5 +129,5 @@ expected:
- _source: {"timestamp": "2015-01-11T12:00:00Z"}
- _source: {"timestamp": "2015-01-11T12:00:00Z"}
- _source: {"timestamp": "2015-01-11T12:00:00Z"}
- _source: {"timestamp": "2015-01-10T14:00:00Z"}
- _source: {"timestamp": "2015-01-10T14:00:00.000000001Z"}

Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ shuffle_ndjson:
- {"timestamp": "2015-01-10T13:00:00Z"}
- {"timestamp": "2015-01-11T12:00:00Z"}
- {"timestamp": "2015-01-10T10:00:00Z"}
- {"timestamp": "2015-01-10T14:00:00Z"} # 1h later than 2.doc
- {"timestamp": "2015-01-10T14:00:00.000000001Z"} # 1h later than 2.doc
- {"timestamp": "2015-01-11T12:00:00Z"}
- {"timestamp": "2015-01-10T10:00:00Z"}
- {"timestamp": "2015-01-10T12:00:00Z"} # 1h earlier than 2. doc
Expand Down

0 comments on commit 57062ce

Please sign in to comment.