Problem with PL/pgSQL - Mailing list pgsql-sql

From Vladimir Terziev
Subject Problem with PL/pgSQL
Date
Msg-id 200002081346.PAA11001@lorna.digsys.bg
Whole thread Raw
Responses Re: [SQL] Problem with PL/pgSQL  (Vince Gonzalez <vince@nycrc.net>)
Re: [SQL] Problem with PL/pgSQL  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: [SQL] Problem with PL/pgSQL  (wieck@debis.com (Jan Wieck))
List pgsql-sql
   Hi

   I try to create the next function:

create function ttt() RETURNS OPAQUE AS '
BEGIN
RAISE EXCEPTION "Hello"
END' language 'plpgsql';

The result is:

ERROR:  Unrecognized language specified in a CREATE FUNCTION: 'plpgsql'.  
Recognized languages are sql, C, internal and the created procedural languages.

   I have postgres SQL ver. 6.5.2. 

   What's going on?
Vladimir






pgsql-sql by date:

Previous
From: Radhesh Mohandas
Date:
Subject: Efficiency
Next
From: Vince Gonzalez
Date:
Subject: Re: [SQL] Problem with PL/pgSQL