(self, with: Self)
| 322 | } |
| 323 | |
| 324 | fn join(self, with: Self) -> Self { |
| 325 | match with { |
| 326 | Self::Row(ptr) => self.append(ptr), |
| 327 | Self::Join(ptrs) => ptrs.into_iter().fold(self, |tup, ptr| tup.append(ptr)), |
| 328 | } |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | pub struct DeltaScanIter<'a> { |