Unbreak pg_verifybackup/t/008_untar.pl on msys

Commit 0ad8032910 contains the same pattern fixed in commit 4f0bcc7350.
Apply the same fix.
This commit is contained in:
Andrew Dunstan 2022-01-24 16:32:16 -05:00
parent e9d4001ec5
commit c817a072aa
No known key found for this signature in database
GPG Key ID: 99FA7FCB59FC3B81
1 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@ $primary->start;
my $have_zlib = check_pg_config("#define HAVE_LIBZ 1");
my $backup_path = $primary->backup_dir . '/server-backup';
my $real_backup_path = PostgreSQL::Test::Utils::perl2host($backup_path);
my $extract_path = $primary->backup_dir . '/extracted-backup';
my @test_configuration = (
@ -52,7 +53,7 @@ for my $tc (@test_configuration)
# Take a server-side backup.
my @backup = (
'pg_basebackup', '--no-sync', '-cfast', '--target',
"server:$backup_path", '-Xfetch'
"server:$real_backup_path", '-Xfetch'
);
push @backup, @{$tc->{'backup_flags'}};
$primary->command_ok(\@backup,