summaryrefslogtreecommitdiff
path: root/src/backend/access/gist/gistxlog.c
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2009-01-20 18:59:37 +0000
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2009-01-20 18:59:37 +0000
commitb2a667b9ee8ba8d54e92fddcb0ed8d30651be595 (patch)
tree6e01c62937710099b373bc9dced2b87027b8cb4c /src/backend/access/gist/gistxlog.c
parentb287f0a39eafbd99dd9ac8e83a58234604961b0d (diff)
downloadpostgresql-b2a667b9ee8ba8d54e92fddcb0ed8d30651be595.tar.gz
Add a new option to RestoreBkpBlocks() to indicate if a cleanup lock should
be used instead of the normal exclusive lock, and make WAL redo functions responsible for calling RestoreBkpBlocks(). They know better what kind of a lock they need. At the moment, this just moves things around with no functional change, but makes the hot standby patch that's under review cleaner.
Diffstat (limited to 'src/backend/access/gist/gistxlog.c')
-rw-r--r--src/backend/access/gist/gistxlog.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/access/gist/gistxlog.c b/src/backend/access/gist/gistxlog.c
index b6d76a1f47..672d714e01 100644
--- a/src/backend/access/gist/gistxlog.c
+++ b/src/backend/access/gist/gistxlog.c
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/access/gist/gistxlog.c,v 1.31 2009/01/01 17:23:35 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/access/gist/gistxlog.c,v 1.32 2009/01/20 18:59:36 heikki Exp $
*-------------------------------------------------------------------------
*/
#include "postgres.h"
@@ -394,9 +394,10 @@ void
gist_redo(XLogRecPtr lsn, XLogRecord *record)
{
uint8 info = record->xl_info & ~XLR_INFO_MASK;
-
MemoryContext oldCxt;
+ RestoreBkpBlocks(lsn, record, false);
+
oldCxt = MemoryContextSwitchTo(opCtx);
switch (info)
{