From 1ac85e9ae276837230c16fb58d0a9d7332fd3e8c Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 14 May 2009 21:28:35 +0000 Subject: [PATCH] Improve a couple of comments. --- src/backend/access/transam/xlog.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 71591017ee..58b647af52 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -2941,7 +2941,7 @@ ExecuteRecoveryEndCommand(void) xlogRecoveryEndCmd))); /* - * Copy xlog from archival storage to XLOGDIR + * execute the constructed command */ rc = system(xlogRecoveryEndCmd); if (rc != 0) @@ -5740,6 +5740,9 @@ StartupXLOG(void) */ CreateCheckPoint(CHECKPOINT_IS_SHUTDOWN | CHECKPOINT_IMMEDIATE); + /* + * And finally, execute the recovery_end_command, if any. + */ if (recoveryEndCommand) ExecuteRecoveryEndCommand(); } -- 2.39.5