(self)
| 334 | self._select_current_result(0) |
| 335 | |
| 336 | def _fetch_pipeline(self) -> None: |
| 337 | if ( |
| 338 | self._execmany_returning is not False |
| 339 | and (not self.pgresult) |
| 340 | and self._conn._pipeline |
| 341 | ): |
| 342 | with self._conn.lock: |
| 343 | self._conn.wait(self._conn._pipeline._fetch_gen(flush=True)) |