summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/include/txn.h
diff options
context:
space:
mode:
authorEtienne Petrel <etienne.petrel@mongodb.com>2022-04-11 01:09:54 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-04-11 01:40:12 +0000
commit6fec51f9a86915f136dc3b5173fe571c92410e07 (patch)
tree3f8be0fe6caf88e8db7d5b83422508baa91ffa05 /src/third_party/wiredtiger/src/include/txn.h
parent2dbc7ebb8741418f61904d1f6575675274c7e895 (diff)
downloadmongo-6fec51f9a86915f136dc3b5173fe571c92410e07.tar.gz
Import wiredtiger: 714e612de553c40c8e4edba4fa00e3f7b419647e from branch mongodb-master
ref: 1a4964eadb..714e612de5 for: 6.0.0-rc0 Reverted ticket(s): WT-5927 Checkpoint cursors
Diffstat (limited to 'src/third_party/wiredtiger/src/include/txn.h')
-rw-r--r--src/third_party/wiredtiger/src/include/txn.h26
1 files changed, 10 insertions, 16 deletions
diff --git a/src/third_party/wiredtiger/src/include/txn.h b/src/third_party/wiredtiger/src/include/txn.h
index c167adeeb15..7c60dfc23bb 100644
--- a/src/third_party/wiredtiger/src/include/txn.h
+++ b/src/third_party/wiredtiger/src/include/txn.h
@@ -290,11 +290,6 @@ struct __wt_txn {
*/
wt_timestamp_t prepare_timestamp;
- /*
- * Timestamp used for reading via a checkpoint cursor instead of txn_shared->read_timestamp.
- */
- wt_timestamp_t checkpoint_read_timestamp;
-
/* Array of modifications by this transaction. */
WT_TXN_OP *mod;
size_t mod_alloc;
@@ -338,17 +333,16 @@ struct __wt_txn {
#define WT_TXN_HAS_TS_DURABLE 0x00020u
#define WT_TXN_HAS_TS_PREPARE 0x00040u
#define WT_TXN_IGNORE_PREPARE 0x00080u
-#define WT_TXN_IS_CHECKPOINT 0x00100u
-#define WT_TXN_PREPARE 0x00200u
-#define WT_TXN_PREPARE_IGNORE_API_CHECK 0x00400u
-#define WT_TXN_READONLY 0x00800u
-#define WT_TXN_RUNNING 0x01000u
-#define WT_TXN_SHARED_TS_DURABLE 0x02000u
-#define WT_TXN_SHARED_TS_READ 0x04000u
-#define WT_TXN_SYNC_SET 0x08000u
-#define WT_TXN_TS_ROUND_PREPARED 0x10000u
-#define WT_TXN_TS_ROUND_READ 0x20000u
-#define WT_TXN_UPDATE 0x40000u
+#define WT_TXN_PREPARE 0x00100u
+#define WT_TXN_PREPARE_IGNORE_API_CHECK 0x00200u
+#define WT_TXN_READONLY 0x00400u
+#define WT_TXN_RUNNING 0x00800u
+#define WT_TXN_SHARED_TS_DURABLE 0x01000u
+#define WT_TXN_SHARED_TS_READ 0x02000u
+#define WT_TXN_SYNC_SET 0x04000u
+#define WT_TXN_TS_ROUND_PREPARED 0x08000u
+#define WT_TXN_TS_ROUND_READ 0x10000u
+#define WT_TXN_UPDATE 0x20000u
/* AUTOMATIC FLAG VALUE GENERATION STOP 32 */
uint32_t flags;