Put option listing back into alphabetical order
authorPeter Eisentraut <peter@eisentraut.org>
Fri, 25 Jun 2021 09:40:06 +0000 (11:40 +0200)
committerPeter Eisentraut <peter@eisentraut.org>
Fri, 25 Jun 2021 09:40:06 +0000 (11:40 +0200)
doc/src/sgml/ref/vacuumdb.sgml
src/bin/scripts/vacuumdb.c

index d799804cdad01cf76df6517955e76aded183f176..223b986b920d4167b092d9d01b0d2ac48bde5c9a 100644 (file)
@@ -151,6 +151,21 @@ PostgreSQL documentation
       </listitem>
      </varlistentry>
 
+     <varlistentry>
+      <term><option>--force-index-cleanup</option></term>
+      <listitem>
+       <para>
+        Always remove index entries pointing to dead tuples.
+       </para>
+       <note>
+        <para>
+         This option is only available for servers running
+         <productname>PostgreSQL</productname> 12 and later.
+        </para>
+       </note>
+      </listitem>
+     </varlistentry>
+
      <varlistentry>
       <term><option>-j <replaceable class="parameter">njobs</replaceable></option></term>
       <term><option>--jobs=<replaceable class="parameter">njobs</replaceable></option></term>
@@ -244,21 +259,6 @@ PostgreSQL documentation
       </listitem>
      </varlistentry>
 
-     <varlistentry>
-      <term><option>--force-index-cleanup</option></term>
-      <listitem>
-       <para>
-        Always remove index entries pointing to dead tuples.
-       </para>
-       <note>
-        <para>
-         This option is only available for servers running
-         <productname>PostgreSQL</productname> 12 and later.
-        </para>
-       </note>
-      </listitem>
-     </varlistentry>
-
      <varlistentry>
       <term><option>--no-process-toast</option></term>
       <listitem>
index 122e8932f1b550e121410e676931eb93108ff250..61974baa780860dcd341f13654caaf1795146b80 100644 (file)
@@ -1038,11 +1038,11 @@ help(const char *progname)
    printf(_("  -e, --echo                      show the commands being sent to the server\n"));
    printf(_("  -f, --full                      do full vacuuming\n"));
    printf(_("  -F, --freeze                    freeze row transaction information\n"));
+   printf(_("      --force-index-cleanup       always remove index entries that point to dead tuples\n"));
    printf(_("  -j, --jobs=NUM                  use this many concurrent connections to vacuum\n"));
    printf(_("      --min-mxid-age=MXID_AGE     minimum multixact ID age of tables to vacuum\n"));
    printf(_("      --min-xid-age=XID_AGE       minimum transaction ID age of tables to vacuum\n"));
    printf(_("      --no-index-cleanup          don't remove index entries that point to dead tuples\n"));
-   printf(_("      --force-index-cleanup       always remove index entries that point to dead tuples\n"));
    printf(_("      --no-process-toast          skip the TOAST table associated with the table to vacuum\n"));
    printf(_("      --no-truncate               don't truncate empty pages at the end of the table\n"));
    printf(_("  -P, --parallel=PARALLEL_WORKERS use this many background workers for vacuum, if available\n"));