|
7 | 7 | * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
8 | 8 | * Portions Copyright (c) 1994, Regents of the University of California
|
9 | 9 | *
|
10 |
| - * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.278 2007/08/13 19:08:26 tgl Exp $ |
| 10 | + * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.279 2007/08/28 23:17:47 tgl Exp $ |
11 | 11 | *
|
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
@@ -5923,7 +5923,13 @@ RecoveryRestartPoint(const CheckPoint *checkPoint)
|
5923 | 5923 | {
|
5924 | 5924 | if (RmgrTable[rmid].rm_safe_restartpoint!=NULL)
|
5925 | 5925 | if (!(RmgrTable[rmid].rm_safe_restartpoint()))
|
| 5926 | +{ |
| 5927 | +elog(DEBUG2,"RM %d not safe to record restart point at %X/%X", |
| 5928 | +rmid, |
| 5929 | +checkPoint->redo.xlogid, |
| 5930 | +checkPoint->redo.xrecoff); |
5926 | 5931 | return;
|
| 5932 | +} |
5927 | 5933 | }
|
5928 | 5934 |
|
5929 | 5935 | /*
|
|