Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3569e02

Browse files
committed
Fix omissions in documentation of the pg_roles view.
Somehow, column rolconfig got removed from the documentation of the pg_roles view in the 9.0 cycle, although the column is actually still there. In 9.1, we'd also forgotten to document the rolreplication column. Spotted by Sakamoto Masahiko.
1 parent 80d7722 commit 3569e02

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

doc/src/sgml/catalogs.sgml

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1263,7 +1263,7 @@
12631263
<entry><type>bool</type></entry>
12641264
<entry>
12651265
Role can log in. That is, this role can be given as the initial
1266-
session authorization identifier.
1266+
session authorization identifier
12671267
</entry>
12681268
</row>
12691269

@@ -1274,7 +1274,7 @@
12741274
Role is a replication role. That is, this role can initiate streaming
12751275
replication (see <xref linkend="streaming-replication">) and set/unset
12761276
the system backup mode using <function>pg_start_backup</> and
1277-
<function>pg_stop_backup</>.
1277+
<function>pg_stop_backup</>
12781278
</entry>
12791279
</row>
12801280

@@ -7370,7 +7370,7 @@
73707370
<entry></entry>
73717371
<entry>
73727372
Role can update system catalogs directly. (Even a superuser cannot do
7373-
this unless this column is true.)
7373+
this unless this column is true)
73747374
</entry>
73757375
</row>
73767376

@@ -7384,6 +7384,18 @@
73847384
</entry>
73857385
</row>
73867386

7387+
<row>
7388+
<entry><structfield>rolreplication</structfield></entry>
7389+
<entry><type>bool</type></entry>
7390+
<entry></entry>
7391+
<entry>
7392+
Role is a replication role. That is, this role can initiate streaming
7393+
replication (see <xref linkend="streaming-replication">) and set/unset
7394+
the system backup mode using <function>pg_start_backup</> and
7395+
<function>pg_stop_backup</>
7396+
</entry>
7397+
</row>
7398+
73877399
<row>
73887400
<entry><structfield>rolconnlimit</structfield></entry>
73897401
<entry><type>int4</type></entry>
@@ -7409,6 +7421,13 @@
74097421
null if no expiration</entry>
74107422
</row>
74117423

7424+
<row>
7425+
<entry><structfield>rolconfig</structfield></entry>
7426+
<entry><type>text[]</type></entry>
7427+
<entry></entry>
7428+
<entry>Role-specific defaults for run-time configuration variables</entry>
7429+
</row>
7430+
74127431
<row>
74137432
<entry><structfield>oid</structfield></entry>
74147433
<entry><type>oid</type></entry>

0 commit comments

Comments
 (0)