Re: Postgre: 8.0.1 Create Table insde a function gives strange error at execution time - Mailing list pgsql-sql

From Tom Lane
Subject Re: Postgre: 8.0.1 Create Table insde a function gives strange error at execution time
Date
Msg-id 5599.1111939302@sss.pgh.pa.us
Whole thread Raw
In response to Postgre: 8.0.1 Create Table insde a function gives strange error at execution time  ("Franz Stuetzle" <franz.stuetzle@gmx.net>)
List pgsql-sql
"Franz Stuetzle" <franz.stuetzle@gmx.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


pgsql-sql by date:

Previous
From: Enrico Weigelt
Date:
Subject: (non)zero function
Next
From: Bruno Wolff III
Date:
Subject: Re: Foreign key