]> granicus.if.org Git - postgresql/commitdiff
Updates to reflect that pg_ctl stop -m fast is the default
authorPeter Eisentraut <peter_e@gmx.net>
Fri, 13 Jan 2017 17:00:00 +0000 (12:00 -0500)
committerPeter Eisentraut <peter_e@gmx.net>
Sat, 14 Jan 2017 02:25:36 +0000 (21:25 -0500)
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.

contrib/start-scripts/freebsd
contrib/start-scripts/linux
contrib/start-scripts/osx/PostgreSQL
doc/src/sgml/ref/pg_ctl-ref.sgml
src/bin/pg_ctl/t/001_start_stop.pl
src/bin/pg_ctl/t/002_status.pl
src/test/regress/pg_regress.c
src/tools/msvc/vcregress.pl

index 758574b427fff77bb8ddf5098758f415647907b1..87d9b9b357ac8c0a689ddd0869f4670ba88c73d3 100644 (file)
@@ -48,10 +48,10 @@ case $1 in
        echo -n ' postgresql'
        ;;
     stop)
-       su -l $PGUSER -c "$PGCTL stop -D '$PGDATA' -s -m fast"
+       su -l $PGUSER -c "$PGCTL stop -D '$PGDATA' -s"
        ;;
     restart)
-       su -l $PGUSER -c "$PGCTL stop -D '$PGDATA' -s -m fast -w"
+       su -l $PGUSER -c "$PGCTL stop -D '$PGDATA' -s -w"
        su -l $PGUSER -c "$DAEMON -D '$PGDATA' &" >>$PGLOG 2>&1
        ;;
     status)
index c88433a0e2b32c47c729be5ac3490e5203b54295..d7499c9d1e3bca2b4e6d75064a40b36d1e084dbb 100644 (file)
@@ -97,12 +97,12 @@ case $1 in
        ;;
   stop)
        echo -n "Stopping PostgreSQL: "
-       su - $PGUSER -c "$PGCTL stop -D '$PGDATA' -s -m fast"
+       su - $PGUSER -c "$PGCTL stop -D '$PGDATA' -s"
        echo "ok"
        ;;
   restart)
        echo -n "Restarting PostgreSQL: "
-       su - $PGUSER -c "$PGCTL stop -D '$PGDATA' -s -m fast -w"
+       su - $PGUSER -c "$PGCTL stop -D '$PGDATA' -s -w"
        test -e "$PG_OOM_ADJUST_FILE" && echo "$PG_MASTER_OOM_SCORE_ADJ" > "$PG_OOM_ADJUST_FILE"
        su - $PGUSER -c "$DAEMON_ENV $DAEMON -D '$PGDATA' &" >>$PGLOG 2>&1
        echo "ok"
index d38504dcc2684c16f358c06d27ce3cd403a62ba5..48c098c8f13a1958cc465f74e19c23ec36d3336f 100755 (executable)
@@ -90,14 +90,14 @@ StartService () {
 
 StopService () {
     ConsoleMessage "Stopping PostgreSQL database server"
-    sudo -u $PGUSER sh -c "$PGCTL stop -D '${PGDATA}' -s -m fast"
+    sudo -u $PGUSER sh -c "$PGCTL stop -D '${PGDATA}' -s"
 }
 
 RestartService () {
     if [ "${POSTGRESQL:=-NO-}" = "-YES-" ]; then
         ConsoleMessage "Restarting PostgreSQL database server"
         # should match StopService:
-        sudo -u $PGUSER sh -c "$PGCTL stop -D '${PGDATA}' -s -m fast"
+        sudo -u $PGUSER sh -c "$PGCTL stop -D '${PGDATA}' -s"
         # should match StartService:
         if [ "${ROTATELOGS}" = "1" ]; then
             sudo -u $PGUSER sh -c "${DAEMON} -D '${PGDATA}' &" 2>&1 | ${LOGUTIL} "${PGLOG}" ${ROTATESEC} &
index 5fb689869987aa947f56ce6adf4badd4459b6de2..3f168005ec30cb3fc0193dc26b53f9e2bf708417 100644 (file)
@@ -615,7 +615,7 @@ PostgreSQL documentation
     The <option>-m</option> option allows control over
     <emphasis>how</emphasis> the server shuts down:
 <screen>
-<prompt>$</prompt> <userinput>pg_ctl stop -m fast</userinput>
+<prompt>$</prompt> <userinput>pg_ctl stop -m smart</userinput>
 </screen></para>
   </refsect2>
 
index cbe99d79ad510e5f2af35b46cbae61111f198a82..b328f224877f73dc1c4671a28cb4be65a788a10e 100644 (file)
@@ -42,14 +42,14 @@ command_ok([ 'pg_ctl', 'start', '-D', "$tempdir/data", '-w' ],
 sleep 3 if ($windows_os);
 command_fails([ 'pg_ctl', 'start', '-D', "$tempdir/data", '-w' ],
        'second pg_ctl start -w fails');
-command_ok([ 'pg_ctl', 'stop', '-D', "$tempdir/data", '-w', '-m', 'fast' ],
+command_ok([ 'pg_ctl', 'stop', '-D', "$tempdir/data", '-w' ],
        'pg_ctl stop -w');
-command_fails([ 'pg_ctl', 'stop', '-D', "$tempdir/data", '-w', '-m', 'fast' ],
+command_fails([ 'pg_ctl', 'stop', '-D', "$tempdir/data", '-w' ],
        'second pg_ctl stop fails');
 
-command_ok([ 'pg_ctl', 'restart', '-D', "$tempdir/data", '-w', '-m', 'fast' ],
+command_ok([ 'pg_ctl', 'restart', '-D', "$tempdir/data", '-w' ],
        'pg_ctl restart with server not running');
-command_ok([ 'pg_ctl', 'restart', '-D', "$tempdir/data", '-w', '-m', 'fast' ],
+command_ok([ 'pg_ctl', 'restart', '-D', "$tempdir/data", '-w' ],
        'pg_ctl restart with server running');
 
-system_or_bail 'pg_ctl', 'stop', '-D', "$tempdir/data", '-m', 'fast';
+system_or_bail 'pg_ctl', 'stop', '-D', "$tempdir/data";
index 98e171e394feadbf462ed942b64c2813bf265439..606d10560fce9e4ddcbaec849aba8d7cfc9e390e 100644 (file)
@@ -22,4 +22,4 @@ system_or_bail 'pg_ctl', '-l', "$tempdir/logfile", '-D',
 command_exit_is([ 'pg_ctl', 'status', '-D', $node->data_dir ],
        0, 'pg_ctl status with server running');
 
-system_or_bail 'pg_ctl', 'stop', '-D', $node->data_dir, '-m', 'fast';
+system_or_bail 'pg_ctl', 'stop', '-D', $node->data_dir;
index baebcc8c320b63bbd4ea24f200bbc3b1ec343c54..d4d00d9c66f4fb56d01dcb50a90da803f8332e80 100644 (file)
@@ -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);
index bcf22677acdf1c2981f78f5097e594b0875041af..f575e40052962f6a01e64b72f83b6f24609abf17 100644 (file)
@@ -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";