Re: Postgre: 8.0.1 Create Table insde a function gives strange error at execution time
В списке pgsql-sql по дате отправления:
| От | 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 по дате отправления:
Сайт использует файлы cookie для корректной работы и повышения удобства. Нажимая кнопку «Принять» или продолжая пользоваться сайтом, вы соглашаетесь на их использование в соответствии с Политикой в отношении обработки cookie ООО «ППГ», в том числе на передачу данных из файлов cookie сторонним статистическим и рекламным службам. Вы можете управлять настройками cookie через параметры вашего браузера