diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-03-25 19:45:14 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-03-25 19:45:14 +0000 |
commit | e85a01df678c9621c225200f1309ca8e682338ff (patch) | |
tree | 087e322930b44acbec0764f41c80aa177a25095e /src/backend/storage/ipc | |
parent | 75c6519ff68dbb97f73b13e9976fb8075bbde7b8 (diff) |
Clean up the representation of special snapshots by including a "method
pointer" in every Snapshot struct. This allows removal of the case-by-case
tests in HeapTupleSatisfiesVisibility, which should make it a bit faster
(I didn't try any performance tests though). More importantly, we are no
longer violating portable C practices by assuming that small integers are
distinct from all pointer values, and HeapTupleSatisfiesDirty no longer
has a non-reentrant API involving side-effects on a global variable.
There were a couple of places calling HeapTupleSatisfiesXXX routines
directly rather than through the HeapTupleSatisfiesVisibility macro.
Since these places had to be changed anyway, I chose to make them go
through the macro for uniformity.
Along the way I renamed HeapTupleSatisfiesSnapshot to HeapTupleSatisfiesMVCC
to emphasize that it's only used with MVCC-type snapshots. I was sorely
tempted to rename HeapTupleSatisfiesVisibility to HeapTupleSatisfiesSnapshot,
but forebore for the moment to avoid confusion and reduce the likelihood that
this patch breaks some of the pending patches. Might want to reconsider
doing that later.
Diffstat (limited to 'src/backend/storage/ipc')
-rw-r--r-- | src/backend/storage/ipc/procarray.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/ipc/procarray.c b/src/backend/storage/ipc/procarray.c index d2d39770c5b..12e61c89263 100644 --- a/src/backend/storage/ipc/procarray.c +++ b/src/backend/storage/ipc/procarray.c @@ -23,7 +23,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/storage/ipc/procarray.c,v 1.22 2007/03/23 03:16:39 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/storage/ipc/procarray.c,v 1.23 2007/03/25 19:45:14 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -484,7 +484,7 @@ GetOldestXmin(bool allDbs, bool ignoreVacuum) * limited cache area for subxact XIDs, full information may not be * available. If we find any overflowed subxid arrays, we have to mark * the snapshot's subxid data as overflowed, and extra work will need to - * be done to determine what's running (see XidInSnapshot() in tqual.c). + * be done to determine what's running (see XidInMVCCSnapshot() in tqual.c). * * We also update the following backend-global variables: * TransactionXmin: the oldest xmin of any snapshot in use in the |