Handle PGRES_PIPELINE_* for PQResult()

This commit is contained in:
Joris Vink 2021-10-27 22:27:42 +02:00
parent c68eb0c705
commit fa97544f01
1 changed files with 2 additions and 0 deletions

View File

@ -772,6 +772,8 @@ pgsql_read_result(struct kore_pgsql *pgsql)
}
switch (PQresultStatus(pgsql->result)) {
case PGRES_PIPELINE_SYNC:
case PGRES_PIPELINE_ABORTED:
case PGRES_COPY_OUT:
case PGRES_COPY_IN:
case PGRES_NONFATAL_ERROR: