summaryrefslogtreecommitdiff
path: root/src/include/utils/tqual.h
diff options
context:
space:
mode:
authorVadim B. Mikheev <vadim4o@yahoo.com>1999-01-29 09:23:17 +0000
committerVadim B. Mikheev <vadim4o@yahoo.com>1999-01-29 09:23:17 +0000
commite3a1ab764ef2ce1f331133b456879ae4c186558a (patch)
tree4c7b1cb9d72c05c9c008106ca431abdd06c4b956 /src/include/utils/tqual.h
parent3e2f87f3f35e721935643044c6366ae969e544ac (diff)
downloadpostgresql-e3a1ab764ef2ce1f331133b456879ae4c186558a.tar.gz
READ COMMITTED isolevel is implemented and is default now.
Diffstat (limited to 'src/include/utils/tqual.h')
-rw-r--r--src/include/utils/tqual.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/tqual.h b/src/include/utils/tqual.h
index 17ff6f3d90..7f811388e2 100644
--- a/src/include/utils/tqual.h
+++ b/src/include/utils/tqual.h
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: tqual.h,v 1.18 1998/12/18 09:09:55 vadim Exp $
+ * $Id: tqual.h,v 1.19 1999/01/29 09:23:17 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@@ -22,6 +22,7 @@ typedef struct SnapshotData
TransactionId xmax; /* XID >= xmax are invisible to me */
uint32 xcnt; /* # of xact below */
TransactionId *xip; /* array of xacts in progress */
+ ItemPointerData tid; /* required for Dirty snapshot -:( */
} SnapshotData;
typedef SnapshotData *Snapshot;