Re: Postgre: 8.0.1 Create Table insde a function gives strange error at execution time

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Franz Stuetzle" <franz(dot)stuetzle(at)gmx(dot)net>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Postgre: 8.0.1 Create Table insde a function gives strange error at execution time
Date: 2005-03-27 16:01:42
Message-ID: 5599.1111939302@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

"Franz Stuetzle" <franz(dot)stuetzle(at)gmx(dot)net> writes:
> ERROR: syntax error at or near "$1" bei Zeichen 87
> ANFRAGE: CREATE TEMPORARY TABLE globals_pac_adressarten (INT_ALIAS_NAME
> VARCHAR(12) NOT NULL , $1 SMALLINT NOT NULL ,
> $2 SMALLINT NOT NULL ) WITHOUT OIDS ON COMMIT PRESERVE ROWS

> Would anybody know where those $1 and $2 come from?

Undoubtedly they are from plpgsql variable substitution. As a general
rule, variables in a plpgsql function should never be named the same as
any table or field name that you need to access in that function,
because plpgsql isn't smart enough to tell whether it ought to
substitute its variable for a reference or not. It will always do so,
even in cases where there arguably might be a way for it to tell that
it shouldn't (and there are cases where it simply couldn't tell, anyway).

regards, tom lane

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Mike Rylander 2005-03-27 16:20:27 Re: detaching triggers
Previous Message Enrico Weigelt 2005-03-27 15:58:07 (non)zero function