]> granicus.if.org Git - postgresql/commit
Avoid memory leak if pgstat_vacuum_stat is interrupted partway through.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 27 Dec 2009 19:40:07 +0000 (19:40 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 27 Dec 2009 19:40:07 +0000 (19:40 +0000)
commit0b392314315a55aa201f53b2ba71986be91ebc69
tree051d65b9a0413baa8e4af46355c3e419fa786f6e
parentd4d1885e42ecc7d61c045f6d53b8fef4454083a9
Avoid memory leak if pgstat_vacuum_stat is interrupted partway through.
The temporary hash tables made by pgstat_collect_oids should be allocated
in a short-term memory context, which is not the default behavior of
hash_create.  Noted while looking through hash_create calls in connection
with Robert Haas' recent complaint.

This is a pre-existing bug, but it doesn't seem important enough to
back-patch.  The hash table is not so large that it would matter unless this
happened many times within a session, which seems quite unlikely.
src/backend/postmaster/pgstat.c