]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix some near-bugs related to ResourceOwner function arguments
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 10 Dec 2025 09:43:16 +0000 (11:43 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 10 Dec 2025 09:44:07 +0000 (11:44 +0200)
commit998d100cdb7220a81b8775b67fbc1d5bbb918052
tree4e9c3132bef8f27e5c08c7ca171b21edbd26c3b0
parentd0518e965e6489ff2df0a71953e56656c710141a
Fix some near-bugs related to ResourceOwner function arguments

These functions took a ResourceOwner argument, but only checked if it
was NULL, and then used CurrentResourceOwner for the actual work.
Surely the intention was to use the passed-in resource owner. All
current callers passed CurrentResourceOwner or NULL, so this has no
consequences at the moment, but it's an accident waiting to happen for
future caller and extensions.

Author: Matthias van de Meent <boekewurm+postgres@gmail.com>
Discussion: https://www.postgresql.org/message-id/CAEze2Whnfv8VuRZaohE-Af+GxBA1SNfD_rXfm84Jv-958UCcJA@mail.gmail.com
Backpatch-through: 17
src/backend/utils/cache/catcache.c