Skip to content

Commit 3ee367f

Browse files
committed
Refactor Linux multi_get for improved error handling and key state tracking
1 parent 0708f12 commit 3ee367f

File tree

2 files changed

+263
-114
lines changed

2 files changed

+263
-114
lines changed

src/tree/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ impl Tree {
695695
super_version: &SuperVersion,
696696
keys: &[&[u8]], // keys must be sorted
697697
seqno: SeqNo,
698-
mut mapper: impl FnMut(InternalValue) -> V + Copy,
698+
mapper: impl FnMut(InternalValue) -> V + Copy,
699699
) -> crate::Result<Vec<Option<V>>> {
700700
let mut result = vec![None; keys.len()];
701701
let mut needs_resolution = Vec::with_capacity(keys.len());

0 commit comments

Comments
 (0)