Re: FUNCTION DEFINITION

From: "Joshua D(dot) Drake" <jd(at)commandprompt(dot)com>
To: ABHANG RANE <arane(at)indiana(dot)edu>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: FUNCTION DEFINITION
Date: 2007-06-22 17:05:17
Message-ID: 467C014D.3090303@commandprompt.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

ABHANG RANE wrote:
> Hi,
> If I have created a plpgsql function, is there a way I can look again at
> the create statement of that function. I need to know what exactly is
> there in the function.

select * from pg_proc where proname = 'foo'
or
\df+ function_name

>
> Thanks
> Abhang
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/docs/faq
>

--

=== The PostgreSQL Company: Command Prompt, Inc. ===
Sales/Support: +1.503.667.4564 || 24x7/Emergency: +1.800.492.2240
Providing the most comprehensive PostgreSQL solutions since 1997
http://www.commandprompt.com/

Donate to the PostgreSQL Project: http://www.postgresql.org/about/donate
PostgreSQL Replication: http://www.commandprompt.com/products/

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Erik Jones 2007-06-22 17:17:23 Re: ORDER BY with exception
Previous Message Richard Huxton 2007-06-22 17:05:13 Re: FUNCTION DEFINITION