Don't run RelationInitTableAccessMethod in a long-lived context.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 1452a0bb87c78812372f103de14cb6492a932ac6
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2021-03-19T00:50:56Z
Releases: 12.7
Don't run RelationInitTableAccessMethod in a long-lived context.

Some code paths in this function perform syscache lookups, which
can lead to table accesses and possibly leakage of cruft into
the caller's context.  If said context is CacheMemoryContext,
we eventually will have visible bloat.  But fixing this is no
harder than moving one memory context switch step.  (The other
callers don't have a problem.)

Andres Freund and I independently found this via valgrind testing.
Back-patch to v12 where this code was added.

Discussion: https://postgr.es/m/20210317023101.anvejcfotwka6gaa@alap3.anarazel.de
Discussion: https://postgr.es/m/3816764.1616104288@sss.pgh.pa.us

Files

PathChange+/−
src/backend/utils/cache/relcache.c modified +7 −5

Discussion