File tree 1 file changed +1
-10
lines changed
1 file changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -686,16 +686,13 @@ restore_files(void *arg)
686
686
(arguments -> backup -> backup_mode == BACKUP_MODE_DIFF_PAGE
687
687
|| arguments -> backup -> backup_mode == BACKUP_MODE_DIFF_PTRACK ))
688
688
{
689
- elog (VERBOSE , "The file didn`t change. Skip restore: %s " , file -> path );
689
+ elog (VERBOSE , "The file didn`t change. Skip restore: \"%s\" " , file -> path );
690
690
continue ;
691
691
}
692
692
693
693
/* Directories were created before */
694
694
if (S_ISDIR (file -> mode ))
695
- {
696
- elog (VERBOSE , "Directory, skip" );
697
695
continue ;
698
- }
699
696
700
697
/* Do not restore tablespace_map file */
701
698
if (path_is_prefix_of_path (PG_TABLESPACE_MAP_FILE , file -> rel_path ))
@@ -706,18 +703,12 @@ restore_files(void *arg)
706
703
707
704
/* Do no restore external directory file if a user doesn't want */
708
705
if (skip_external_dirs && file -> external_dir_num > 0 )
709
- {
710
- elog (VERBOSE , "Skip external directory file" );
711
706
continue ;
712
- }
713
707
714
708
/* Skip unnecessary file */
715
709
if (parray_bsearch (arguments -> dest_files , file ,
716
710
pgFileCompareRelPathWithExternal ) == NULL )
717
- {
718
- elog (VERBOSE , "Skip removed file" );
719
711
continue ;
720
- }
721
712
722
713
/*
723
714
* restore the file.
You can’t perform that action at this time.
0 commit comments