aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2010-05-15 20:01:32 +0000
committerRobert Haas <rhaas@postgresql.org>2010-05-15 20:01:32 +0000
commitea9968c331ab913d07b0a7eb2c28f29915e39893 (patch)
treec1763ef6f7eee57493958e7791df7a3df75b648a /src/backend/access
parentd7b6c8c0a5ae2616ca3518cc27bbb0fc5ce3af74 (diff)
downloadpostgresql-ea9968c331ab913d07b0a7eb2c28f29915e39893.tar.gz
postgresql-ea9968c331ab913d07b0a7eb2c28f29915e39893.zip
Rename PM_RECOVERY_CONSISTENT and PMSIGNAL_RECOVERY_CONSISTENT.
The new names PM_HOT_STANDBY and PMSIGNAL_BEGIN_HOT_STANDBY more accurately reflect their actual function.
Diffstat (limited to 'src/backend/access')
-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 87b7e82a4f8..8e079176c47 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.412 2010/05/15 07:14:43 sriggs Exp $
+ * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.413 2010/05/15 20:01:32 rhaas Exp $
*
*-------------------------------------------------------------------------
*/
@@ -6514,7 +6514,7 @@ CheckRecoveryConsistency(void)
IsUnderPostmaster)
{
backendsAllowed = true;
- SendPostmasterSignal(PMSIGNAL_RECOVERY_CONSISTENT);
+ SendPostmasterSignal(PMSIGNAL_BEGIN_HOT_STANDBY);
}
}