From 814c8a03bacf9e30c2c7b4e652986b68a292ac30 Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Thu, 7 Jan 2010 03:53:08 +0000 Subject: [PATCH] Further fixes for per-tablespace options patch. Add missing varlena header to TableSpaceOpts structure. And, per Tom Lane, instead of calling tablespace_reloptions in CacheMemoryContext, call it in the caller's memory context and copy the value over afterwards, to reduce the chances of a session-lifetime memory leak. --- src/backend/utils/cache/spccache.c | 10 ++++------ src/include/commands/tablespace.h | 3 ++- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/backend/utils/cache/spccache.c b/src/backend/utils/cache/spccache.c index 16526159bc..6f28da3203 100644 --- a/src/backend/utils/cache/spccache.c +++ b/src/backend/utils/cache/spccache.c @@ -12,7 +12,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/cache/spccache.c,v 1.3 2010/01/06 23:00:02 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/cache/spccache.c,v 1.4 2010/01/07 03:53:08 rhaas Exp $ * *------------------------------------------------------------------------- */ @@ -142,7 +142,6 @@ get_tablespace(Oid spcid) { Datum datum; bool isNull; - MemoryContext octx; datum = SysCacheGetAttr(TABLESPACEOID, tp, @@ -152,10 +151,9 @@ get_tablespace(Oid spcid) opts = NULL; else { - /* XXX should NOT do the parsing work in CacheMemoryContext */ - octx = MemoryContextSwitchTo(CacheMemoryContext); - opts = (TableSpaceOpts *) tablespace_reloptions(datum, false); - MemoryContextSwitchTo(octx); + bytea *bytea_opts = tablespace_reloptions(datum, false); + opts = MemoryContextAlloc(CacheMemoryContext, VARSIZE(bytea_opts)); + memcpy(opts, bytea_opts, VARSIZE(bytea_opts)); } ReleaseSysCache(tp); } diff --git a/src/include/commands/tablespace.h b/src/include/commands/tablespace.h index 9330a1f81f..3d46eeb650 100644 --- a/src/include/commands/tablespace.h +++ b/src/include/commands/tablespace.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/commands/tablespace.h,v 1.22 2010/01/05 21:53:59 rhaas Exp $ + * $PostgreSQL: pgsql/src/include/commands/tablespace.h,v 1.23 2010/01/07 03:53:08 rhaas Exp $ * *------------------------------------------------------------------------- */ @@ -34,6 +34,7 @@ typedef struct xl_tblspc_drop_rec typedef struct TableSpaceOpts { + int32 vl_len_; /* varlena header (do not touch directly!) */ float8 random_page_cost; float8 seq_page_cost; } TableSpaceOpts;