Commit b1dc45c1 authored by Heikki Linnakangas's avatar Heikki Linnakangas

Fix thinko in comment. Spotted by Jim Nasby.

parent 4acfd43a
...@@ -767,7 +767,7 @@ TransactionIdIsInProgress(TransactionId xid) ...@@ -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. * malloc it permanently to avoid repeated palloc/pfree overhead.
*/ */
if (xids == NULL) if (xids == NULL)
...@@ -1786,7 +1786,7 @@ GetConflictingVirtualXIDs(TransactionId limitXmin, Oid dbOid) ...@@ -1786,7 +1786,7 @@ GetConflictingVirtualXIDs(TransactionId limitXmin, Oid dbOid)
int index; 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 * malloc it permanently to avoid repeated palloc/pfree overhead. Allow
* result space, remembering room for a terminator. * result space, remembering room for a terminator.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment