diff options
author | Magnus Hagander <magnus@hagander.net> | 2020-11-11 16:47:13 +0100 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2020-11-11 16:47:13 +0100 |
commit | 1e12a495b4749c7dc8e38e347554f2b24297f4ba (patch) | |
tree | 300a4c4c2cd0e91c3545ba5480fc2b8fafad477e /src | |
parent | a378ba49a5cfec073d885f4943e1c7e4b83abd3b (diff) | |
download | postgresql-1e12a495b4749c7dc8e38e347554f2b24297f4ba.tar.gz postgresql-1e12a495b4749c7dc8e38e347554f2b24297f4ba.zip |
Remove vacuumdb --analyze-in-stages from pg_upgrade tests
This step was only there to test the script when we generated those, but
commit 8f113698b6 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
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_upgrade/test.sh | 2 | ||||
-rw-r--r-- | src/tools/msvc/vcregress.pl | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/bin/pg_upgrade/test.sh b/src/bin/pg_upgrade/test.sh index 551ac8a5c26..04aa7fd9f51 100644 --- a/src/bin/pg_upgrade/test.sh +++ b/src/bin/pg_upgrade/test.sh @@ -243,8 +243,6 @@ esac pg_ctl start -l "$logdir/postmaster2.log" -o "$POSTMASTER_OPTS" -w -vacuumdb --all --analyze-in-stages - pg_dumpall --no-sync -f "$temp_root"/dump2.sql || pg_dumpall2_status=$? pg_ctl -m fast stop diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl index 9799c5f54b8..451f608e63b 100644 --- a/src/tools/msvc/vcregress.pl +++ b/src/tools/msvc/vcregress.pl @@ -606,8 +606,6 @@ sub upgradecheck print "\nStarting new cluster\n\n"; @args = ('pg_ctl', '-l', "$logdir/postmaster2.log", 'start'); system(@args) == 0 or exit 1; - print "\nSetting up stats on new cluster\n\n"; - @args = ('vacuumdb', '--all', '--analyze-in-stages'); system(@args) == 0 or exit 1; print "\nDumping new cluster\n\n"; @args = ('pg_dumpall', '-f', "$tmp_root/dump2.sql"); |