From 4fa046a39ebdaf4c9191ffff8a57b0759c52f3f3 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 3 Jul 2011 22:12:14 -0400 Subject: [PATCH] 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. --- doc/src/sgml/catalogs.sgml | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index d1e708165a..d4a1d3686f 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -1263,7 +1263,7 @@ bool Role can log in. That is, this role can be given as the initial - session authorization identifier. + session authorization identifier @@ -1274,7 +1274,7 @@ Role is a replication role. That is, this role can initiate streaming replication (see ) and set/unset the system backup mode using pg_start_backup and - pg_stop_backup. + pg_stop_backup @@ -7377,7 +7377,7 @@ Role can update system catalogs directly. (Even a superuser cannot do - this unless this column is true.) + this unless this column is true) @@ -7392,6 +7392,18 @@ + rolreplication + bool + + + Role is a replication role. That is, this role can initiate streaming + replication (see ) and set/unset + the system backup mode using pg_start_backup and + pg_stop_backup + + + + rolconnlimit int4 @@ -7417,6 +7429,13 @@ + rolconfig + text[] + + Role-specific defaults for run-time configuration variables + + + oid oid pg_authid.oid -- 2.11.0