File tree 2 files changed +16
-16
lines changed
2 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -151,6 +151,21 @@ PostgreSQL documentation
151
151
</listitem>
152
152
</varlistentry>
153
153
154
+ <varlistentry>
155
+ <term><option>--force-index-cleanup</option></term>
156
+ <listitem>
157
+ <para>
158
+ Always remove index entries pointing to dead tuples.
159
+ </para>
160
+ <note>
161
+ <para>
162
+ This option is only available for servers running
163
+ <productname>PostgreSQL</productname> 12 and later.
164
+ </para>
165
+ </note>
166
+ </listitem>
167
+ </varlistentry>
168
+
154
169
<varlistentry>
155
170
<term><option>-j <replaceable class="parameter">njobs</replaceable></option></term>
156
171
<term><option>--jobs=<replaceable class="parameter">njobs</replaceable></option></term>
@@ -244,21 +259,6 @@ PostgreSQL documentation
244
259
</listitem>
245
260
</varlistentry>
246
261
247
- <varlistentry>
248
- <term><option>--force-index-cleanup</option></term>
249
- <listitem>
250
- <para>
251
- Always remove index entries pointing to dead tuples.
252
- </para>
253
- <note>
254
- <para>
255
- This option is only available for servers running
256
- <productname>PostgreSQL</productname> 12 and later.
257
- </para>
258
- </note>
259
- </listitem>
260
- </varlistentry>
261
-
262
262
<varlistentry>
263
263
<term><option>--no-process-toast</option></term>
264
264
<listitem>
Original file line number Diff line number Diff line change @@ -1038,11 +1038,11 @@ help(const char *progname)
1038
1038
printf (_ (" -e, --echo show the commands being sent to the server\n" ));
1039
1039
printf (_ (" -f, --full do full vacuuming\n" ));
1040
1040
printf (_ (" -F, --freeze freeze row transaction information\n" ));
1041
+ printf (_ (" --force-index-cleanup always remove index entries that point to dead tuples\n" ));
1041
1042
printf (_ (" -j, --jobs=NUM use this many concurrent connections to vacuum\n" ));
1042
1043
printf (_ (" --min-mxid-age=MXID_AGE minimum multixact ID age of tables to vacuum\n" ));
1043
1044
printf (_ (" --min-xid-age=XID_AGE minimum transaction ID age of tables to vacuum\n" ));
1044
1045
printf (_ (" --no-index-cleanup don't remove index entries that point to dead tuples\n" ));
1045
- printf (_ (" --force-index-cleanup always remove index entries that point to dead tuples\n" ));
1046
1046
printf (_ (" --no-process-toast skip the TOAST table associated with the table to vacuum\n" ));
1047
1047
printf (_ (" --no-truncate don't truncate empty pages at the end of the table\n" ));
1048
1048
printf (_ (" -P, --parallel=PARALLEL_WORKERS use this many background workers for vacuum, if available\n" ));
You can’t perform that action at this time.
0 commit comments