From: Denis Laxalde Date: Sat, 2 Oct 2021 16:57:21 +0000 (+0200) Subject: Add missing ExecStatusType enum values for pipeline mode X-Git-Tag: 3.0~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61303c4ce1c08ec107e4eaa267fb646edf79d083;p=thirdparty%2Fpsycopg.git Add missing ExecStatusType enum values for pipeline mode Follow-up 515e246b5f933ba93fdde93a03287c6940dbf85b; these values were only added for the Python definition of the enum. --- diff --git a/psycopg_c/psycopg_c/pq/libpq.pxd b/psycopg_c/psycopg_c/pq/libpq.pxd index 9fed6018b..381bfc5e3 100644 --- a/psycopg_c/psycopg_c/pq/libpq.pxd +++ b/psycopg_c/psycopg_c/pq/libpq.pxd @@ -95,6 +95,8 @@ cdef extern from "libpq-fe.h": PGRES_FATAL_ERROR PGRES_COPY_BOTH PGRES_SINGLE_TUPLE + PGRES_PIPELINE_SYNC + PGRES_PIPELINE_ABORT # 33.1. Database Connection Control Functions PGconn *PQconnectdb(const char *conninfo)