Fix query result leak during binary upgrade 9a974cbcba00 moved the query in binary_upgrade_set_pg_class_oids to the outer level, but left the PQclear and query buffer destruction in the is_index conditional. 353708e1fb2d fixed the leak of the query buffer but left the PGresult leak. This moves clearing the result to the outer level ensuring that it will be called.
Reviewed-by: Tom Lane <t...@sss.pgh.pa.us> Discussion: https://postgr.es/m/374550c1-f4ed-4d9d-9498-0fd029ccf...@yesql.se Backpatch-through: v15 Branch ------ REL_16_STABLE Details ------- https://git.postgresql.org/pg/commitdiff/0ae05c18e0bf740e6457e710f9323e75f6619c35 Modified Files -------------- src/bin/pg_dump/pg_dump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)