From c94dff4c3c18595a9d6d8a97020145c1155de473 Mon Sep 17 00:00:00 2001 From: Simon Riggs Date: Sun, 19 May 2013 15:38:47 +0100 Subject: [PATCH] Remove single space on end of a line in xlog.c Michael Paquier --- src/backend/access/transam/xlog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index f7dd61c4c75..ce31c05492c 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -6866,7 +6866,7 @@ CreateCheckPoint(int flags) XLogRecPtr curInsert; INSERT_RECPTR(curInsert, Insert, Insert->curridx); - if (curInsert == ControlFile->checkPoint + + if (curInsert == ControlFile->checkPoint + MAXALIGN(SizeOfXLogRecord + sizeof(CheckPoint)) && ControlFile->checkPoint == ControlFile->checkPointCopy.redo) { -- 2.39.5