summaryrefslogtreecommitdiff
path: root/src/tools/msvc
diff options
context:
space:
mode:
authorPeter Eisentraut2017-01-13 17:00:00 +0000
committerPeter Eisentraut2017-01-14 02:25:36 +0000
commite574f15d6295b12c03ef8810c00976b65933711a (patch)
tree1cc705093b799a1bf3af211e8d96437609cb7f7d /src/tools/msvc
parent5ad966ab1c50e829462f2b3e3ffa59e2d95479e6 (diff)
Updates to reflect that pg_ctl stop -m fast is the default
Various example and test code used -m fast explicitly, but since it's the default, this can be omitted now or should be replaced by a better example. pg_upgrade is not touched, so it can continue to operate with older installations.
Diffstat (limited to 'src/tools/msvc')
-rw-r--r--src/tools/msvc/vcregress.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl
index bcf22677acd..f575e400529 100644
--- a/src/tools/msvc/vcregress.pl
+++ b/src/tools/msvc/vcregress.pl
@@ -465,7 +465,7 @@ sub upgradecheck
@args = ('pg_dumpall', '-f', "$tmp_root/dump1.sql");
system(@args) == 0 or exit 1;
print "\nStopping old cluster\n\n";
- system("pg_ctl -m fast stop") == 0 or exit 1;
+ system("pg_ctl stop") == 0 or exit 1;
$ENV{PGDATA} = "$data";
print "\nSetting up new cluster\n\n";
standard_initdb() or exit 1;
@@ -483,7 +483,7 @@ sub upgradecheck
@args = ('pg_dumpall', '-f', "$tmp_root/dump2.sql");
system(@args) == 0 or exit 1;
print "\nStopping new cluster\n\n";
- system("pg_ctl -m fast stop") == 0 or exit 1;
+ system("pg_ctl stop") == 0 or exit 1;
print "\nDeleting old cluster\n\n";
system(".\\delete_old_cluster.bat") == 0 or exit 1;
print "\nComparing old and new cluster dumps\n\n";