Re: Newbie: execute function error!

From: dev(at)archonet(dot)com
To: John GM <gm(at)weri(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Newbie: execute function error!
Date: 2001-03-07 21:41:27
Message-ID: 20010307.21412700@client.archonet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On 3/6/01, 5:55:05 AM, John GM <gm(at)weri(dot)com> wrote regarding [SQL] Newbie:
execute function error!:

> I created a sample function:

> CREATE FUNCTION concat_text (text, text) RETURNS text AS '
> BEGIN
> RETURN $1 || $2;
> END; '
> LANGUAGE 'plpgsql';

> The creation was fine. But when I execute the function with : select
> concat('a', 'b');

> I get the error:

> NOTICE: plpgsql: ERROR during compile of concat_text near line 1
> "RROR: parse error at or near "

> What did I do wrong?

Nothing wrong with your function, but the error seems to be missing an E
at the front (unless it's a typo) - you didn't cut and paste the
definition from a Windows machine to *nix did you - leaves CR characters
lying around.

- Richard Huxton

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message dev 2001-03-07 21:49:14 Re: work on rows
Previous Message Roland Roberts 2001-03-07 20:40:44 Re: [SQL] Permissons on database