(self)
| 2264 | return self.cursor_strategy.fetchmany(self, self.cursor, size) |
| 2265 | |
| 2266 | def _raw_row_iterator(self) -> Any: |
| 2267 | return self._fetchiter_impl() |
| 2268 | |
| 2269 | def merge(self, *others: Result[Any]) -> MergedResult[Any]: |
| 2270 | merged_result = super().merge(*others) |
no test coverage detected