Skip to content

Commit a3b3fa1

Browse files
author
Artur Zakirov
committed
Fix recovery_time and recovery_xid comments
1 parent b314856 commit a3b3fa1

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

pg_probackup.h

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,15 @@ typedef struct pgBackup
123123
XLogRecPtr start_lsn; /* backup's starting transaction log location */
124124
XLogRecPtr stop_lsn; /* backup's finishing transaction log location */
125125
time_t start_time; /* since this moment backup has status
126-
* BACKUP_STATUS_RUNNING */
126+
* BACKUP_STATUS_RUNNING */
127127
time_t end_time; /* the moment when backup was finished, or the moment
128128
* when we realized that backup is broken*/
129-
time_t recovery_time; /* FIXME */
130-
TransactionId recovery_xid; /* FIXME */
129+
time_t recovery_time; /* Earliest moment for which you can restore
130+
* the state of the database cluster using
131+
* this backup */
132+
TransactionId recovery_xid; /* Earliest xid for which you can restore
133+
* the state of the database cluster using
134+
* this backup */
131135

132136
/*
133137
* Amount of raw data. For a full backup, this is the total amount of

0 commit comments

Comments
 (0)