refint/acl problem - Mailing list pgsql-hackers

From Kovacs Zoltan Sandor
Subject refint/acl problem
Date
Msg-id Pine.LNX.4.05.10006222253250.31255-100000@pc10.radnoti-szeged.sulinet.hu
Whole thread Raw
List pgsql-hackers
Reference integrity module seems to have a serious bug (I use 7.0).
Although the super user gave a SELECT permission to the simple user
on the table "a" and ALL permission on the table "c" (which references
to the table "a"), the simple user will get an

ERROR:  a: Permission denied.

message. My definitions:

test=# create table a(b serial);
test=# grant select on a to simpleuser;
test=# create table c(d int4 not null references a(b));
test=# grant all on c to simpleuser;

Any comments?

Regards,
Zoltan



pgsql-hackers by date:

Previous
From: teg@redhat.com (Trond Eivind Glomsrød)
Date:
Subject: Re: Interesting mention of PostgreSQL in news
Next
From: Lamar Owen
Date:
Subject: Re: Interesting mention of PostgreSQL in news