Re: Function won't compile

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: Function won't compile
Дата
Msg-id Pine.BSF.4.21.0110241503130.57905-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на Function won't compile  ("Joop van Bussel" <jvbussel@natlab.research.philips.com>)
Ответы Re: Function won't compile  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
On Wed, 24 Oct 2001, Joop van Bussel wrote:

> Does anybody know why the function insert_case() won't compile. When I
> INSERT a new record I always get the following error message :
>
> NOTICE:  plpgsql: ERROR during compile of insert_case near line 1
> "RROR:  parse error at or near "
>
> Below is the function and trigger. ('Now' is surrounded with single quotes)
>
> CREATE FUNCTION insert_case () RETURNS INTEGER AS '
>   BEGIN
>     NEW.date_created := ''now'';
>   END;
> ' LANGUAGE 'SQL';
>
> CREATE TRIGGER trg_insert_case BEFORE INSERT ON pfdcase FOR EACH ROW EXECUTE
> PROCEDURE insert_case();

Is it possible that you've got CRLFs at the end of lines instead of just
plain LFs in the function?


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

Предыдущее
От: Mike Mascari
Дата:
Сообщение: Re: Disable Transaction - plans ?
Следующее
От: Gordan Bobic
Дата:
Сообщение: Re: plperl and table/record access