diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2011-01-18 10:38:15 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2011-01-18 10:46:13 +0200 |
commit | b1dc45c11d8e63df34044ea73e643f5fa9d8c316 (patch) | |
tree | fdc91e83143005b4032f5538de23b45b6ab20933 | |
parent | 4acfd43a7d6194fa735a6b7b06a1554909123d41 (diff) | |
download | postgresql-b1dc45c11d8e63df34044ea73e643f5fa9d8c316.tar.gz postgresql-b1dc45c11d8e63df34044ea73e643f5fa9d8c316.zip |
Fix thinko in comment. Spotted by Jim Nasby.
-rw-r--r-- | src/backend/storage/ipc/procarray.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/ipc/procarray.c b/src/backend/storage/ipc/procarray.c index d5786477bc2..8b36df4759f 100644 --- a/src/backend/storage/ipc/procarray.c +++ b/src/backend/storage/ipc/procarray.c @@ -767,7 +767,7 @@ TransactionIdIsInProgress(TransactionId xid) } /* - * If not first time through, get workspace to remember main XIDs in. We + * If first time through, get workspace to remember main XIDs in. We * malloc it permanently to avoid repeated palloc/pfree overhead. */ if (xids == NULL) @@ -1786,7 +1786,7 @@ GetConflictingVirtualXIDs(TransactionId limitXmin, Oid dbOid) int index; /* - * If not first time through, get workspace to remember main XIDs in. We + * If first time through, get workspace to remember main XIDs in. We * malloc it permanently to avoid repeated palloc/pfree overhead. Allow * result space, remembering room for a terminator. */ |