Commit 4fa046a3 authored by Tom Lane's avatar Tom Lane

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.
parent 99e47ed0
...@@ -1263,7 +1263,7 @@ ...@@ -1263,7 +1263,7 @@
<entry><type>bool</type></entry> <entry><type>bool</type></entry>
<entry> <entry>
Role can log in. That is, this role can be given as the initial Role can log in. That is, this role can be given as the initial
session authorization identifier. session authorization identifier
</entry> </entry>
</row> </row>
...@@ -1274,7 +1274,7 @@ ...@@ -1274,7 +1274,7 @@
Role is a replication role. That is, this role can initiate streaming Role is a replication role. That is, this role can initiate streaming
replication (see <xref linkend="streaming-replication">) and set/unset replication (see <xref linkend="streaming-replication">) and set/unset
the system backup mode using <function>pg_start_backup</> and the system backup mode using <function>pg_start_backup</> and
<function>pg_stop_backup</>. <function>pg_stop_backup</>
</entry> </entry>
</row> </row>
...@@ -7377,7 +7377,7 @@ ...@@ -7377,7 +7377,7 @@
<entry></entry> <entry></entry>
<entry> <entry>
Role can update system catalogs directly. (Even a superuser cannot do Role can update system catalogs directly. (Even a superuser cannot do
this unless this column is true.) this unless this column is true)
</entry> </entry>
</row> </row>
...@@ -7391,6 +7391,18 @@ ...@@ -7391,6 +7391,18 @@
</entry> </entry>
</row> </row>
<row>
<entry><structfield>rolreplication</structfield></entry>
<entry><type>bool</type></entry>
<entry></entry>
<entry>
Role is a replication role. That is, this role can initiate streaming
replication (see <xref linkend="streaming-replication">) and set/unset
the system backup mode using <function>pg_start_backup</> and
<function>pg_stop_backup</>
</entry>
</row>
<row> <row>
<entry><structfield>rolconnlimit</structfield></entry> <entry><structfield>rolconnlimit</structfield></entry>
<entry><type>int4</type></entry> <entry><type>int4</type></entry>
...@@ -7416,6 +7428,13 @@ ...@@ -7416,6 +7428,13 @@
null if no expiration</entry> null if no expiration</entry>
</row> </row>
<row>
<entry><structfield>rolconfig</structfield></entry>
<entry><type>text[]</type></entry>
<entry></entry>
<entry>Role-specific defaults for run-time configuration variables</entry>
</row>
<row> <row>
<entry><structfield>oid</structfield></entry> <entry><structfield>oid</structfield></entry>
<entry><type>oid</type></entry> <entry><type>oid</type></entry>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment