2005/6/28, Jean-Max Reymond <[EMAIL PROTECTED]>: > For my application (in real life) afer millions of spi_exec_query, it > grows up to 1Gb :-(
OK, now in 2 lines: CREATE FUNCTION jmax() RETURNS integer AS $_$use strict; for (my $i=0; $i<10000000;$i++) { spi_exec_query("select 'foo'"); } my $j=1;$_$ LANGUAGE plperlu SECURITY DEFINER running this test and your postmaster eats a lot of memory. it seems that there is a memory leak in spi_exec_query :-( -- Jean-Max Reymond CKR Solutions Open Source Nice France http://www.ckr-solutions.com ---------------------------(end of broadcast)--------------------------- TIP 5: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq