From: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
---|---|
To: | Kevin Walker <kwalker(at)ameritrade(dot)com> |
Cc: | pgsql-bugs(at)postgresql(dot)org |
Subject: | Re: BUG #1964: Role membership error |
Date: | 2005-10-14 14:01:57 |
Message-ID: | 200510141401.j9EE1vR19328@candle.pha.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
Kevin Walker wrote:
>
> The following bug has been logged online:
>
> Bug reference: 1964
> Logged by: Kevin Walker
> Email address: kwalker(at)ameritrade(dot)com
> PostgreSQL version: 8.1 beta 3
> Operating system: Windows XP
> Description: Role membership error
> Details:
>
> I created a group role called dbadmin and assigned it the privileges that I
> wanted. I then created a new login role and attempted to add this new login
> as a member in the group role. The following error is generated in pgAdmin
> III and when the same steps are performed manually.
>
> ERROR: role "dbadmin" is a member of role "kw"
>
> The message suggests that the login role "kw" is already a member of group
> role "dbadmin" which is not the case. Using the alter group command also
> produces the same error.
>
> This problem is occurring on the build for Windows. I have not tested this
> process on a Linux build yet.
What were you trying, exactly? It worked for me:
test=> CREATE ROLE dbadmin;
CREATE ROLE
test=> CREATE ROLE kw;
CREATE ROLE
test=> GRANT dbadmin TO kw;
GRANT ROLE
--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Fuhr | 2005-10-14 14:30:51 | Re: BUG #1956: Plpgsql top-level DECLARE does not share |
Previous Message | Michael Meskes | 2005-10-14 13:45:56 | Re: BUG #1962: ECPG and VARCHAR |