File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -746,9 +746,8 @@ do_backup(pgBackupOption bkupopt)
746
746
747
747
/* get list of backups already taken */
748
748
backup_list = catalog_get_backup_list (NULL );
749
- if (!backup_list ){
749
+ if (!backup_list )
750
750
elog (ERROR_SYSTEM , _ ("can't process any more." ));
751
- }
752
751
753
752
/* set the error processing function for the backup process */
754
753
pgut_atexit_push (backup_cleanup , NULL );
Original file line number Diff line number Diff line change @@ -39,14 +39,14 @@ static int keep_srvlog_files = KEEP_INFINITE;
39
39
static int keep_srvlog_days = KEEP_INFINITE ;
40
40
static int keep_data_generations = KEEP_INFINITE ;
41
41
static int keep_data_days = KEEP_INFINITE ;
42
+ static bool backup_validate = false;
42
43
43
44
/* restore configuration */
44
45
static char * target_time ;
45
46
static char * target_xid ;
46
47
static char * target_inclusive ;
47
48
static TimeLineID target_tli ;
48
- static bool is_hard_copy = false;
49
- static bool backup_validate = false;
49
+ static bool is_hard_copy = false;
50
50
51
51
/* show configuration */
52
52
static bool show_all = false;
You can’t perform that action at this time.
0 commit comments