From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Make libpq_pipeline.c shorter and more uniform via helper functi |
Date: | 2025-09-03 20:08:03 |
Message-ID: | E1uttlz-000Lyd-2u@gemulon.postgresql.org |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Make libpq_pipeline.c shorter and more uniform via helper functions.
There are many places in this test program that need to consume a
PGresult while checking that its PQresultStatus is as-expected, or
related tasks such as checking that PQgetResult has nothing more to
return. These tasks were open-coded in a rather inconsistent way,
leading to some outright bugs, some memory leakage, and frequent
inconsistencies about what would be reported in event of an error.
Invent a few helper functions to standardize the behavior and
reduce code duplication. Also, rename the one pre-existing helper
function from confirm_query_canceled to consume_query_cancel, per
Álvaro's suggestion that "confirm" is a poor choice of verb for a
function that will discard the PGresult.
While at it, clean up assorted other places that were leaking
PGresults or even server connections. This is pure neatnik-ism,
since the test doesn't run long enough for those leaks to be of
any real-world concern.
While this fixes some things that are clearly bugs, it's only
a test program, and none of the bugs seem serious enough to
justify back-patching.
Bug: #18960
Reported-by: Dmitry Kovalenko <d(dot)kovalenko(at)postgrespro(dot)ru>
Author: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Reviewed-by: Álvaro Herrera <alvherre(at)kurilemu(dot)de>
Discussion: https://postgr.es/m/18960-09cd4a5100152e58@postgresql.org
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/e351e5c4fea463d9f96557913f7f767af3795c32
Modified Files
--------------
src/test/modules/libpq_pipeline/libpq_pipeline.c | 549 +++++++++--------------
1 file changed, 201 insertions(+), 348 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Paquier | 2025-09-03 23:35:12 | pgsql: Fix incorrect comment in pgstat_backend.c |
Previous Message | Nathan Bossart | 2025-09-03 18:58:16 | pgsql: Move dynamically-allocated LWLock tranche names to shared memory |