mirror of
https://github.com/postgres/postgres.git
synced 2025-07-08 11:42:09 +03:00
Remove memory leak protection from Gather and Gather Merge nodes.
Before commit6b65a7fe62
, tqueue.c could perform tuple remapping and thus leak memory, which is why commitaf33039317
made TupleQueueReaderNext run in a short-lived context. Now, however, tqueue.c has been reduced to a shadow of its former self, and there shouldn't be any chance of leaks any more. Accordingly, remove some tuple copying and memory context manipulation to speed up processing. Patch by me, reviewed by Amit Kapila. Some testing by Rafia Sabih. Discussion: http://postgr.es/m/CAA4eK1LSDydwrNjmYSNkfJ3ZivGSWH9SVswh6QpNzsMdj_oOQA@mail.gmail.com
This commit is contained in:
@ -161,6 +161,8 @@ DestroyTupleQueueReader(TupleQueueReader *reader)
|
||||
* is set to true when there are no remaining tuples and otherwise to false.
|
||||
*
|
||||
* The returned tuple, if any, is allocated in CurrentMemoryContext.
|
||||
* Note that this routine must not leak memory! (We used to allow that,
|
||||
* but not any more.)
|
||||
*
|
||||
* Even when shm_mq_receive() returns SHM_MQ_WOULD_BLOCK, this can still
|
||||
* accumulate bytes from a partially-read message, so it's useful to call
|
||||
|
Reference in New Issue
Block a user