Re: Memory deallocation after calling cast function - Mailing list pgsql-hackers

From Bruce Momjian
Subject Re: Memory deallocation after calling cast function
Date
Msg-id 20140617153237.GD3666@momjian.us
Whole thread Raw
In response to Re: Memory deallocation after calling cast function  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Memory deallocation after calling cast function  (Abhijit Menon-Sen <ams@2ndquadrant.com>)
List 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 by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: 9.4 release notes
Next
From: Matheus de Oliveira
Date:
Subject: How about a proper TEMPORARY TABLESPACE?