diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-05-19 23:58:51 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-05-19 23:58:51 +0000 |
commit | ff0c143a3b6a2f0d091133fe64d23544f1157096 (patch) | |
tree | 2108bfda86b681d6a2d64724bee182cdcd4c0204 | |
parent | f519d04a436b98cee20aecd59646f18c2915616b (diff) | |
download | postgresql-ff0c143a3b6a2f0d091133fe64d23544f1157096.tar.gz postgresql-ff0c143a3b6a2f0d091133fe64d23544f1157096.zip |
Make a comment pgindent-proof, per suggestion from Alvaro.
-rw-r--r-- | src/backend/access/transam/xact.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index 81fba82b489..894404903f5 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.201 2005/05/19 21:35:45 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.202 2005/05/19 23:58:51 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -1498,7 +1498,7 @@ CommitTransaction(void) */ RecordTransactionCommit(); - /* + /*---------- * Let others know about no transaction in progress by me. Note that * this must be done _before_ releasing locks we hold and _after_ * RecordTransactionCommit. @@ -1510,6 +1510,7 @@ CommitTransaction(void) * xid 0 as running as well, or it will be able to see two tuple versions * - one deleted by xid 1 and one inserted by xid 0. See notes in * GetSnapshotData. + *---------- */ if (MyProc != NULL) { |