zardozwild...@hotmail.com writes: > This database creation script was executed via the postgres superuser. > Executes create database and the "with owner" clause. > Create database assigns ownership to a role (myta_admin_role). This is not a > login role. > After database creation, script creates a schema. I later discovered that > the role never gets usage permission on the schema. Even though it is the > database owner.
This isn't a bug. A database owner just owns the database (and hence can rename or drop it). The owner doesn't magically have additional permissions on the objects therein. It'd be a security hole if he did, at least for superuser-owned objects such as the core functions and operators ... and I gather that you created this schema as superuser. We could argue about whether database owners should have extra privileges on objects belonging to ordinary users, but it'd be rather inconsistent to do that IMO. It makes more sense for the object owner to have to grant privileges to the database owner, if the latter is to be able to access the object. regards, tom lane -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs