]> granicus.if.org Git - postgresql/commit
Fix memory leak in ARRAY(SELECT ...) subqueries.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 21 Jun 2012 21:26:07 +0000 (17:26 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 21 Jun 2012 21:27:19 +0000 (17:27 -0400)
commitd14241c2cf72966c09c1acece5cb44b5c84204b4
treed9b2ea23d9e939414755ab070b2b9bbbd52be9d5
parent68d0e3cbf9c4b5981679668ebb554a4ec050fc72
Fix memory leak in ARRAY(SELECT ...) subqueries.

Repeated execution of an uncorrelated ARRAY_SUBLINK sub-select (which
I think can only happen if the sub-select is embedded in a larger,
correlated subquery) would leak memory for the duration of the query,
due to not reclaiming the array generated in the previous execution.
Per bug #6698 from Armando Miraglia.  Diagnosis and fix idea by Heikki,
patch itself by me.

This has been like this all along, so back-patch to all supported versions.
src/backend/executor/nodeSubplan.c
src/include/nodes/execnodes.h