aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2011-07-03 22:12:20 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2011-07-03 22:12:20 -0400
commit3569e02c98d2802e6fc4912a3ba67dc25e76b6cc (patch)
tree47496488233b63d5b7a0d3b801efa1c9be07053d
parent80d772233760f48119e46d454eae08f58ff1a7f1 (diff)
downloadpostgresql-3569e02c98d2802e6fc4912a3ba67dc25e76b6cc.tar.gz
postgresql-3569e02c98d2802e6fc4912a3ba67dc25e76b6cc.zip
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.
-rw-r--r--doc/src/sgml/catalogs.sgml25
1 files changed, 22 insertions, 3 deletions
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml
index d2da4ac1761..78ec998d94b 100644
--- a/doc/src/sgml/catalogs.sgml
+++ b/doc/src/sgml/catalogs.sgml
@@ -1263,7 +1263,7 @@
<entry><type>bool</type></entry>
<entry>
Role can log in. That is, this role can be given as the initial
- session authorization identifier.
+ session authorization identifier
</entry>
</row>
@@ -1274,7 +1274,7 @@
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</>.
+ <function>pg_stop_backup</>
</entry>
</row>
@@ -7370,7 +7370,7 @@
<entry></entry>
<entry>
Role can update system catalogs directly. (Even a superuser cannot do
- this unless this column is true.)
+ this unless this column is true)
</entry>
</row>
@@ -7385,6 +7385,18 @@
</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>
<entry><structfield>rolconnlimit</structfield></entry>
<entry><type>int4</type></entry>
<entry></entry>
@@ -7410,6 +7422,13 @@
</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>
<entry><structfield>oid</structfield></entry>
<entry><type>oid</type></entry>
<entry><literal><link linkend="catalog-pg-authid"><structname>pg_authid</structname></link>.oid</literal></entry>