summaryrefslogtreecommitdiff
path: root/src/backend/access/transam
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2010-08-12 23:25:45 +0000
committerRobert Haas <rhaas@postgresql.org>2010-08-12 23:25:45 +0000
commited3ea3fa0c02a88753c5a162a1fe94e67604b627 (patch)
tree4af39f751c13f33c6ff2e3e377c7ab6cff770b42 /src/backend/access/transam
parent8cc3c67c245e3df61db053dc16e8dad26f253f4a (diff)
Correct sundry errors in Hot Standby-related comments.
Fujii Masao
Diffstat (limited to 'src/backend/access/transam')
-rw-r--r--src/backend/access/transam/xact.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c
index 9dead8a92b8..a8fdede5340 100644
--- a/src/backend/access/transam/xact.c
+++ b/src/backend/access/transam/xact.c
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.293.2.2 2010/08/01 23:07:04 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.293.2.3 2010/08/12 23:25:45 rhaas Exp $
*
*-------------------------------------------------------------------------
*/
@@ -4522,9 +4522,9 @@ xact_redo_abort(xl_xact_abort *xlrec, TransactionId xid)
sub_xids = (TransactionId *) &(xlrec->xnodes[xlrec->nrels]);
max_xid = TransactionIdLatest(xid, xlrec->nsubxacts, sub_xids);
- /* Make sure nextXid is beyond any XID mentioned in the record */
-
/*
+ * Make sure nextXid is beyond any XID mentioned in the record.
+ *
* We don't expect anyone else to modify nextXid, hence we don't need to
* hold a lock while checking this. We still acquire the lock to modify
* it, though.