(self, *others: Result[Any])
| 2267 | return self._fetchiter_impl() |
| 2268 | |
| 2269 | def merge(self, *others: Result[Any]) -> MergedResult[Any]: |
| 2270 | merged_result = super().merge(*others) |
| 2271 | if self.context._has_rowcount: |
| 2272 | merged_result.rowcount = sum( |
| 2273 | cast("CursorResult[Any]", result).rowcount |
| 2274 | for result in (self,) + others |
| 2275 | ) |
| 2276 | return merged_result |
| 2277 | |
| 2278 | def close(self) -> None: |
| 2279 | """Close this :class:`_engine.CursorResult`. |