Fix MSVC pg_upgrade test.

In the back-branch versions of commit 71ea0d6795, I missed updating
this test to use --restrict-key so that the generated dump output
is comparable.

Per buildfarm member hamerkop.

Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Security: CVE-2025-8714
Backpatch-through: 13-14
REL_14_STABLE
Nathan Bossart 1 month ago
parent e4998d089d
commit 8967c33c67
  1. 4
      src/tools/msvc/vcregress.pl

@ -675,7 +675,7 @@ sub upgradecheck
# now we can chdir into the source dir # now we can chdir into the source dir
chdir "$topdir/src/bin/pg_upgrade"; chdir "$topdir/src/bin/pg_upgrade";
print "\nDumping old cluster\n\n"; print "\nDumping old cluster\n\n";
@args = ('pg_dumpall', '-f', "$tmp_root/dump1.sql"); @args = ('pg_dumpall', '-f', "$tmp_root/dump1.sql", '--restrict-key', 'test');
system(@args) == 0 or exit 1; system(@args) == 0 or exit 1;
print "\nStopping old cluster\n\n"; print "\nStopping old cluster\n\n";
system("pg_ctl stop") == 0 or exit 1; system("pg_ctl stop") == 0 or exit 1;
@ -689,7 +689,7 @@ sub upgradecheck
@args = ('pg_ctl', '-l', "$logdir/postmaster2.log", 'start'); @args = ('pg_ctl', '-l', "$logdir/postmaster2.log", 'start');
system(@args) == 0 or exit 1; system(@args) == 0 or exit 1;
print "\nDumping new cluster\n\n"; print "\nDumping new cluster\n\n";
@args = ('pg_dumpall', '-f', "$tmp_root/dump2.sql"); @args = ('pg_dumpall', '-f', "$tmp_root/dump2.sql", '--restrict-key', 'test');
system(@args) == 0 or exit 1; system(@args) == 0 or exit 1;
print "\nStopping new cluster\n\n"; print "\nStopping new cluster\n\n";
system("pg_ctl stop") == 0 or exit 1; system("pg_ctl stop") == 0 or exit 1;

Loading…
Cancel
Save