summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFujii Masao <fujii@postgresql.org>2017-03-31 01:31:15 +0900
committerFujii Masao <fujii@postgresql.org>2017-03-31 01:38:59 +0900
commit82f7c325530064d487fe6a9d378e59472d8346dc (patch)
tree5003a8880fbf7683210cb7b1296b8a570c19dbf5
parent3455ddbfa6b7c38d55d2638d062f311343b8f053 (diff)
Simplify the example of VACUUM in documentation.
Previously a detailed activity report by VACUUM VERBOSE ANALYZE was described as an example of VACUUM in docs. But it had been obsolete for a long time. For example, commit feb4f44d296b88b7f0723f4a4f3945a371276e0b updated the content of that activity report in 2003, but we had forgotten to update the example. So basically we need to update the example. But since no one cared about the details of VACUUM output and complained about that mistake for such long time, per discussion on hackers, we decided to get rid of the detailed activity report from the example and simplify it. Back-patch to all supported versions. Reported by Masahiko Sawada, patch by me. Discussion: https://postgr.es/m/CAD21AoAGA2pB3p-CWmTkxBsbkZS1bcDGBLcYVcvcDxspG_XAfA@mail.gmail.com
-rw-r--r--doc/src/sgml/ref/vacuum.sgml33
1 files changed, 3 insertions, 30 deletions
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index eb71581dfd2..2e566cfa9e1 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -222,38 +222,11 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] ANALYZE [ <replaceable class="PARAMETER">
<title>Examples</title>
<para>
- The following is an example from running <command>VACUUM</command> on a
- table in the regression database:
+ To clean a single table <literal>onek</literal>, analyze it for
+ the optimizer and print a detailed vacuum activity report:
<programlisting>
-regression=# VACUUM (VERBOSE, ANALYZE) onek;
-INFO: vacuuming "public.onek"
-INFO: index "onek_unique1" now contains 1000 tuples in 14 pages
-DETAIL: 3000 index tuples were removed.
-0 index pages have been deleted, 0 are currently reusable.
-CPU 0.01s/0.08u sec elapsed 0.18 sec.
-INFO: index "onek_unique2" now contains 1000 tuples in 16 pages
-DETAIL: 3000 index tuples were removed.
-0 index pages have been deleted, 0 are currently reusable.
-CPU 0.00s/0.07u sec elapsed 0.23 sec.
-INFO: index "onek_hundred" now contains 1000 tuples in 13 pages
-DETAIL: 3000 index tuples were removed.
-0 index pages have been deleted, 0 are currently reusable.
-CPU 0.01s/0.08u sec elapsed 0.17 sec.
-INFO: index "onek_stringu1" now contains 1000 tuples in 48 pages
-DETAIL: 3000 index tuples were removed.
-0 index pages have been deleted, 0 are currently reusable.
-CPU 0.01s/0.09u sec elapsed 0.59 sec.
-INFO: "onek": removed 3000 tuples in 108 pages
-DETAIL: CPU 0.01s/0.06u sec elapsed 0.07 sec.
-INFO: "onek": found 3000 removable, 1000 nonremovable tuples in 143 pages
-DETAIL: 0 dead tuples cannot be removed yet.
-There were 0 unused item pointers.
-0 pages are entirely empty.
-CPU 0.07s/0.39u sec elapsed 1.56 sec.
-INFO: analyzing "public.onek"
-INFO: "onek": 36 pages, 1000 rows sampled, 1000 estimated total rows
-VACUUM
+VACUUM (VERBOSE, ANALYZE) onek;
</programlisting></para>
</refsect1>