Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
3af10943
Commit
3af10943
authored
Jun 25, 2021
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Put option listing back into alphabetical order
parent
e59d428f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
16 deletions
+16
-16
doc/src/sgml/ref/vacuumdb.sgml
doc/src/sgml/ref/vacuumdb.sgml
+15
-15
src/bin/scripts/vacuumdb.c
src/bin/scripts/vacuumdb.c
+1
-1
No files found.
doc/src/sgml/ref/vacuumdb.sgml
View file @
3af10943
...
...
@@ -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>
...
...
src/bin/scripts/vacuumdb.c
View file @
3af10943
...
...
@@ -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
"
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment