提交 a52e4408 编写于 作者: T Tom Lane

Add a debug logging message when a resource manager rejects an attempted

restart point.  Per suggestion from Simon Riggs.
上级 89fefd94
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.278 2007/08/13 19:08:26 tgl Exp $ * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.279 2007/08/28 23:17:47 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -5923,7 +5923,13 @@ RecoveryRestartPoint(const CheckPoint *checkPoint) ...@@ -5923,7 +5923,13 @@ RecoveryRestartPoint(const CheckPoint *checkPoint)
{ {
if (RmgrTable[rmid].rm_safe_restartpoint != NULL) if (RmgrTable[rmid].rm_safe_restartpoint != NULL)
if (!(RmgrTable[rmid].rm_safe_restartpoint())) if (!(RmgrTable[rmid].rm_safe_restartpoint()))
{
elog(DEBUG2, "RM %d not safe to record restart point at %X/%X",
rmid,
checkPoint->redo.xlogid,
checkPoint->redo.xrecoff);
return; return;
}
} }
/* /*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册