We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 903ee6c commit 922ea0aCopy full SHA for 922ea0a
1 file changed
benchmarks-website/migrate/tests/end_to_end.rs
@@ -277,7 +277,9 @@ fn open_target_db_removes_orphan_wal() {
277
assert!(wal.exists(), "precondition: orphan wal staged");
278
assert!(!target.exists(), "precondition: no main db file");
279
280
- let _conn = migrate::open_target_db(&target).unwrap();
+ {
281
+ let _conn = migrate::open_target_db(&target).unwrap();
282
+ }
283
284
// The migrator opens the DB after sweeping the WAL; DuckDB may
285
// recreate its own wal under load, but our pre-existing orphan
0 commit comments