()
| 155 | |
| 156 | #[test] |
| 157 | fn flush_no_op_when_memtable_empty() { |
| 158 | let dir = TempDir::new().unwrap(); |
| 159 | let mut e = ArrayEngine::new(ArrayEngineConfig::new(dir.path().to_path_buf())).unwrap(); |
| 160 | e.open_array(aid(), schema(), 0x1).unwrap(); |
| 161 | assert!(e.flush(&aid(), 1).unwrap().is_none()); |
| 162 | } |
| 163 | } |
nothing calls this directly
no test coverage detected