Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: BubbleCal <[email protected]>
  • Loading branch information
BubbleCal committed Oct 23, 2024
1 parent 3f138f7 commit 0ff2b7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/lance-index/src/scalar/inverted/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ pub fn flat_bm25_search_stream(
.into_iter()
.dedup()
.map(|token| {
let token_id = index.tokens.get(&token).clone();
let token_id = index.tokens.get(&token);
(token, token_id)
})
.collect::<HashMap<_, _>>();
Expand Down

0 comments on commit 0ff2b7e

Please sign in to comment.