(&mut self, aid: &ArrayId)
| 138 | } |
| 139 | |
| 140 | fn flush(&mut self, aid: &ArrayId) { |
| 141 | let r = self.send(ArrayOp::Flush { |
| 142 | array_id: aid.clone(), |
| 143 | wal_lsn: 0, |
| 144 | }); |
| 145 | assert_eq!(r.status, Status::Ok, "flush failed: {r:?}"); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | fn cell(x: i64, y: i64, v: f64) -> ArrayPutCell { |
no test coverage detected