]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix two issues in fast-path FK check introduced by commit 2da86c1ef9
authorAmit Langote <amitlan@postgresql.org>
Wed, 1 Apr 2026 08:29:33 +0000 (17:29 +0900)
committerAmit Langote <amitlan@postgresql.org>
Wed, 1 Apr 2026 08:30:33 +0000 (17:30 +0900)
commite484b0eea61482207b8fb8df9533be6d7defc25e
tree97ff4c7235ceb7e598648c86096d153842a28c7f
parentf6bd9f0fe25a3cea06e26204cc75cc6e954c4577
Fix two issues in fast-path FK check introduced by commit 2da86c1ef9

First, under CLOBBER_CACHE_ALWAYS, the RI_ConstraintInfo entry can
be invalidated by relcache callbacks triggered inside table_open()
or index_open(), leaving ri_FastPathCheck() calling
ri_populate_fastpath_metadata() with a stale entry whose valid flag
is false.  Fix by moving the fpmeta initialization to after
ri_CheckPermissions(), reloading riinfo first to ensure it is
valid, then calling ri_ExtractValues() and build_index_scankeys()
immediately after before any further operations that could trigger
invalidation.

Second, fpmeta allocated in TopMemoryContext was not freed when the
entry was invalidated in InvalidateConstraintCacheCallBack(),
leaking memory each time the constraint cache entry was recycled.
Fix by freeing and NULLing fpmeta at invalidation time.

Noticed locally when testing with CLOBBER_CACHE_ALWAYS.

Discussion: https://postgr.es/m/CA+HiwqGBU__7-VZZhQWQ3EQuwLYNPd9==ngnzduhGWKHMj9mvw@mail.gmail.com
src/backend/utils/adt/ri_triggers.c