Re: How to get user's role?

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: How to get user's role?
Дата
Msg-id 20040930142124.GA72856@winnie.fuhr.org
обсуждение исходный текст
Ответ на How to get user's role?  ("Armen Rizal" <armenrz@starprise.net>)
Список pgsql-general
On Thu, Sep 30, 2004 at 10:26:41AM +0700, Armen Rizal wrote:
>
> I want to get what roles/groups that the current user is member of.
> I tried to use the following commands but they both returned no rows.
>
> SELECT * FROM information_schema.enabled_roles
> SELECT * FROM information_schema.applicable_roles

What version of PostgreSQL are you using?  Are you sure the current
user belongs to any groups?  What's the output of the following
queries?

SELECT current_user;
SELECT usename, usesysid FROM pg_user WHERE usename = current_user;
SELECT * FROM pg_group;

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: dangling permission on tables after drop user.
Следующее
От: Kevin Barnard
Дата:
Сообщение: Re: Out of memory errors on OS X