(
self,
)
| 1888 | return row |
| 1889 | |
| 1890 | def _fetchall_impl( |
| 1891 | self, |
| 1892 | ) -> List[_InterimRowType[Row[Unpack[TupleAny]]]]: |
| 1893 | if self._hard_closed: |
| 1894 | self._raise_hard_closed() |
| 1895 | try: |
| 1896 | return list(self.iterator) |
| 1897 | finally: |
| 1898 | self._soft_close() |
| 1899 | |
| 1900 | def _fetchmany_impl( |
| 1901 | self, size: Optional[int] = None |
nothing calls this directly
no test coverage detected