On 7/12/06, Timothy Perrigo <tperrigo(at)wernervas(dot)com> wrote:
> Is there a way to get the names of the arguments to a function from
> psql? /df and /df+ return the parameter types, but not their names.
select oid::regprocedure from pg_proc where proname like 'your name here';
merlin