From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | b t <qtboyzz(at)yahoo(dot)com> |
Cc: | pgsql-interfaces(at)postgresql(dot)org |
Subject: | Re: how to parse an proargtypes array? |
Date: | 2005-03-04 15:16:46 |
Message-ID: | 27425.1109949406@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-interfaces |
b t <qtboyzz(at)yahoo(dot)com> writes:
> I'm trying to find out all the argument type that a user-defined function required, I used this query, select proargtypes from pg_proc where proname = 'add_movie'; but it gives me an oidvector array 1043 23 1043 1043 1043 1015 1015 1015 1182 1015, is there a query to parse this and give me a list of type.
Perhaps the regprocedure output converter will help you. Forget
proargtypes, just cast the function's OID to regprocedure.
If you really want to deal with the individual function argument type
OIDs, regtype would help with converting those to useful text; or see
format_type().
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2005-03-04 15:30:10 | Re: Function for determining column witdhs in libpq ? |
Previous Message | David.Jacques | 2005-03-04 13:26:33 | Function for determining column witdhs in libpq ? |