mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2025-04-04 09:49:32 +02:00
Make compiler quiet
This commit is contained in:
parent
9af7ec092b
commit
b6b2402b49
@ -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;
|
||||||
|
@ -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);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user