diff options
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 15b82ee9be8..b15949b2854 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.201 2005/06/17 22:32:43 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.202 2005/06/19 20:00:38 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -5110,6 +5110,8 @@ CreateCheckPoint(bool shutdown, bool force) CheckPointSUBTRANS(); CheckPointMultiXact(); FlushBufferPool(); + /* We deliberately delay 2PC checkpointing as long as possible */ + CheckPointTwoPhase(checkPoint.redo); START_CRIT_SECTION(); |