pgsql: Fix possible future cache reference leak in ALTER EXTENSION ADD/

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix possible future cache reference leak in ALTER EXTENSION ADD/
Date: 2020-04-17 17:42:10
Message-ID: E1jPV0E-0001Cj-G6@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix possible future cache reference leak in ALTER EXTENSION ADD/DROP.

recordExtObjInitPriv and removeExtObjInitPriv were sloppy about
calling ReleaseSysCache. The cases cannot occur given current usage
in ALTER EXTENSION ADD/DROP, since we wouldn't get here for these
relkinds; but it seems wise to clean up better.

In passing, extend test logic in test_pg_dump to exercise the
dropped-column code paths here.

Since the case is unreachable at present, there seems no great
need to back-patch; hence fix HEAD only.

Kyotaro Horiguchi, with test case and comment adjustments by me

Discussion: https://postgr.es/m/20200417.151831.1153577605111650154.horikyota.ntt@gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/3125a5baec1cf6d3aaeb8964bc3b3c49835e0452

Modified Files
--------------
src/backend/catalog/aclchk.c | 47 +++++++++++++---------
src/test/modules/test_pg_dump/README | 2 +
.../modules/test_pg_dump/expected/test_pg_dump.out | 3 +-
src/test/modules/test_pg_dump/sql/test_pg_dump.sql | 3 +-
4 files changed, 35 insertions(+), 20 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andrew Dunstan 2020-04-17 18:19:17 pgsql: Only provide new libpq sslpasskey hook for openssl-enabled build
Previous Message Fujii Masao 2020-04-17 09:38:29 pgsql: Add index term for backup manifest in documentation.