pgsql: Ignore extended statistics for inheritance trees

Поиск
Список
Период
Сортировка
От Tomas Vondra
Тема pgsql: Ignore extended statistics for inheritance trees
Дата
Msg-id E1n8YWx-00066D-3T@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Ignore extended statistics for inheritance trees

Since commit 859b3003de we only build extended statistics for individual
relations, ignoring the child relations. This resolved the issue with
updating catalog tuple twice, but we still tried to use the statistics
when calculating estimates for the whole inheritance tree. When the
relations contain very distinct data, it may produce bogus estimates.

This is roughly the same issue 427c6b5b9 addressed ~15 years ago, and we
fix it the same way - by ignoring extended statistics when calculating
estimates for the inheritance tree as a whole. We still consider
extended statistics when calculating estimates for individual child
relations, of course.

This may result in plan changes due to different estimates, but if the
old statistics were not describing the inheritance tree particularly
well it's quite likely the new plans is actually better.

Report and patch by Justin Pryzby, minor fixes and cleanup by me.
Backpatch all the way back to PostgreSQL 10, where extended statistics
were introduced (same as 859b3003de).

Author: Justin Pryzby
Reported-by: Justin Pryzby
Backpatch-through: 10
Discussion: https://postgr.es/m/20210923212624.GI831%40telsasoft.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/36c4bc6e725fe3e9b5a6cc7f1f83010534f18e4b

Modified Files
--------------
src/backend/statistics/dependencies.c   |  9 ++++++++
src/backend/statistics/extended_stats.c |  9 ++++++++
src/backend/utils/adt/selfuncs.c        | 17 ++++++++++++++
src/test/regress/expected/stats_ext.out | 41 +++++++++++++++++++++++++++++++++
src/test/regress/sql/stats_ext.sql      | 22 ++++++++++++++++++
5 files changed, 98 insertions(+)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Peter Geoghegan
Дата:
Сообщение: pgsql: Unify VACUUM VERBOSE and autovacuum logging.
Следующее
От: Tomas Vondra
Дата:
Сообщение: pgsql: Ignore extended statistics for inheritance trees