Re: Consulta!

From: Mario Splivalo <mario(dot)splivalo(at)mobart(dot)hr>
To: Adriana Marcela Aguirre <ing_adriana_aguirre(at)yahoo(dot)com(dot)ar>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Consulta!
Date: 2005-10-18 14:49:59
Message-ID: 1129646999.7511.5.camel@ekim
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Tue, 2005-10-18 at 14:26 +0000, Adriana Marcela Aguirre wrote:
> Hola a todos!!...

Hi! :) That's a known postges 'problem', one which, I guess, every
pg-newbie encounters, especialy if he/she came from other RDBMSes. (I
personaly came from MSSQL).

> CREATE OR REPLACE FUNCTION "public"."f_test" () RETURNS SETOF
> "pg_catalog"."record" AS'
> BEGIN
> CREATE TEMPORARY TABLE test( x integer ) ON COMMIT DROP;
>
> INSERT INTO test values (1);
>
> --RETORNA LOS RESULTADOS
> FOR res IN SELECT x FROM test LOOP
> RETURN NEXT res;
> END LOOP;
> RETURN;
> END;
> 'LANGUAGE 'plpgsql' IMMUTABLE CALLED ON NULL INPUT SECURITY DEFINER;
>

Postgres parsed your function, and compilled it, when first run. When
doing so it refferenced your 'test' temp table via the oid. You do drop
the table at the end of the proc, but prepared query plan for that
function still references the OID that temp table had when it did
exists. So, you need to stop postgres to 'prepare' query plan for that
table. You do so by EXECUTEing the desired query, in your case:

FOR res IN EXECUTE SELECT x FROM test LOOP
...

It is more convinient to add the SQL query to a variable, and then exec
that variable, like so:

_SQL := 'SELECT a, b FROM tmpTable WHERE colText=' ||
quote_literal(someParametar);

FOR res IN EXECUTE _SQL LOOP
...

Mike

--
Mario Splivalo
Mob-Art
mario(dot)splivalo(at)mobart(dot)hr

"I can do it quick, I can do it cheap, I can do it well. Pick any two."

In response to

  • Consulta! at 2005-10-18 14:26:59 from Adriana Marcela Aguirre

Browse pgsql-sql by date

  From Date Subject
Next Message Lane Van Ingen 2005-10-18 19:38:54 What Am I Doing Wrong?
Previous Message Adriana Marcela Aguirre 2005-10-18 14:26:59 Consulta!