David Ford <[EMAIL PROTECTED]> writes:
> Which btw has a curious grant/revoke bug.  create foo; grant select on 
> foo to bar; results in all rights being granted.  You must revoke and 
> grant again in order to get the correct rights set.

I see no bug.

test72=# select version();
                            version
---------------------------------------------------------------
 PostgreSQL 7.2.1 on hppa-hp-hpux10.20, compiled by GCC 2.95.3
(1 row)

test72=# create user bar;
CREATE USER
test72=# create table foo (f1 int);
CREATE
test72=# grant select on foo to bar;
GRANT
test72=# \z foo
Access privileges for database "test72"
 Table |     Access privileges
-------+----------------------------
 foo   | {=,postgres=arwdRxt,bar=r}
(1 row)

test72=#

                        regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Reply via email to