Attached script (run as psql -U postgres -f bug_6350.sql) shows the
problem. Enjoy!
create database problematic;
\c problematic
-- create three roles
create role usr;
create role adm;
create role new_adm;
create table foo (bar integer);
alter table foo owner to adm;
grant select(bar) on foo to
Attached script (run as psql -U postgres -f bug_6350.sql) shows the
problem. Enjoy!
create database problematic;
\c problematic
-- create three roles
create role usr;
create role adm;
create role new_adm;
create table foo (bar integer);
alter table foo owner to adm;
grant select(bar) on foo to