From af6e88a9cfefcb1549a61ed7642c9837599fd0a7 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 18 Mar 2001 20:18:59 +0000 Subject: Remove NEXTXID xlog record type to avoid three-way deadlock risk. NEXTXID isn't really necessary, per previous discussion in pghackers, but I mulishy insisted we should put it in anyway. Mea culpa. --- src/backend/storage/ipc/sinval.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/storage/ipc') diff --git a/src/backend/storage/ipc/sinval.c b/src/backend/storage/ipc/sinval.c index 44b8d116255..fb37e428cb7 100644 --- a/src/backend/storage/ipc/sinval.c +++ b/src/backend/storage/ipc/sinval.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinval.c,v 1.26 2001/02/26 00:50:07 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinval.c,v 1.27 2001/03/18 20:18:59 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -296,7 +296,7 @@ GetSnapshotData(bool serializable) /* * Unfortunately, we have to call ReadNewTransactionId() after * acquiring SInvalLock above. It's not good because - * ReadNewTransactionId() does SpinAcquire(OidGenLockId) but + * ReadNewTransactionId() does SpinAcquire(XidGenLockId) but * _necessary_. */ ReadNewTransactionId(&(snapshot->xmax)); -- cgit v1.2.3