From: Heikki Linnakangas Date: Tue, 18 Jan 2011 08:38:15 +0000 (+0200) Subject: Fix thinko in comment. Spotted by Jim Nasby. X-Git-Tag: REL9_1_ALPHA4~429 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1dc45c11d8e63df34044ea73e643f5fa9d8c316;p=postgresql Fix thinko in comment. Spotted by Jim Nasby. --- diff --git a/src/backend/storage/ipc/procarray.c b/src/backend/storage/ipc/procarray.c index d5786477bc..8b36df4759 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. */