Re: [SQL] Problem with PL/pgSQL - Mailing list pgsql-sql

From wieck@debis.com (Jan Wieck)
Subject Re: [SQL] Problem with PL/pgSQL
Date
Msg-id m12ID7s-0003kGC@orion.SAPserv.Hamburg.dsh.de
Whole thread Raw
In response to Problem with PL/pgSQL  ("Vladimir Terziev" <vlady@school.digsys.bg>)
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?
   As  the  message  says, only the created procedural languages   can be recognized.  You haven't enabled the language
and  it   isn't installed by default.  Use
 
       createlang <dbname>
   to  install  it  in  your  database. If you install it in the   template1 database, than  all  subsequent  created
databases  automatically inherit this.
 


Jan

--

#======================================================================#
# It's easier to get forgiveness for being wrong than for being right. #
# Let's break this rule - forgive me.                                  #
#========================================= wieck@debis.com (Jan Wieck) #




pgsql-sql by date:

Previous
From: Tom Lane
Date:
Subject: Re: [SQL] Problem with PL/pgSQL
Next
From: Lars
Date:
Subject: Re: [SQL] SubSelect as a column