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/include/utils/syscache.h | |
parent | 84d723b6cefcf25b8c800f8aa6cf3c9538a546b4 (diff) |
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/include/utils/syscache.h')
-rw-r--r-- | src/include/utils/syscache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/syscache.h b/src/include/utils/syscache.h index f0647e34194..d2d02236c78 100644 --- a/src/include/utils/syscache.h +++ b/src/include/utils/syscache.h @@ -9,7 +9,7 @@ * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/syscache.h,v 1.75 2009/10/05 19:24:49 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/syscache.h,v 1.76 2009/12/29 20:11:45 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -70,7 +70,7 @@ enum SysCacheIdentifier RELNAMENSP, RELOID, RULERELNAME, - STATRELATT, + STATRELATTINH, TSCONFIGMAP, TSCONFIGNAMENSP, TSCONFIGOID, |