ALTER TABLE ... ALTER COLUMN ... SET (n_distinct = ...)>
(see ).
+
+ If the table being analyzed has one or more children,
+ ANALYZE will gather statistics twice: once on the
+ rows of the parent table only, and a second time on the rows of the
+ parent table with all of its children. The autovacuum daemon, however,
+ will only consider inserts or updates on the parent table when deciding
+ whether to trigger an automatic analyze. If that table is rarely
+ inserted into or updated, the inheritance statistics will not be up to date
+ unless you run ANALYZE manually.
+