ALTER DEFAULT PERMISSIONS
The ALTER DEFAULT PERMISSIONS
command lets you grant automatic permissions to future objects.
By default, users do not have SELECT
permissions on tables created by other users. Database administrators can grant access to other users by modifying the target role default permissions.
For more information about access control, see Access Control.
Permissions
The SUPERUSER
permission is required to alter default permissions.
Syntax
ALTER DEFAULT PERMISSIONS FOR modifying_role
[IN schema_name, ...]
FOR {
SCHEMAS
| TABLES
| FOREIGN TABLES
| VIEWS
| COLUMNS
| SAVED_QUERIES
}
{ grant_clause
| DROP grant_clause }
TO ROLE { role_name | public
}
grant_clause ::=
GRANT
{ CREATE FUNCTION
| SUPERUSER
| CONNECT
| USAGE
| SELECT
| INSERT
| DELETE
| DDL
| UPDATE
| EXECUTE
| ALL
}
Supported Permissions
The following table describes the supported permissions:
Permission |
Object |
Description |
---|---|---|
|
Schema |
The most privileged role, with full control over a cluster, database, or schema |
|
Schema |
For a role to see tables in a schema, it needs the |
|
Table |
Allows a user to run SELECT queries on table contents |
|
Table |
Allows a user to run COPY FROM and INSERT statements to load data into a table |
|
Table |
Allows a user to modify the value of certain columns in existing rows without creating a table |
|
Table |
Allows a user to run DELETE, TRUNCATE statements to delete data from a table |
|
Schema, Table |
Allows a user to alter tables, rename columns and tables, etc. |
Examples
Granting Default Table Permissions
Altering the default permissions of r1 so that r2 is able to execute SELECT
on tables created by r1:
CREATE ROLE r1;
CREATE ROLE r2;
ALTER DEFAULT PERMISSIONS FOR r1 FOR TABLES GRANT SELECT TO r2;
Once created, you can build and run the following query based on the above:
SELECT
tdp.database_name as "database_name",
ss.schema_name as "schema_name",
rs1.name as "table_creator",
rs2.name as "grant_to",
pts.name as "permission_type"
FROM sqream_catalog.table_default_permissions tdp
INNER JOIN sqream_catalog.roles rs1 on tdp.modifier_role_id = rs1.role_id
INNER JOIN sqream_catalog.roles rs2 on tdp.getter_role_id = rs2.role_id
LEFT JOIN sqream_catalog.schemas ss on tdp.schema_id = ss.schema_id
INNER JOIN sqream_catalog.permission_types pts on pts.permission_type_id=tdp.permission_type
;
The following is an example of the output generated from the above queries:
database_name |
schema_name |
table_creator |
grant_to |
permission_type |
master |
NULL |
public |
public |
select |
For more information about default permissions, see Default Permissions.
Granting Automatic Permissions for Newly Created Schemas
When the role demo
creates a new schema, roles u1,u2 are granted USAGE
permission in the new schema, as shown below:
ALTER DEFAULT PERMISSIONS FOR demo FOR SCHEMAS GRANT USAGE TO u1,u2;
Granting Automatic Permissions for Newly Created Tables in a Schema
When the role demo
creates a new table in schema s1
, roles u1,u2 are granted SELECT
permissions, as shown below:
ALTER DEFAULT PERMISSIONS FOR demo IN s1 FOR TABLES GRANT SELECT TO u1,u2;
Revoking Permissions from Newly Created Tables
Revoking permissions refers to using the DROP GRANT
command, as shown below:
ALTER DEFAULT PERMISSIONS FOR public FOR TABLES DROP GRANT SELECT,DDL,INSERT,DELETE TO public;