diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2010-01-10 16:27:27 +0000 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2010-01-10 16:27:27 +0000 |
commit | f537e7dfa483a6284c59f3143e8a86170affdc74 (patch) | |
tree | c03259a96e95f267527f122b7e2ea462f5cfa60b | |
parent | 48eaa34d443733735eeaabfb876895fecd03c29e (diff) | |
download | postgresql-f537e7dfa483a6284c59f3143e8a86170affdc74.tar.gz postgresql-f537e7dfa483a6284c59f3143e8a86170affdc74.zip |
Docs for behaviour change of drop database during Hot Standby
Adding missing docs for previous Hot Standby patch.
-rw-r--r-- | doc/src/sgml/backup.sgml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/src/sgml/backup.sgml b/doc/src/sgml/backup.sgml index c03d8088fcb..a666e53bc3b 100644 --- a/doc/src/sgml/backup.sgml +++ b/doc/src/sgml/backup.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.133 2009/12/20 03:49:58 rhaas Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.134 2010/01/10 16:27:27 sriggs Exp $ --> <chapter id="backup"> <title>Backup and Restore</title> @@ -2169,7 +2169,8 @@ if (!triggered) </listitem> <listitem> <para> - Dropping databases on the primary while that role is connected on standby. + Dropping databases on the primary while users are connected to that + database on the standby. </para> </listitem> <listitem> @@ -2542,7 +2543,8 @@ LOG: database system is ready to accept read only connections Running <command>DROP DATABASE</>, <command>ALTER DATABASE ... SET TABLESPACE</>, or <command>ALTER DATABASE ... RENAME</> on primary will generate a log message that will cause all users connected to that database on the standby to be - forcibly disconnected, once <varname>max_standby_delay</> has been reached. + forcibly disconnected. This action occurs immediately, whatever the setting of + <varname>max_standby_delay</>. </para> <para> |