Re: How can I display the contents of a function?

From: "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: How can I display the contents of a function?
Date: 2009-01-19 12:56:23
Message-ID: 20090119125623.GC2686@a-kretschmer.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

In response to Thom Brown :
> I would like to see what's in a function. I can do this if I use pgAdmin III
> just by clicking on the function, and it appears in the SQL pane opposite. But
> how is this done? Is there a command like DESCRIBE FUNCTION logging.do_stuff;
> ? And if possible, doing this without psql.

All details about a function are stored in pg_proc. So you can do a
select on this table to retrieve the source-code.

Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Igor Katson 2009-01-19 13:04:49 Re: How can I display the contents of a function?
Previous Message Guillaume Lelarge 2009-01-19 12:53:56 Re: How can I display the contents of a function?