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

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Postgre: 8.0.1 Create Table insde a function gives strange error at execution time
Дата
Msg-id 5599.1111939302@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Postgre: 8.0.1 Create Table insde a function gives strange error at execution time  ("Franz Stuetzle" <franz.stuetzle@gmx.net>)
Список 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 по дате отправления:

Предыдущее
От: Enrico Weigelt
Дата:
Сообщение: (non)zero function
Следующее
От: Bruno Wolff III
Дата:
Сообщение: Re: Foreign key