diff options
author | Robert Haas <rhaas@postgresql.org> | 2010-01-22 16:40:19 +0000 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2010-01-22 16:40:19 +0000 |
commit | 76a47c0e7423891d4b4f0977312f46fec6c5c416 (patch) | |
tree | 8c9ad15f5c0bf5b2c129ec78fece1780eb430c0d /src/backend/utils/cache | |
parent | 9ca0989037602d9835eec04c2a9b6016a7b55740 (diff) | |
download | postgresql-76a47c0e7423891d4b4f0977312f46fec6c5c416.tar.gz postgresql-76a47c0e7423891d4b4f0977312f46fec6c5c416.zip |
Replace ALTER TABLE ... SET STATISTICS DISTINCT with a more general mechanism.
Attributes can now have options, just as relations and tablespaces do, and
the reloptions code is used to parse, validate, and store them. For
simplicity and because these options are not performance critical, we store
them in a separate cache rather than the main relcache.
Thanks to Alex Hunsaker for the review.
Diffstat (limited to 'src/backend/utils/cache')
-rw-r--r-- | src/backend/utils/cache/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/cache/Makefile b/src/backend/utils/cache/Makefile index 1a3d2cc482e..617cb677f7a 100644 --- a/src/backend/utils/cache/Makefile +++ b/src/backend/utils/cache/Makefile @@ -4,7 +4,7 @@ # Makefile for utils/cache # # IDENTIFICATION -# $PostgreSQL: pgsql/src/backend/utils/cache/Makefile,v 1.24 2010/01/05 21:53:59 rhaas Exp $ +# $PostgreSQL: pgsql/src/backend/utils/cache/Makefile,v 1.25 2010/01/22 16:40:19 rhaas Exp $ # #------------------------------------------------------------------------- @@ -12,7 +12,7 @@ subdir = src/backend/utils/cache top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global -OBJS = catcache.o inval.o plancache.o relcache.o \ +OBJS = attoptcache.o catcache.o inval.o plancache.o relcache.o \ spccache.o syscache.o lsyscache.o typcache.o ts_cache.o include $(top_srcdir)/src/backend/common.mk |