summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/include/session.h
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2021-11-15 17:17:11 +1100
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-11-15 06:45:10 +0000
commit15f9f75e1e627486aaa927a23f9f5a3eb9721114 (patch)
tree1965b50724496479ec1090660d5cc3a24ad163d3 /src/third_party/wiredtiger/src/include/session.h
parent8d577f2fc233ef336b0ed6a55bdd9afc889bf153 (diff)
downloadmongo-15f9f75e1e627486aaa927a23f9f5a3eb9721114.tar.gz
Import wiredtiger: d651799004b02bb7f39300660c215ae8eb753fa0 from branch mongodb-master
ref: 723fdc2489..d651799004 for: 5.2.0 WT-8208 Add a new debug config in session to evict pages as released
Diffstat (limited to 'src/third_party/wiredtiger/src/include/session.h')
-rw-r--r--src/third_party/wiredtiger/src/include/session.h31
1 files changed, 16 insertions, 15 deletions
diff --git a/src/third_party/wiredtiger/src/include/session.h b/src/third_party/wiredtiger/src/include/session.h
index 62d3158e09a..85690b57fbd 100644
--- a/src/third_party/wiredtiger/src/include/session.h
+++ b/src/third_party/wiredtiger/src/include/session.h
@@ -194,21 +194,22 @@ 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_EVICTION 0x00010u
-#define WT_SESSION_IGNORE_CACHE_SIZE 0x00020u
-#define WT_SESSION_IMPORT 0x00040u
-#define WT_SESSION_IMPORT_REPAIR 0x00080u
-#define WT_SESSION_INTERNAL 0x00100u
-#define WT_SESSION_LOGGING_INMEM 0x00200u
-#define WT_SESSION_NO_DATA_HANDLES 0x00400u
-#define WT_SESSION_NO_LOGGING 0x00800u
-#define WT_SESSION_NO_RECONCILE 0x01000u
-#define WT_SESSION_QUIET_CORRUPT_FILE 0x02000u
-#define WT_SESSION_QUIET_TIERED 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
+#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_LOGGING 0x01000u
+#define WT_SESSION_NO_RECONCILE 0x02000u
+#define WT_SESSION_QUIET_CORRUPT_FILE 0x04000u
+#define WT_SESSION_QUIET_TIERED 0x08000u
+#define WT_SESSION_READ_WONT_NEED 0x10000u
+#define WT_SESSION_RESOLVING_TXN 0x20000u
+#define WT_SESSION_ROLLBACK_TO_STABLE 0x40000u
+#define WT_SESSION_SCHEMA_TXN 0x80000u
/* AUTOMATIC FLAG VALUE GENERATION STOP 32 */
uint32_t flags;