aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-01-13 12:00:00 -0500
committerPeter Eisentraut <peter_e@gmx.net>2017-01-13 21:25:36 -0500
commite574f15d6295b12c03ef8810c00976b65933711a (patch)
tree1cc705093b799a1bf3af211e8d96437609cb7f7d /src/test
parent5ad966ab1c50e829462f2b3e3ffa59e2d95479e6 (diff)
downloadpostgresql-e574f15d6295b12c03ef8810c00976b65933711a.tar.gz
postgresql-e574f15d6295b12c03ef8810c00976b65933711a.zip
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/test')
-rw-r--r--src/test/regress/pg_regress.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c
index baebcc8c320..d4d00d9c66f 100644
--- a/src/test/regress/pg_regress.c
+++ b/src/test/regress/pg_regress.c
@@ -265,7 +265,7 @@ stop_postmaster(void)
fflush(stderr);
snprintf(buf, sizeof(buf),
- "\"%s%spg_ctl\" stop -D \"%s/data\" -s -m fast",
+ "\"%s%spg_ctl\" stop -D \"%s/data\" -s",
bindir ? bindir : "",
bindir ? "/" : "",
temp_instance);