Re: grant execute on many functions

From: Joe Conway <mail(at)joeconway(dot)com>
To: Jean-Denis Giguere <jdenisgiguere(at)fastmail(dot)fm>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: grant execute on many functions
Date: 2004-06-29 22:27:59
Message-ID: 40E1ECEF.5090007@joeconway.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-hackers

Jean-Denis Giguere wrote:
> But, the problem is more complex for functions because you have to give
> the arguments. You can find the list in the pg_proc table but they are
> store in a array by oid. So you can resolve the type with the table
> pg_type. After, you have to reproduce the correct syntax (with correct
> number of orgument, on one execute line...)
>

Does this help?

SELECT n.nspname || '.' || p.proname ||
'(' || pg_catalog.oidvectortypes(p.proargtypes) || ')'
FROM pg_catalog.pg_proc p
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = p.pronamespace
WHERE p.prorettype <> 'pg_catalog.cstring'::pg_catalog.regtype
AND p.proargtypes[0] <> 'pg_catalog.cstring'::pg_catalog.regtype
AND NOT p.proisagg
AND pg_catalog.pg_function_is_visible(p.oid)
AND p.proname ~ '^format_type$';
?column?
--------------------------------------
pg_catalog.format_type(oid, integer)
(1 row)

Joe

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Iain 2004-06-30 01:24:34 Re: Stopping vacuum
Previous Message Jean-Denis Giguere 2004-06-29 21:39:53 grant execute on many functions

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2004-06-29 22:59:20 Re: [PATCHES] nested xacts and phantom Xids
Previous Message Alvaro Herrera 2004-06-29 21:47:58 Re: nested xacts and phantom Xids