(dir: &std::path::Path, txn_id: u32)
| 439 | } |
| 440 | |
| 441 | fn reopen_wal(dir: &std::path::Path, txn_id: u32) -> WALFile { |
| 442 | WALFile::from_existing(dir, VersionNumber::from(txn_id)).unwrap() |
| 443 | } |
| 444 | |
| 445 | #[test] |
| 446 | fn test_random_upsert_persistence() { |
no outgoing calls