From e86237ff31c1cb52591065c3d88bb09923b7f459 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 31 Mar 2008 03:34:27 +0000 Subject: [PATCH] Fix my brain fade in TRUNCATE triggers patch: can't release relcache refcounts while EState still contains pointers to those relations. Exposed by the CLOBBER_CACHE_ALWAYS tests that buildfarm member jaguar is running (I knew those cycles would pay off...) --- src/backend/commands/tablecmds.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index e97a4fc13a..b507f17b7b 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.249 2008/03/28 00:21:55 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.250 2008/03/31 03:34:27 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -662,8 +662,6 @@ ExecuteTruncate(TruncateStmt *stmt) heap_relid = RelationGetRelid(rel); toast_relid = rel->rd_rel->reltoastrelid; - heap_close(rel, NoLock); - /* * The same for the toast table, if any. */ @@ -696,6 +694,14 @@ ExecuteTruncate(TruncateStmt *stmt) /* We can clean up the EState now */ FreeExecutorState(estate); + + /* And close the rels (can't do this while EState still holds refs) */ + foreach(cell, rels) + { + Relation rel = (Relation) lfirst(cell); + + heap_close(rel, NoLock); + } } /*