Re: pl/pgsql errors

Поиск
Список
Период
Сортировка
От Tambet Matiisen
Тема Re: pl/pgsql errors
Дата
Msg-id 000701c2e17a$71ebbe50$0e01a8c0@aprote.com
обсуждение исходный текст
Ответ на pl/pgsql errors  (Tomasz Myrta <jasiek@klaster.net>)
Список pgsql-sql
----- Original Message -----
From: "Tomasz Myrta" <jasiek@klaster.net>
To: <pgsql-sql@postgresql.org>
Sent: Monday, March 03, 2003 1:32 PM
Subject: [SQL] pl/pgsql errors


> Hi
>
> create function....
> declare
>    some_field   integer;
> begin
>    some_field=1;
>    insert into some_table (some_field) values (some_field);
> end;
>
> When we try to execute such function, we get:
> "ERROR:  parser: parse error at or near "$1" at character..."
> Well, example above is clear enough to find, that I declared field with
> the same name as in a table. I lost a lot of time trying to find mistake
> inside long functions until I remembered, what this strange error mean.
>
> Would it be difficult to add special ERROR for this case? It annoyed me
> so many times...
>

Probably some_field was declared as alias for $1. I think plpgsql does
simple find&replace for aliases, that's how $1 appeared in wrong place. I
usually prefix all procedure parameters with p_, this guards me against this
situation and also makes code more clear.
 Tambet



В списке pgsql-sql по дате отправления:

Предыдущее
От: Tomasz Myrta
Дата:
Сообщение: pl/pgsql errors
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: two dates