1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +03:00

Fixed misprint in heap update WALoging.

This commit is contained in:
Vadim B. Mikheev
2000-12-30 06:52:34 +00:00
parent c0f9597b31
commit c193f19a39
2 changed files with 24 additions and 5 deletions

View File

@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.46 2000/12/29 21:31:21 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.47 2000/12/30 06:52:34 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@ -2243,9 +2243,24 @@ xlog_desc(char *buf, uint8 xl_info, char* rec)
static void
xlog_outrec(char *buf, XLogRecord *record)
{
sprintf(buf + strlen(buf), "prev %u/%u; xprev %u/%u; xid %u: %s",
int bkpb;
int i;
sprintf(buf + strlen(buf), "prev %u/%u; xprev %u/%u; xid %u",
record->xl_prev.xlogid, record->xl_prev.xrecoff,
record->xl_xact_prev.xlogid, record->xl_xact_prev.xrecoff,
record->xl_xid,
record->xl_xid);
for (i = 0, bkpb = 0; i < 2; i++)
{
if (!(record->xl_info & (XLR_SET_BKP_BLOCK(i))))
continue;
bkpb++;
}
if (bkpb)
sprintf(buf + strlen(buf), "; bkpb %d", bkpb);
sprintf(buf + strlen(buf), ": %s",
RmgrTable[record->xl_rmid].rm_name);
}