File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -314,7 +314,7 @@ perform_base_backup(basebackup_options *opt, DIR *tblspcdir)
314314 char startfname [MAXFNAMELEN ];
315315 XLogFileName (startfname , ThisTimeLineID , startsegno );
316316 ereport (ERROR ,
317- (errmsg ("could not find WAL file %s " , startfname )));
317+ (errmsg ("could not find WAL file \"%s\" " , startfname )));
318318 }
319319 for (i = 0 ; i < nWalFiles ; i ++ )
320320 {
@@ -327,15 +327,15 @@ perform_base_backup(basebackup_options *opt, DIR *tblspcdir)
327327 char nextfname [MAXFNAMELEN ];
328328 XLogFileName (nextfname , ThisTimeLineID , nextsegno );
329329 ereport (ERROR ,
330- (errmsg ("could not find WAL file %s " , nextfname )));
330+ (errmsg ("could not find WAL file \"%s\" " , nextfname )));
331331 }
332332 }
333333 if (segno != endsegno )
334334 {
335335 char endfname [MAXFNAMELEN ];
336336 XLogFileName (endfname , ThisTimeLineID , endsegno );
337337 ereport (ERROR ,
338- (errmsg ("could not find WAL file %s " , endfname )));
338+ (errmsg ("could not find WAL file \"%s\" " , endfname )));
339339 }
340340
341341 /* Ok, we have everything we need. Send the WAL files. */
You can’t perform that action at this time.
0 commit comments