Return the PID of the Postgres server the connection is bound to.
(self)
| 250 | self._query_loggers.discard(_Callback.from_callable(callback)) |
| 251 | |
| 252 | def get_server_pid(self): |
| 253 | """Return the PID of the Postgres server the connection is bound to.""" |
| 254 | return self._protocol.get_server_pid() |
| 255 | |
| 256 | def get_server_version(self): |
| 257 | """Return the version of the connected PostgreSQL server. |
no outgoing calls