diff options
author | Tom Lane | 2010-09-21 20:40:41 +0000 |
---|---|---|
committer | Tom Lane | 2010-09-21 20:40:41 +0000 |
commit | 2cdf6c155110cd068933e3be71f2af747e648fb0 (patch) | |
tree | b9159b5f21820a47242e5503f1b8d67640f46964 /doc/src | |
parent | eacc4a3b9a7ea8a2608cb95981646f947efed625 (diff) |
Fix a missed explanation of auto-analyze threshold, per Joe Miller.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/maintenance.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/maintenance.sgml b/doc/src/sgml/maintenance.sgml index 70b99e87329..f3d1669f3a2 100644 --- a/doc/src/sgml/maintenance.sgml +++ b/doc/src/sgml/maintenance.sgml @@ -638,7 +638,7 @@ vacuum threshold = vacuum base threshold + vacuum scale factor * number of tuple <programlisting> analyze threshold = analyze base threshold + analyze scale factor * number of tuples </programlisting> - is compared to the total number of tuples inserted or updated + is compared to the total number of tuples inserted, updated, or deleted since the last <command>ANALYZE</command>. </para> |