diff options
| author | Robert Haas <rhaas@postgresql.org> | 2010-01-05 21:54:00 +0000 |
|---|---|---|
| committer | Robert Haas <rhaas@postgresql.org> | 2010-01-05 21:54:00 +0000 |
| commit | d86d51a95810caebcea587498068ff32fe28293e (patch) | |
| tree | 031fb02a2ef325762250b163acd215cd7c31c2bb /src/backend/utils/cache/Makefile | |
| parent | 72559b49c051ff7dc860068c96324ddf07d7955d (diff) | |
Support ALTER TABLESPACE name SET/RESET ( tablespace_options ).
This patch only supports seq_page_cost and random_page_cost as parameters,
but it provides the infrastructure to scalably support many more.
In particular, we may want to add support for effective_io_concurrency,
but I'm leaving that as future work for now.
Thanks to Tom Lane for design help and Alvaro Herrera for the review.
Diffstat (limited to 'src/backend/utils/cache/Makefile')
| -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 1766c0315f8..1a3d2cc482e 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.23 2008/02/19 10:30:08 petere Exp $ +# $PostgreSQL: pgsql/src/backend/utils/cache/Makefile,v 1.24 2010/01/05 21:53:59 rhaas Exp $ # #------------------------------------------------------------------------- @@ -13,6 +13,6 @@ top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global OBJS = catcache.o inval.o plancache.o relcache.o \ - syscache.o lsyscache.o typcache.o ts_cache.o + spccache.o syscache.o lsyscache.o typcache.o ts_cache.o include $(top_srcdir)/src/backend/common.mk |
