diff options
author | Nathan Bossart <nathan@postgresql.org> | 2025-03-18 16:32:56 -0500 |
---|---|---|
committer | Nathan Bossart <nathan@postgresql.org> | 2025-03-18 16:32:56 -0500 |
commit | edba754f052ea0c02287080004aa6051eaa4f597 (patch) | |
tree | 9a2e1bf62504689bccaa4acf3cbbc74edb8dbbe5 /doc/src | |
parent | 9c03c8d187210f112371aab881b379bd4800562c (diff) | |
download | postgresql-edba754f052ea0c02287080004aa6051eaa4f597.tar.gz postgresql-edba754f052ea0c02287080004aa6051eaa4f597.zip |
vacuumdb: Add option for analyzing only relations missing stats.
This commit adds a new --missing-stats-only option that can be used
with --analyze-only or --analyze-in-stages. When this option is
specified, vacuumdb will analyze a relation if it lacks any
statistics for a column, expression index, or extended statistics
object. This new option is primarily intended for use after
pg_upgrade (since it can now retain most optimizer statistics), but
it might be useful in other situations, too.
Author: Corey Huinker <corey.huinker@gmail.com>
Co-authored-by: Nathan Bossart <nathandbossart@gmail.com>
Reviewed-by: John Naylor <johncnaylorls@gmail.com>
Discussion: https://postgr.es/m/Z5O1bpcwDrMgyrYy%40nathan
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/vacuumdb.sgml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/src/sgml/ref/vacuumdb.sgml b/doc/src/sgml/ref/vacuumdb.sgml index 66fccb30a2d..d102f9d4840 100644 --- a/doc/src/sgml/ref/vacuumdb.sgml +++ b/doc/src/sgml/ref/vacuumdb.sgml @@ -278,6 +278,22 @@ PostgreSQL documentation </varlistentry> <varlistentry> + <term><option>--missing-stats-only</option></term> + <listitem> + <para> + Only analyze relations that are missing statistics for a column, index + expression, or extended statistics object. This option prevents + <application>vacuumdb</application> from deleting existing statistics + so that the query optimizer's choices do not become transiently worse. + </para> + <para> + This option can only be used in conjunction with + <option>--analyze-only</option> or <option>--analyze-in-stages</option>. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>-n <replaceable class="parameter">schema</replaceable></option></term> <term><option>--schema=<replaceable class="parameter">schema</replaceable></option></term> <listitem> |