aboutsummaryrefslogtreecommitdiff
path: root/src/include/access/xact.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/access/xact.h')
-rw-r--r--src/include/access/xact.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/access/xact.h b/src/include/access/xact.h
index 6b0aae443f0..e624f3b1e56 100644
--- a/src/include/access/xact.h
+++ b/src/include/access/xact.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: xact.h,v 1.18 1998/12/15 12:46:47 vadim Exp $
+ * $Id: xact.h,v 1.19 1998/12/18 09:09:52 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@@ -36,8 +36,9 @@ typedef struct TransactionStateData
#define XACT_DIRTY_READ 0 /* not implemented */
#define XACT_READ_COMMITTED 1
#define XACT_REPEATABLE_READ 2 /* not implemented */
-#define XACT_SERIALIZED 3
+#define XACT_SERIALIZABLE 3
+extern int DefaultXactIsoLevel;
extern int XactIsoLevel;
/* ----------------