]> granicus.if.org Git - postgresql/commitdiff
In libpq, free any partial query result before collecting a server error.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 13 Apr 2018 16:53:46 +0000 (12:53 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 13 Apr 2018 16:53:46 +0000 (12:53 -0400)
We'd throw away the partial result anyway after parsing the error message.
Throwing it away beforehand costs nothing and reduces the risk of
out-of-memory failure.  Also, at least in systems that behave like
glibc/Linux, if the partial result was very large then the error PGresult
would get allocated at high heap addresses, preventing the heap storage
used by the partial result from being released to the OS until the error
PGresult is freed.

In psql >= 9.6, we hold onto the error PGresult until another error is
received (for \errverbose), so that this behavior causes a seeming
memory leak to persist for awhile, as in a recent complaint from
Darafei Praliaskouski.  This is a potential performance regression from
older versions, justifying back-patching at least that far.  But similar
behavior may occur in other client applications, so it seems worth just
back-patching to all supported branches.

Discussion: https://postgr.es/m/CAC8Q8tJ=7cOkPePyAbJE_Pf691t8nDFhJp0KZxHvnq_uicfyVg@mail.gmail.com

src/interfaces/libpq/fe-protocol2.c
src/interfaces/libpq/fe-protocol3.c

index cf765bee4fa85343d12c34b389de9b2673dfa8f2..48023ef2bee3b1d05d66dd30dac09dbb9c011062 100644 (file)
@@ -967,6 +967,14 @@ pqGetErrorNotice2(PGconn *conn, bool isError)
        char       *startp;
        char       *splitp;
 
+       /*
+        * If this is an error message, pre-emptively clear any incomplete query
+        * result we may have.  We'd just throw it away below anyway, and
+        * releasing it before collecting the error might avoid out-of-memory.
+        */
+       if (isError)
+               pqClearAsyncResult(conn);
+
        /*
         * Since the message might be pretty long, we create a temporary
         * PQExpBuffer rather than using conn->workBuffer.  workBuffer is intended
@@ -1039,7 +1047,7 @@ pqGetErrorNotice2(PGconn *conn, bool isError)
         */
        if (isError)
        {
-               pqClearAsyncResult(conn);
+               pqClearAsyncResult(conn);       /* redundant, but be safe */
                conn->result = res;
                resetPQExpBuffer(&conn->errorMessage);
                if (res && !PQExpBufferDataBroken(workBuf) && res->errMsg)
index 547934826edb83c959d149fce1e2c0fb95ae8909..280b71458952e0d0507b1f2b674b010fbc88a557 100644 (file)
@@ -869,6 +869,14 @@ pqGetErrorNotice3(PGconn *conn, bool isError)
        const char *querytext = NULL;
        int                     querypos = 0;
 
+       /*
+        * If this is an error message, pre-emptively clear any incomplete query
+        * result we may have.  We'd just throw it away below anyway, and
+        * releasing it before collecting the error might avoid out-of-memory.
+        */
+       if (isError)
+               pqClearAsyncResult(conn);
+
        /*
         * Since the fields might be pretty long, we create a temporary
         * PQExpBuffer rather than using conn->workBuffer.  workBuffer is intended
@@ -1030,7 +1038,7 @@ pqGetErrorNotice3(PGconn *conn, bool isError)
        {
                if (res)
                        res->errMsg = pqResultStrdup(res, workBuf.data);
-               pqClearAsyncResult(conn);
+               pqClearAsyncResult(conn);       /* redundant, but be safe */
                conn->result = res;
                if (PQExpBufferDataBroken(workBuf))
                        printfPQExpBuffer(&conn->errorMessage,