Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 284e12c

Browse files
committed
Improve a couple of comments.
1 parent b3aac07 commit 284e12c

File tree

1 file changed

+5
-2
lines changed
  • src/backend/access/transam

1 file changed

+5
-2
lines changed

src/backend/access/transam/xlog.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.338 2009/05/14 20:31:09 heikki Exp $
10+
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.339 2009/05/14 21:28:35 tgl Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -2941,7 +2941,7 @@ ExecuteRecoveryEndCommand(void)
29412941
xlogRecoveryEndCmd)));
29422942

29432943
/*
2944-
* Copy xlog from archival storage to XLOGDIR
2944+
* execute the constructed command
29452945
*/
29462946
rc = system(xlogRecoveryEndCmd);
29472947
if (rc != 0)
@@ -5740,6 +5740,9 @@ StartupXLOG(void)
57405740
*/
57415741
CreateCheckPoint(CHECKPOINT_IS_SHUTDOWN | CHECKPOINT_IMMEDIATE);
57425742

5743+
/*
5744+
* And finally, execute the recovery_end_command, if any.
5745+
*/
57435746
if (recoveryEndCommand)
57445747
ExecuteRecoveryEndCommand();
57455748
}

0 commit comments

Comments
 (0)