mirror of
https://github.com/postgres/postgres.git
synced 2025-07-21 16:02:15 +03:00
Fix missed cases in libpq's error handling.
Commit 618c16707
invented an "error_result" flag in PGconn, which
intends to represent the state that we have an error condition and
need to build a PGRES_FATAL_ERROR PGresult from the message text in
conn->errorMessage, but have not yet done so. (Postponing construction
of the error object simplifies dealing with out-of-memory conditions
and with concatenation of messages for multiple errors.) For nearly all
purposes, this "virtual" PGresult object should act the same as if it
were already materialized. But a couple of places in fe-protocol3.c
didn't get that memo, and were only testing conn->result as they used
to, without also checking conn->error_result.
In hopes of reducing the probability of similar mistakes in future,
I invented a pgHavePendingResult() macro that includes both tests.
Per report from Peter Eisentraut.
Discussion: https://postgr.es/m/b52277b9-fa66-b027-4a37-fb8989c73ff8@enterprisedb.com
This commit is contained in:
@ -1196,6 +1196,7 @@ pqSaveParameterStatus(PGconn *conn, const char *name, const char *value)
|
||||
* Returns 1 if OK, 0 if error occurred.
|
||||
*
|
||||
* On error, *errmsgp can be set to an error string to be returned.
|
||||
* (Such a string should already be translated via libpq_gettext().)
|
||||
* If it is left NULL, the error is presumed to be "out of memory".
|
||||
*
|
||||
* In single-row mode, we create a new result holding just the current row,
|
||||
@ -1986,7 +1987,7 @@ PQsetSingleRowMode(PGconn *conn)
|
||||
(conn->cmd_queue_head->queryclass != PGQUERY_SIMPLE &&
|
||||
conn->cmd_queue_head->queryclass != PGQUERY_EXTENDED))
|
||||
return 0;
|
||||
if (conn->result || conn->error_result)
|
||||
if (pgHavePendingResult(conn))
|
||||
return 0;
|
||||
|
||||
/* OK, set flag */
|
||||
@ -2941,7 +2942,7 @@ PQfn(PGconn *conn,
|
||||
}
|
||||
|
||||
if (conn->sock == PGINVALID_SOCKET || conn->asyncStatus != PGASYNC_IDLE ||
|
||||
conn->result || conn->error_result)
|
||||
pgHavePendingResult(conn))
|
||||
{
|
||||
appendPQExpBufferStr(&conn->errorMessage,
|
||||
libpq_gettext("connection in wrong state\n"));
|
||||
|
Reference in New Issue
Block a user