aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2010-05-27 00:38:39 +0000
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2010-05-27 00:38:39 +0000
commitc5bd8feac65c5189cce070b841ad02bef70f419c (patch)
tree410744b6405af9d0d5230c88c96d1c11200b029e /src
parentf495020ede2753b7ea675b62e7ce93edfbf34b63 (diff)
downloadpostgresql-c5bd8feac65c5189cce070b841ad02bef70f419c.tar.gz
postgresql-c5bd8feac65c5189cce070b841ad02bef70f419c.zip
Adjust comment to reflect that we now have Hot Standby. Pointed out by
Robert Haas.
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/transam/xlog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index 8e079176c47..fde551fecf1 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.413 2010/05/15 20:01:32 rhaas Exp $
+ * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.414 2010/05/27 00:38:39 heikki Exp $
*
*-------------------------------------------------------------------------
*/
@@ -7531,7 +7531,7 @@ CreateRestartPoint(int flags)
* restartpoint, we can't perform a new restart point. We still update
* minRecoveryPoint in that case, so that if this is a shutdown restart
* point, we won't start up earlier than before. That's not strictly
- * necessary, but when we get hot standby capability, it would be rather
+ * necessary, but when hot standby is enabled, it would be rather
* weird if the database opened up for read-only connections at a
* point-in-time before the last shutdown. Such time travel is still
* possible in case of immediate shutdown, though.