(self)
| 1870 | return self.iterator |
| 1871 | |
| 1872 | def _fetchiter_impl(self) -> Iterator[_InterimSupportsScalarsRowType]: |
| 1873 | if self._hard_closed: |
| 1874 | self._raise_hard_closed() |
| 1875 | return self.iterator |
| 1876 | |
| 1877 | def _fetchone_impl( |
| 1878 | self, hard_close: bool = False |
nothing calls this directly
no test coverage detected