|
8 | 8 | * or standby mode, depending on configuration options and the state of |
9 | 9 | * the control file and possible backup label file. PerformWalRecovery() |
10 | 10 | * performs the actual WAL replay, calling the rmgr-specific redo routines. |
11 | | - *EndWalRecovery() performs end-of-recovery checks and cleanup actions, |
| 11 | + *FinishWalRecovery() performs end-of-recovery checks and cleanup actions, |
12 | 12 | * and prepares information needed to initialize the WAL for writes. In |
13 | 13 | * addition to these three main functions, there are a bunch of functions |
14 | 14 | * for interrogating recovery state and controlling the recovery process. |
@@ -505,7 +505,7 @@ EnableStandbyMode(void) |
505 | 505 | * disk does after initializing other subsystems, but before calling |
506 | 506 | * PerformWalRecovery(). |
507 | 507 | * |
508 | | - * This initializes some global variables likeArchiveModeRequested, and |
| 508 | + * This initializes some global variables likeArchiveRecoveryRequested, and |
509 | 509 | * StandbyModeRequested and InRecovery. |
510 | 510 | */ |
511 | 511 | void |
@@ -1396,11 +1396,11 @@ read_tablespace_map(List **tablespaces) |
1396 | 1396 | * |
1397 | 1397 | * This does not close the 'xlogreader' yet, because in some cases the caller |
1398 | 1398 | * still wants to re-read the last checkpoint record by calling |
1399 | | - *ReadCheckPointRecord(). |
| 1399 | + *ReadCheckpointRecord(). |
1400 | 1400 | * |
1401 | 1401 | * Returns the position of the last valid or applied record, after which new |
1402 | 1402 | * WAL should be appended, information about why recovery was ended, and some |
1403 | | - * other things. See theWalRecoveryResult struct for details. |
| 1403 | + * other things. See theEndOfWalRecoveryInfo struct for details. |
1404 | 1404 | */ |
1405 | 1405 | EndOfWalRecoveryInfo* |
1406 | 1406 | FinishWalRecovery(void) |
|