diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-12-29 20:11:45 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-12-29 20:11:45 +0000 |
commit | 649b5ec7c8a3050a30bd6d36003ba3a681c9a198 (patch) | |
tree | af041b646426d71d9ea1113837b5f7a9001082c9 /src/backend/utils/cache/syscache.c | |
parent | 84d723b6cefcf25b8c800f8aa6cf3c9538a546b4 (diff) | |
download | postgresql-649b5ec7c8a3050a30bd6d36003ba3a681c9a198.tar.gz postgresql-649b5ec7c8a3050a30bd6d36003ba3a681c9a198.zip |
Add the ability to store inheritance-tree statistics in pg_statistic,
and teach ANALYZE to compute such stats for tables that have subclasses.
Per my proposal of yesterday.
autovacuum still needs to be taught about running ANALYZE on parent tables
when their subclasses change, but the feature is useful even without that.
Diffstat (limited to 'src/backend/utils/cache/syscache.c')
-rw-r--r-- | src/backend/utils/cache/syscache.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/utils/cache/syscache.c b/src/backend/utils/cache/syscache.c index efed498f120..59e9ee60269 100644 --- a/src/backend/utils/cache/syscache.c +++ b/src/backend/utils/cache/syscache.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/cache/syscache.c,v 1.121 2009/10/05 19:24:45 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/cache/syscache.c,v 1.122 2009/12/29 20:11:45 tgl Exp $ * * NOTES * These routines allow the parser/planner/executor to perform @@ -597,14 +597,14 @@ static const struct cachedesc cacheinfo[] = { }, 1024 }, - {StatisticRelationId, /* STATRELATT */ - StatisticRelidAttnumIndexId, + {StatisticRelationId, /* STATRELATTINH */ + StatisticRelidAttnumInhIndexId, Anum_pg_statistic_starelid, - 2, + 3, { Anum_pg_statistic_starelid, Anum_pg_statistic_staattnum, - 0, + Anum_pg_statistic_stainherit, 0 }, 1024 |