From b1dc45c11d8e63df34044ea73e643f5fa9d8c316 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Tue, 18 Jan 2011 10:38:15 +0200 Subject: [PATCH] Fix thinko in comment. Spotted by Jim Nasby. --- src/backend/storage/ipc/procarray.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. */ -- 2.40.0