Re: Error 42501 permission denied for schema - Mailing list pgsql-general

From Tom Lane
Subject Re: Error 42501 permission denied for schema
Date
Msg-id 17995.1269627549@sss.pgh.pa.us
Whole thread Raw
In response to Re: Error 42501 permission denied for schema  (akp geek <akpgeek@gmail.com>)
Responses
List pgsql-general
akp geek <akpgeek@gmail.com> writes:
> Sorry for the confusion  that I have caused
>    - roles > role1 , role2
>    - schemas > schema1, schema2
>    - GRANT USAGE ON SCHEMA schema1 TO role2;
>    - create function fnc_name(IN i_id numeric)
>    - function is created using role2

> I ended up getting the error

> ERROR: permission denied for schema schema1

Well, keep in mind that what normally counts for a function's queries
is the permissions of the *caller*, not the owner.  If you want the
function to be able to do things regardless of who's calling it, mark
it SECURITY DEFINER, and then it runs with the owner's permissions.
Beware that malicious users might be able to subvert a SECURITY DEFINER
function to make it do something unintended ...

            regards, tom lane

pgsql-general by date:

Previous
From: Chris Barnes
Date:
Subject: Re: Does anyone use in ram postgres database?
Next
From: Ehsan Haq
Date:
Subject: Moving data directory from one server to another