1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-05 07:41:25 +03:00

Add braces for if block with large comment in psql's common.c

A patch touching this area of the code is under review, and this format
makes the readability of the code slightly harder to parse.

Extracted from a larger patch by the same author.

Author: Anthonin Bonnefoy <anthonin.bonnefoy@datadoghq.com>
Discussion: https://postgr.es/m/CAO6_XqroE7JuMEm1sWz55rp9fAYX2JwmcP_3m_v51vnOFdsLiQ@mail.gmail.com
This commit is contained in:
Michael Paquier
2025-02-21 09:18:49 +09:00
parent 2c53dec7f4
commit 40af897eb7

View File

@@ -1577,7 +1577,7 @@ ExecQueryAndProcessResults(const char *query,
if (result_status == PGRES_COPY_BOTH || if (result_status == PGRES_COPY_BOTH ||
result_status == PGRES_COPY_OUT || result_status == PGRES_COPY_OUT ||
result_status == PGRES_COPY_IN) result_status == PGRES_COPY_IN)
{
/* /*
* For some obscure reason PQgetResult does *not* return a * For some obscure reason PQgetResult does *not* return a
* NULL in copy cases despite the result having been cleared, * NULL in copy cases despite the result having been cleared,
@@ -1585,6 +1585,7 @@ ExecQueryAndProcessResults(const char *query,
* ignore manually. * ignore manually.
*/ */
result = NULL; result = NULL;
}
else else
result = PQgetResult(pset.db); result = PQgetResult(pset.db);