From: | Michael Davis <mdavis(at)sevainc(dot)com> |
---|---|
To: | "'chard'" <chard(at)hindang(dot)msuiit(dot)edu(dot)ph>, "pgsql-sql(at)postgresql(dot)org" <pgsql-sql(at)postgresql(dot)org> |
Subject: | RE: plpgsql language |
Date: | 2001-01-24 05:56:10 |
Message-ID: | 01C0858F.B0B1E540.mdavis@sevainc.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Did you execute the following after you created your database?
CREATE FUNCTION plpgsql_call_handler () RETURNS OPAQUE AS
'/usr/local/pgsql/lib/plpgsql.so' LANGUAGE 'C';
CREATE TRUSTED PROCEDURAL LANGUAGE 'plpgsql'
HANDLER plpgsql_call_handler
LANCOMPILER 'PL/pgSQL';
These are needed for the plpgsql language to work.
-----Original Message-----
From: chard [SMTP:chard(at)hindang(dot)msuiit(dot)edu(dot)ph]
Sent: Tuesday, January 23, 2001 10:40 PM
To: pgsql-sql(at)postgresql(dot)org
Subject: plpgsql language
hello,
i got this error when i tried to create a function
"unrecognized language specified in CREATE FUNCTION: 'plpgsql'" why is
that?
From | Date | Subject | |
---|---|---|---|
Next Message | Prasanth Kumar | 2001-01-24 07:51:50 | Re: Order By Question |
Previous Message | chard | 2001-01-24 05:39:48 | plpgsql language |