Re: Patch for memory leaks in index scan

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Patch for memory leaks in index scan
Дата
Msg-id 1801.1019238843@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Patch for memory leaks in index scan  (Dmitry Tkach <dmitry@openratings.com>)
Список pgsql-bugs
Dmitry Tkach <dmitry@openratings.com> writes:
> *** nodeIndexscan.c.orig        Fri Apr 19 10:29:57 2002
> --- nodeIndexscan.c     Fri Apr 19 10:30:00 2002
> ***************
> *** 505,510 ****
> --- 505,514 ----
>           */
>          ExecClearTuple(scanstate->cstate.cs_ResultTupleSlot);
>          ExecClearTuple(scanstate->css_ScanTupleSlot);
> +       pfree(scanstate);
> +       pfree(indexstate->iss_RelationDescs);
> +       pfree(indexstate->iss_ScanDescs);
> +       pfree(indexstate);
>    }

I do not believe this patch will fix anything.

In general, the EndNode routines do not bother with releasing memory,
because it's the end of the query and we're about to drop or reset
the per-query context anyway.  If the above pfrees are actually needed
then there are a heck of a lot of other places that need explicit
pfrees.  And that is not a path to a solution, because there will
*always* be places that forgot a pfree.  What's needed is a structural
solution.

I think your real complaint is that SQL functions leak memory.  They
should be creating a sub-context for their queries that can be freed
when the function finishes.

            regards, tom lane

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Alban Médici
Дата:
Сообщение: Still Inheritance Bugs with postgres 7.2.1
Следующее
От: Dmitry Tkach
Дата:
Сообщение: Re: Patch for memory leaks in index scan