Re: Function won't compile - Mailing list pgsql-general

From Stephan Szabo
Subject Re: Function won't compile
Date
Msg-id Pine.BSF.4.21.0110241503130.57905-100000@megazone23.bigpanda.com
Whole thread Raw
In response to Function won't compile  ("Joop van Bussel" <jvbussel@natlab.research.philips.com>)
Responses Re: Function won't compile  (Tom Lane <tgl@sss.pgh.pa.us>)
List 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 by date:

Previous
From: Mike Mascari
Date:
Subject: Re: Disable Transaction - plans ?
Next
From: Gordan Bobic
Date:
Subject: Re: plperl and table/record access