(dir: &TempDir)
| 54 | } |
| 55 | |
| 56 | fn open_engine(dir: &TempDir) -> ArrayEngine { |
| 57 | let mut e = ArrayEngine::new(ArrayEngineConfig::new(dir.path().to_path_buf())).unwrap(); |
| 58 | e.open_array(aid(), schema(), SCHEMA_HASH).unwrap(); |
| 59 | e |
| 60 | } |
| 61 | |
| 62 | fn open_engine_with_threshold(dir: &TempDir, flush_threshold: usize) -> ArrayEngine { |
| 63 | let mut cfg = ArrayEngineConfig::new(dir.path().to_path_buf()); |
no test coverage detected