From: Peter Eisentraut Date: Mon, 16 Apr 2012 12:36:40 +0000 (+0300) Subject: Fix typo X-Git-Tag: REL9_2_BETA1~126 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a33fcd7e79d7e1544030160de177aee847bb7648;p=thirdparty%2Fpostgresql.git Fix typo Kyotaro HORIGUCHI --- diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 0c301b20b46..8d0aabff109 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -6354,10 +6354,10 @@ StartupXLOG(void) CheckRequiredParameterValues(); /* - * We're in recovery, so unlogged relations relations may be trashed - * and must be reset. This should be done BEFORE allowing Hot Standby - * connections, so that read-only backends don't try to read whatever - * garbage is left over from before. + * We're in recovery, so unlogged relations may be trashed and must be + * reset. This should be done BEFORE allowing Hot Standby connections, + * so that read-only backends don't try to read whatever garbage is + * left over from before. */ ResetUnloggedRelations(UNLOGGED_RELATION_CLEANUP);