Re: Revoking Function Execute Privilege

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Revoking Function Execute Privilege
Дата
Msg-id 26562.1297703842@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Revoking Function Execute Privilege  ("David Johnston" <polobo@yahoo.com>)
Список pgsql-general
"David Johnston" <polobo@yahoo.com> writes:
> REVOKE ALL ON FUNCTION testfunc() FROM impotent;

This does not get rid of the default public execute permissions on the
function.  To limit execute rights, you first have to

REVOKE ALL ON FUNCTION testfunc() FROM PUBLIC;

and then grant rights back to the appropriate subset of users.

            regards, tom lane

В списке pgsql-general по дате отправления:

Предыдущее
От: "David Johnston"
Дата:
Сообщение: Revoking Function Execute Privilege
Следующее
От: Ahmed Ossama
Дата:
Сообщение: Using Bitmap scan instead of Seq scan