diff options
author | Robert Haas <rhaas@postgresql.org> | 2010-08-12 23:24:54 +0000 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2010-08-12 23:24:54 +0000 |
commit | 30c22eb8fc9cb0d359a4a943f0fcc0418bbca523 (patch) | |
tree | 319b0b1bb578a26a4e0b62cf79998282669e5ebb /src/backend/access/transam | |
parent | 00f76dbffa1e3ff8ff5499cd90d84e886bfb8cbf (diff) | |
download | postgresql-30c22eb8fc9cb0d359a4a943f0fcc0418bbca523.tar.gz postgresql-30c22eb8fc9cb0d359a4a943f0fcc0418bbca523.zip |
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.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index 081479a6667..37764891d7f 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.295 2010/07/29 22:27:27 sriggs Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.296 2010/08/12 23:24:53 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. |