pgsql: Fix memory leak in pgbench

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема pgsql: Fix memory leak in pgbench
Дата
Msg-id E1hDu6Z-00010m-Ct@gemulon.postgresql.org
обсуждение исходный текст
Ответы Re: pgsql: Fix memory leak in pgbench  (Fabien COELHO <coelho@cri.ensmp.fr>)
Re: pgsql: Fix memory leak in pgbench  (Masahiko Sawada <sawada.mshk@gmail.com>)
Список pgsql-committers
Fix memory leak in pgbench

Commit 25ee70511ec2 introduced a memory leak in pgbench: some PGresult
structs were not being freed during error bailout, because we're now
doing more PQgetResult() calls than previously.  Since there's more
cleanup code outside the discard_response() routine than in it, refactor
the cleanup code, removing the routine.

This has little effect currently, since we abandon processing after
hitting errors, but if we ever get further pgbench features (such as
testing for serializable transactions), it'll matter.

Per Coverity.

Reviewed-by: Michaël Paquier

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/fe0e0b4fc7f0cdc2333bda08b199422a1e77a551

Modified Files
--------------
src/bin/pgbench/pgbench.c | 48 ++++++++++++++++++-----------------------------
1 file changed, 18 insertions(+), 30 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Test some more cases with partitioned tables in EvalPlanQual.
Следующее
От: Alvaro Herrera
Дата:
Сообщение: pgsql: Fix typo