summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/include/session.h
diff options
context:
space:
mode:
authorWill Korteland <will.korteland@mongodb.com>2022-03-24 05:03:55 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-03-24 05:35:56 +0000
commit1842f6a33d9b5e668af7c03f5e1fe899dcf2b279 (patch)
treeec8afebf1ee5f8d64d0e0b30e956445a8a20ebc3 /src/third_party/wiredtiger/src/include/session.h
parent84d4191d2c86740469b91da76471386812372992 (diff)
downloadmongo-1842f6a33d9b5e668af7c03f5e1fe899dcf2b279.tar.gz
Import wiredtiger: e53cae78535950f1a36b1c7f5c306fef67fcfbaa from branch mongodb-master
ref: a2ec68905a..e53cae7853 for: 6.0.0 WT-8265 Add an option to wt verify utility to turn off txnid clearing
Diffstat (limited to 'src/third_party/wiredtiger/src/include/session.h')
-rw-r--r--src/third_party/wiredtiger/src/include/session.h29
1 files changed, 15 insertions, 14 deletions
diff --git a/src/third_party/wiredtiger/src/include/session.h b/src/third_party/wiredtiger/src/include/session.h
index 85589653ec8..58551f5b702 100644
--- a/src/third_party/wiredtiger/src/include/session.h
+++ b/src/third_party/wiredtiger/src/include/session.h
@@ -194,20 +194,21 @@ struct __wt_session_impl {
#define WT_SESSION_BACKUP_DUP 0x00002u
#define WT_SESSION_CACHE_CURSORS 0x00004u
#define WT_SESSION_CAN_WAIT 0x00008u
-#define WT_SESSION_DEBUG_RELEASE_EVICT 0x00010u
-#define WT_SESSION_EVICTION 0x00020u
-#define WT_SESSION_IGNORE_CACHE_SIZE 0x00040u
-#define WT_SESSION_IMPORT 0x00080u
-#define WT_SESSION_IMPORT_REPAIR 0x00100u
-#define WT_SESSION_INTERNAL 0x00200u
-#define WT_SESSION_LOGGING_INMEM 0x00400u
-#define WT_SESSION_NO_DATA_HANDLES 0x00800u
-#define WT_SESSION_NO_RECONCILE 0x01000u
-#define WT_SESSION_QUIET_CORRUPT_FILE 0x02000u
-#define WT_SESSION_READ_WONT_NEED 0x04000u
-#define WT_SESSION_RESOLVING_TXN 0x08000u
-#define WT_SESSION_ROLLBACK_TO_STABLE 0x10000u
-#define WT_SESSION_SCHEMA_TXN 0x20000u
+#define WT_SESSION_DEBUG_DO_NOT_CLEAR_TXN_ID 0x00010u
+#define WT_SESSION_DEBUG_RELEASE_EVICT 0x00020u
+#define WT_SESSION_EVICTION 0x00040u
+#define WT_SESSION_IGNORE_CACHE_SIZE 0x00080u
+#define WT_SESSION_IMPORT 0x00100u
+#define WT_SESSION_IMPORT_REPAIR 0x00200u
+#define WT_SESSION_INTERNAL 0x00400u
+#define WT_SESSION_LOGGING_INMEM 0x00800u
+#define WT_SESSION_NO_DATA_HANDLES 0x01000u
+#define WT_SESSION_NO_RECONCILE 0x02000u
+#define WT_SESSION_QUIET_CORRUPT_FILE 0x04000u
+#define WT_SESSION_READ_WONT_NEED 0x08000u
+#define WT_SESSION_RESOLVING_TXN 0x10000u
+#define WT_SESSION_ROLLBACK_TO_STABLE 0x20000u
+#define WT_SESSION_SCHEMA_TXN 0x40000u
/* AUTOMATIC FLAG VALUE GENERATION STOP 32 */
uint32_t flags;