mirror of
https://github.com/postgres/postgres.git
synced 2025-11-04 20:11:56 +03:00
Revert analyze support for partitioned tables
This reverts the following commits:1b5617eb84Describe (auto-)analyze behavior for partitioned tables0e69f705ccSet pg_class.reltuples for partitioned tables41badeaba8Document ANALYZE storage parameters for partitioned tables0827e8af70autovacuum: handle analyze for partitioned tables There are efficiency issues in this code when handling databases with large numbers of partitions, and it doesn't look like there isn't any trivial way to handle those. There are some other issues as well. It's now too late in the cycle for nontrivial fixes, so we'll have to let Postgres 14 users continue to manually deal with ANALYZE their partitioned tables, and hopefully we can fix the issues for Postgres 15. I kept [most of]be280cdad2("Don't reset relhasindex for partitioned tables on ANALYZE") because while we added it due to0827e8af70, it is a good bugfix in its own right, since it affects manual analyze as well as autovacuum-induced analyze, and there's no reason to revert it. I retained the addition of relkind 'p' to tables included by pg_stat_user_tables, because reverting that would require a catversion bump. Also, in pg14 only, I keep a struct member that was added to PgStat_TabStatEntry to avoid breaking compatibility with existing stat files. Backpatch to 14. Discussion: https://postgr.es/m/20210722205458.f2bug3z6qzxzpx2s@alap3.anarazel.de
This commit is contained in:
@@ -1374,8 +1374,8 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM
|
||||
If a table parameter value is set and the
|
||||
equivalent <literal>toast.</literal> parameter is not, the TOAST table
|
||||
will use the table's parameter value.
|
||||
Except where noted, these parameters are not supported on partitioned
|
||||
tables; however, you can specify them on individual leaf partitions.
|
||||
Specifying these parameters for partitioned tables is not supported,
|
||||
but you may specify them for individual leaf partitions.
|
||||
</para>
|
||||
|
||||
<variablelist>
|
||||
@@ -1457,8 +1457,6 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM
|
||||
If true, the autovacuum daemon will perform automatic <command>VACUUM</command>
|
||||
and/or <command>ANALYZE</command> operations on this table following the rules
|
||||
discussed in <xref linkend="autovacuum"/>.
|
||||
This parameter can be set for partitioned tables to prevent autovacuum
|
||||
from running <command>ANALYZE</command> on them.
|
||||
If false, this table will not be autovacuumed, except to prevent
|
||||
transaction ID wraparound. See <xref linkend="vacuum-for-wraparound"/> for
|
||||
more about wraparound prevention.
|
||||
@@ -1590,7 +1588,6 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM
|
||||
<para>
|
||||
Per-table value for <xref linkend="guc-autovacuum-analyze-threshold"/>
|
||||
parameter.
|
||||
This parameter can be set for partitioned tables.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
@@ -1606,7 +1603,6 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM
|
||||
<para>
|
||||
Per-table value for <xref linkend="guc-autovacuum-analyze-scale-factor"/>
|
||||
parameter.
|
||||
This parameter can be set for partitioned tables.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
Reference in New Issue
Block a user