Skip to content

Commit 1e12a49

Browse files
committed
Remove vacuumdb --analyze-in-stages from pg_upgrade tests
This step was only there to test the script when we generated those, but commit 8f11369 removed those scripts, so it's not needed anymore. Reported-By: Peter Eisentraut Discussion: https://postgr.es/m/ea403f46-2b33-a7de-618e-9cab35a698c8@enterprisedb.com
1 parent a378ba4 commit 1e12a49

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/bin/pg_upgrade/test.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,6 @@ esac
243243

244244
pg_ctl start -l "$logdir/postmaster2.log" -o "$POSTMASTER_OPTS" -w
245245

246-
vacuumdb --all --analyze-in-stages
247-
248246
pg_dumpall --no-sync -f "$temp_root"/dump2.sql || pg_dumpall2_status=$?
249247
pg_ctl -m fast stop
250248

src/tools/msvc/vcregress.pl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -606,8 +606,6 @@ sub upgradecheck
606606
print "\nStarting new cluster\n\n";
607607
@args = ('pg_ctl', '-l', "$logdir/postmaster2.log", 'start');
608608
system(@args) == 0 or exit 1;
609-
print "\nSetting up stats on new cluster\n\n";
610-
@args = ('vacuumdb', '--all', '--analyze-in-stages');
611609
system(@args) == 0 or exit 1;
612610
print "\nDumping new cluster\n\n";
613611
@args = ('pg_dumpall', '-f', "$tmp_root/dump2.sql");

0 commit comments

Comments
 (0)