Check if the :ref:`pipeline mode <pipeline-mode>` is supported. The feature requires libpq 14.0 or greater.
(self, check: bool = False)
| 45 | return self._has_feature("Connection.info.hostaddr", 120000, check=check) |
| 46 | |
| 47 | def has_pipeline(self, check: bool = False) -> bool: |
| 48 | """Check if the :ref:`pipeline mode <pipeline-mode>` is supported. |
| 49 | |
| 50 | The feature requires libpq 14.0 or greater. |
| 51 | """ |
| 52 | return self._has_feature("Connection.pipeline()", 140000, check=check) |
| 53 | |
| 54 | def has_set_trace_flags(self, check: bool = False) -> bool: |
| 55 | """Check if the `pq.PGconn.set_trace_flags()` method is implemented. |