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

From Tom Lane
Subject Re: Memory deallocation after calling cast function
Date
Msg-id 21238.1401825585@sss.pgh.pa.us
Whole thread Raw
In response to Memory deallocation after calling cast function  (Soroosh Sardari <soroosh.sardari@gmail.com>)
Responses Re: Memory deallocation after calling cast function  (Bruce Momjian <bruce@momjian.us>)
List pgsql-hackers
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.
        regards, tom lane



pgsql-hackers by date:

Previous
From: Andres Freund
Date:
Subject: Re: Hide 'Execution time' in EXPLAIN (COSTS OFF)
Next
From: Alvaro Herrera
Date:
Subject: Re: Hide 'Execution time' in EXPLAIN (COSTS OFF)