Re: Memory deallocation after calling cast function

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: Memory deallocation after calling cast function
Дата
Msg-id 20140617153237.GD3666@momjian.us
обсуждение исходный текст
Ответ на Re: Memory deallocation after calling cast function  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Memory deallocation after calling cast function
Список pgsql-hackers
On Tue, Jun  3, 2014 at 03:59:45PM -0400, Tom Lane wrote:
> Soroosh Sardari <soroosh.sardari@gmail.com> writes:
> > I have problem with memory deallocation. look at the following queries
> 
> > 1- create table test01(a) as select generate_series(1,100000000)::int8 ;
> 
> Do it as, eg,
> 
> create table test01(a) as select g::int8 from generate_series(1,100000000) g;
> 
> SRFs in the SELECT targetlist tend to leak memory; this is not easily
> fixable, and nobody is likely to try hard considering the feature's on
> the edge of deprecation anyhow.

Uh, what is replacing SRFs?  CTEs?

--  Bruce Momjian  <bruce@momjian.us>        http://momjian.us EnterpriseDB
http://enterprisedb.com
 + Everyone has their own god. +



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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: 9.4 release notes
Следующее
От: Matheus de Oliveira
Дата:
Сообщение: How about a proper TEMPORARY TABLESPACE?