Re: Generating GRANT/REVOKE on functions from catalog - Mailing list pgsql-general

From Tom Lane
Subject Re: Generating GRANT/REVOKE on functions from catalog
Date
Msg-id 26570.1249496353@sss.pgh.pa.us
Whole thread Raw
In response to Re: Generating GRANT/REVOKE on functions from catalog  (Doug Gorley <doug.gorley@gmail.com>)
List pgsql-general
Doug Gorley <doug.gorley@gmail.com> writes:
> Perfect, I'm using the following function:
> create or replace function fn_sig(p_oid oid) returns text
> as $$
> begin
> return p_oid::regprocedure;
> end;
> $$ language plpgsql;

> In the following query:

> select
>     pg_namespace.nspname ||
>     '.' ||
>     fn_sig(pg_proc.oid)
> from


I wouldn't do that if I were you: regprocedure will already
schema-qualify the function name if it's needed.  The additional
qualification you're trying to force will just result in syntax errors.

            regards, tom lane

pgsql-general by date:

Previous
From: Doug Gorley
Date:
Subject: Re: Generating GRANT/REVOKE on functions from catalog
Next
From: "Leif B. Kristensen"
Date:
Subject: Re: Update Query doesn't affect all records