| 7025 | } |
| 7026 | |
| 7027 | PGpipelineStatus |
| 7028 | PQpipelineStatus(const PGconn *conn) |
| 7029 | { |
| 7030 | if (!conn) |
| 7031 | return PQ_PIPELINE_OFF; |
| 7032 | |
| 7033 | return conn->pipelineStatus; |
| 7034 | } |
| 7035 | |
| 7036 | int |
| 7037 | PQconnectionNeedsPassword(const PGconn *conn) |
no outgoing calls