Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Frost2021-08-27 22:25:26 +0000
committerStephen Frost2021-08-27 22:25:26 +0000
commitf01727290fe0c7fdf7bb5a0c2526a15db8c2c52f (patch)
tree1623ac6bbae1b0f6b6a956853cdb06b3981174c7
parent10d2695b0cbad0ef64367d9c900ca59b9abcc80f (diff)
docs: Add command tags for SQL commands
Commit 6c3ffd6 added a couple new predefined roles but didn't properly wrap the SQL commands mentioned in the description of those roles with command tags, so add them now. Backpatch-through: 14 Reported-by: Michael Banck Discussion: https://postgr.es/m/606d8b1c.1c69fb81.3df04.1a99@mx.google.com
-rw-r--r--doc/src/sgml/user-manag.sgml25
1 files changed, 13 insertions, 12 deletions
diff --git a/doc/src/sgml/user-manag.sgml b/doc/src/sgml/user-manag.sgml
index fe0bdb75999..7b4b2271734 100644
--- a/doc/src/sgml/user-manag.sgml
+++ b/doc/src/sgml/user-manag.sgml
@@ -520,21 +520,22 @@ DROP ROLE doomed_role;
<tbody>
<row>
<entry>pg_read_all_data</entry>
- <entry>Read all data (tables, views, sequences), as if having SELECT
- rights on those objects, and USAGE rights on all schemas, even without
- having it explicitly. This role does not have the role attribute
- <literal>BYPASSRLS</literal> set. If RLS is being used, an administrator
- may wish to set <literal>BYPASSRLS</literal> on roles which this role is
- GRANTed to.</entry>
+ <entry>Read all data (tables, views, sequences), as if having
+ <command>SELECT</command> rights on those objects, and USAGE rights on
+ all schemas, even without having it explicitly. This role does not have
+ the role attribute <literal>BYPASSRLS</literal> set. If RLS is being
+ used, an administrator may wish to set <literal>BYPASSRLS</literal> on
+ roles which this role is GRANTed to.</entry>
</row>
<row>
<entry>pg_write_all_data</entry>
- <entry>Write all data (tables, views, sequences), as if having INSERT,
- UPDATE, and DELETE rights on those objects, and USAGE rights on all
- schemas, even without having it explicitly. This role does not have the
- role attribute <literal>BYPASSRLS</literal> set. If RLS is being used,
- an administrator may wish to set <literal>BYPASSRLS</literal> on roles
- which this role is GRANTed to.</entry>
+ <entry>Write all data (tables, views, sequences), as if having
+ <command>INSERT</command>, <command>UPDATE</command>, and
+ <command>DELETE</command> rights on those objects, and USAGE rights on
+ all schemas, even without having it explicitly. This role does not have
+ the role attribute <literal>BYPASSRLS</literal> set. If RLS is being
+ used, an administrator may wish to set <literal>BYPASSRLS</literal> on
+ roles which this role is GRANTed to.</entry>
</row>
<row>
<entry>pg_read_all_settings</entry>