From eaedf0df7197b21182f6c341a44e4fdaa3cd6ea6 Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Wed, 29 Nov 2017 09:24:24 -0500 Subject: Update typedefs.list and re-run pgindent Discussion: http://postgr.es/m/CA+TgmoaA9=1RWKtBWpDaj+sF3Stgc8sHgf5z=KGtbjwPLQVDMA@mail.gmail.com --- src/backend/access/transam/xlog.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'src/backend/access/transam/xlog.c') diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index e729180f827..fba201f6599 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -6586,10 +6586,10 @@ StartupXLOG(void) else { /* - * We used to attempt to go back to a secondary checkpoint - * record here, but only when not in standby_mode. We now - * just fail if we can't read the last checkpoint because - * this allows us to simplify processing around checkpoints. + * We used to attempt to go back to a secondary checkpoint record + * here, but only when not in standby_mode. We now just fail if we + * can't read the last checkpoint because this allows us to + * simplify processing around checkpoints. */ ereport(PANIC, (errmsg("could not locate a valid checkpoint record"))); @@ -8888,7 +8888,8 @@ CreateCheckPoint(int flags) (errmsg("concurrent write-ahead log activity while database system is shutting down"))); /* - * Remember the prior checkpoint's redo ptr for UpdateCheckPointDistanceEstimate() + * Remember the prior checkpoint's redo ptr for + * UpdateCheckPointDistanceEstimate() */ PriorRedoPtr = ControlFile->checkPointCopy.redo; @@ -9211,7 +9212,8 @@ CreateRestartPoint(int flags) CheckPointGuts(lastCheckPoint.redo, flags); /* - * Remember the prior checkpoint's redo ptr for UpdateCheckPointDistanceEstimate() + * Remember the prior checkpoint's redo ptr for + * UpdateCheckPointDistanceEstimate() */ PriorRedoPtr = ControlFile->checkPointCopy.redo; -- cgit v1.2.3