(self, size: Optional[int] = None)
| 2377 | return self.cursor_strategy.fetchall(self, self.cursor) |
| 2378 | |
| 2379 | def _fetchmany_impl(self, size: Optional[int] = None) -> Any: |
| 2380 | return self.cursor_strategy.fetchmany(self, self.cursor, size) |
| 2381 | |
| 2382 | def _raw_row_iterator(self) -> Any: |
| 2383 | return self._fetchiter_impl() |