Re: [HACKERS] plpgsql problem.. - Mailing list pgsql-hackers

From Tom Lane
Subject Re: [HACKERS] plpgsql problem..
Date
Msg-id 14380.949421335@sss.pgh.pa.us
Whole thread Raw
In response to Re: [HACKERS] plpgsql problem..  ("Mitch Vincent" <mitch@venux.net>)
List pgsql-hackers
"Mitch Vincent" <mitch@venux.net> writes:
> This might sound like an ignorant question but how does one dump the
> function catalog?

Tryselect * from pg_proc where proname = 'functionOfInterest';

I think Sevo has identified the problem though: the CREATE FUNCTION
command for the plpgsql_call_handler function needs to give an exact
path name.  What you are showing looks like the command tried to use an
environment variable and the substitution didn't happen.  Better review
the procedure you used to install plpgsql.  I'd recommend using the
createlang script, btw, not doing it by hand.
        regards, tom lane


pgsql-hackers by date:

Previous
From: Don Baccus
Date:
Subject: Re: [HACKERS] END/ABORT
Next
From: Sevo Stille
Date:
Subject: Re: [HACKERS] plpgsql problem..