Fix thinko in comment. Spotted by Jim Nasby.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 18 Jan 2011 08:38:15 +0000 (10:38 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 18 Jan 2011 08:46:13 +0000 (10:46 +0200)
src/backend/storage/ipc/procarray.c

index d5786477bc2bda496f87c1b04f1f18eb3476da73..8b36df4759fbe99055e38440fa34989464a65111 100644 (file)
@@ -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.
     */