Fix minor memory leak introduced in recent SQL-functions hacking: the
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 27 Nov 2008 00:10:04 +0000 (00:10 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 27 Nov 2008 00:10:04 +0000 (00:10 +0000)
commit12d47bc07b968ab1191be8c78677ee845018dc83
tree9aa703fa8f5919fffc176de6c4b09b45160fa4d3
parent0208823e11e8ca9b4765d42cd1845861f236c7f6
Fix minor memory leak introduced in recent SQL-functions hacking: the
DestReceiver created during postquel_start needs to be destroyed during
postquel_end.  In a moment of brain fade I had assumed this would be taken
care of by FreeQueryDesc, but it's not (and shouldn't be).
src/backend/executor/functions.c