1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-04-05 09:55:36 +02:00

Make compiler quiet

This commit is contained in:
Artur Zakirov 2017-01-27 11:44:40 +03:00
parent 9af7ec092b
commit b6b2402b49
2 changed files with 3 additions and 8 deletions

View File

@ -125,8 +125,9 @@ validate_wal(pgBackup *backup,
while (true) while (true)
{ {
record = XLogReadRecord(xlogreader, startpoint, &errormsg);
bool timestamp_record; bool timestamp_record;
record = XLogReadRecord(xlogreader, startpoint, &errormsg);
if (record == NULL) if (record == NULL)
{ {
XLogRecPtr errptr; XLogRecPtr errptr;

View File

@ -77,20 +77,15 @@ int do_validate(time_t backup_id,
int i; int i;
int base_index; /* index of base (full) backup */ int base_index; /* index of base (full) backup */
int last_restored_index; /* index of last restored database backup */ int last_restored_index; /* index of last restored database backup */
int ret;
TimeLineID cur_tli;
TimeLineID backup_tli; TimeLineID backup_tli;
TimeLineID newest_tli; TimeLineID newest_tli;
parray *timelines; parray *timelines;
parray *backups; parray *backups;
pgRecoveryTarget *rt = NULL; pgRecoveryTarget *rt = NULL;
pgBackup *base_backup = NULL; pgBackup *base_backup = NULL;
bool another_pg_probackup = false;
bool backup_id_found = false; bool backup_id_found = false;
ret = catalog_lock(); catalog_lock();
if (ret == 1)
another_pg_probackup = true;
rt = checkIfCreateRecoveryConf(target_time, target_xid, target_inclusive); rt = checkIfCreateRecoveryConf(target_time, target_xid, target_inclusive);
if (rt == NULL) if (rt == NULL)
@ -101,7 +96,6 @@ int do_validate(time_t backup_id,
if (!backups) if (!backups)
elog(ERROR, "cannot process any more."); elog(ERROR, "cannot process any more.");
cur_tli = get_current_timeline(true);
newest_tli = findNewestTimeLine(1); newest_tli = findNewestTimeLine(1);
backup_tli = get_fullbackup_timeline(backups, rt); backup_tli = get_fullbackup_timeline(backups, rt);