move drop(db) to the end

This commit is contained in:
abbycin 2025-10-12 16:58:23 +08:00
parent db78ee6722
commit 1bd738cd3e
Signed by: abby
GPG Key ID: B636E0F0307EF8EB

View File

@ -106,7 +106,6 @@ fn main() {
} }
}); });
pre_tx.commit().unwrap(); pre_tx.commit().unwrap();
drop(pre_tx);
drop(db); drop(db);
// re-open db // re-open db
saved.tmp_store = true; saved.tmp_store = true;
@ -177,9 +176,6 @@ fn main() {
for x in h { for x in h {
x.join().unwrap(); x.join().unwrap();
} }
drop(db);
#[cfg(feature = "custom_alloc")]
print_filtered_trace(|x, y| log::info!("{}{}", x, y));
let test_start = start_time.lock().unwrap(); let test_start = start_time.lock().unwrap();
let duration = test_start.elapsed(); let duration = test_start.elapsed();
@ -214,4 +210,7 @@ fn main() {
ops, ops,
duration.as_millis() duration.as_millis()
); );
drop(db);
#[cfg(feature = "custom_alloc")]
print_filtered_trace(|x, y| log::info!("{}{}", x, y));
} }