1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-02-03 14:01:57 +02:00

Improve comment of create_recovery_conf()

This commit is contained in:
Arthur Zakirov 2017-04-21 17:06:41 +03:00
parent 8dea09ca1a
commit ff61f80ce8

View File

@ -691,7 +691,14 @@ create_recovery_conf(time_t backup_id,
fprintf(fp, "recovery_target_xid = '%s'\n", target_xid);
else if (backup_id != 0)
{
/* TODO Why does it depend on backup_id? */
/*
* We need to set this parameters only if 'backup_id' is provided
* because the backup will be recovered as soon as possible as stop_lsn
* is reached.
* If 'backup_id' is not set we want to replay all available WAL records,
* if 'recovery_target' is set all available WAL records will not be
* replayed.
*/
fprintf(fp, "recovery_target = 'immediate'\n");
fprintf(fp, "recovery_target_action = 'promote'\n");
}