diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2010-03-25 14:44:34 +0000 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2010-03-25 14:44:34 +0000 |
commit | be8cebc717ef0b583ada09da8d0245793697c1a8 (patch) | |
tree | a5966a71df64b20231e618b5874c10f490b42c19 /doc/src | |
parent | 92fc0db99fb7a77864558615b76f4ab84227df30 (diff) | |
download | postgresql-be8cebc717ef0b583ada09da8d0245793697c1a8.tar.gz postgresql-be8cebc717ef0b583ada09da8d0245793697c1a8.zip |
Prevent ALTER USER f RESET ALL from removing the settings that were put there
by a superuser -- "ALTER USER f RESET setting" already disallows removing such a
setting.
Apply the same treatment to ALTER DATABASE d RESET ALL when run by a database
owner that's not superuser.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/catalogs.sgml | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index 197b7820219..b104e0ef2c0 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/catalogs.sgml,v 2.223 2010/02/17 04:19:37 tgl Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/catalogs.sgml,v 2.224 2010/03/25 14:44:33 alvherre Exp $ --> <!-- Documentation of the system catalogs, directed toward PostgreSQL developers --> @@ -1188,12 +1188,6 @@ <entry>Password expiry time (only used for password authentication); NULL if no expiration</entry> </row> - - <row> - <entry><structfield>rolconfig</structfield></entry> - <entry><type>text[]</type></entry> - <entry>Session defaults for run-time configuration variables</entry> - </row> </tbody> </tgroup> </table> |