mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 22:59:54 -04:00
Fix silly typo in previous commit.
This commit is contained in:
parent
d698bf83d1
commit
4ff0468371
1 changed files with 2 additions and 2 deletions
|
|
@ -26,7 +26,7 @@
|
|||
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/backend/access/transam/clog.c,v 1.49 2008/11/03 19:24:03 alvherre Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/access/transam/clog.c,v 1.50 2008/11/03 19:26:07 alvherre Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
|
@ -324,7 +324,7 @@ TransactionIdSetStatusBit(TransactionId xid, XidStatus status, XLogRecPtr lsn, i
|
|||
char curval;
|
||||
|
||||
byteptr = ClogCtl->shared->page_buffer[slotno] + byteno;
|
||||
curval = (*byteptr >> shift) & CLOG_XACT_BITMASK;
|
||||
curval = (*byteptr >> bshift) & CLOG_XACT_BITMASK;
|
||||
|
||||
/*
|
||||
* When replaying transactions during recovery we still need to perform
|
||||
|
|
|
|||
Loading…
Reference in a new issue