PostgreSQL drop role fails because of default priv

2019-04-18 20:55发布

I am trying to drop a role 'xyz' that was previously the owner of the schema with the same name 'xyz'. I altered the schema ownership as below, and run reassigned ownership just in case (although all tables were created by a different user with superuser power). So I run all these:

alter schema xyz owner to postgres;
reassign owned by xyz to postgres;
alter default privileges in schema seeds revoke all on tables from xyz cascade;
alter default privileges in schema seeds revoke all on sequences from xyz cascade;
alter default privileges in schema seeds revoke all on functions from xyz cascade;

And still getting the error:

drop role xyz;
ERROR:  role "xyz" cannot be dropped because some objects depend on it
DETAIL:  owner of default privileges on new relations belonging to role xyz in schema xyz

Also FYI:

postgres=# \du rsi
List of roles
Role name |   Attributes   | Member of   
-----------+----------------+-----------
rsi       | No inheritance | {}

What am I missing? Any help would be appreciated! Thanks!!

2条回答
老娘就宠你
2楼-- · 2019-04-18 21:12

Taken from the PostgreSQL documentation on ALTER DEFAULT PRIVILEGES, Notes section:

If you wish to drop a role for which the default privileges have been altered, it is necessary to reverse the changes in its default privileges or use DROP OWNED BY to get rid of the default privileges entry for the role.

Another worthy mention from the documentation regarding DROP OWNED BY in this case is also that

Because DROP OWNED only affects the objects in the current database, it is usually necessary to execute this command in each database that contains objects owned by a role that is to be removed.

Therefore, your mileage may vary, meaning that you may have to issue the statement in more DBs.

Having received the same messages as mentioned in the question, I've tried out the DROP OWNED BY statement and it worked. Hope this helps!

查看更多
等我变得足够好
3楼-- · 2019-04-18 21:18

First run command :

drop owned by xyz;

then:

drop role xyz;

Read PostgreSQL Documentation regarding Drop Owned By.

查看更多
登录 后发表回答