diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-07-03 22:12:25 -0400 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-07-03 22:12:25 -0400 |
| commit | c7e84d53375f0c3405da584b06d758e015d8ce30 (patch) | |
| tree | 79238f19afcf65aab90aaf89c3411a78f5f71d90 /doc/src | |
| parent | 789d3d4541e95c6079a55196bd63a6ab90e57c7c (diff) | |
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.
Diffstat (limited to 'doc/src')
| -rw-r--r-- | doc/src/sgml/catalogs.sgml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index 6825bbc82a4..a2869c917e8 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -1163,7 +1163,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> @@ -6684,7 +6684,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> @@ -6724,6 +6724,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> |
