summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/include/connection.h
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2019-03-05 13:25:53 +1100
committerLuke Chen <luke.chen@mongodb.com>2019-03-05 13:27:30 +1100
commit70f793946b5e3872d07f73908b2d45a31cce051d (patch)
tree70cd44000deed16e6c4a9179f326dba1c08953be /src/third_party/wiredtiger/src/include/connection.h
parent6f3c3df4fc0abda76fd97e970ced4a01f0c48007 (diff)
downloadmongo-70f793946b5e3872d07f73908b2d45a31cce051d.tar.gz
Import wiredtiger: afdead1093b5c5b41dd54ddddf6f42d92bef1666 from branch mongodb-4.2
ref: 37e1570f82..afdead1093 for: 4.1.9 WT-4413 Add optional compact progress messages WT-4465 Add documentation for a dhandle's lifecycle WT-4514 Implement assert=durable_timestamp WT-4517 Change WT data format to avoid writing stable timestamps WT-4537 Fix WiredTiger cursor prev/next traversal failure on prepare retry WT-4554 Enhance WT salvage to handle the case of corrupted WiredTiger.turtle WT-4556 workgen: add synchronization points during run time WT-4558 WiredTiger connection statistics cursor incorrectly provides doubled-up values WT-4568 Operation tracking visualization incorrectly displays call stacks WT-4573 Reducing calls to __wt_epoch from session reset WT-4587 Parallelize the script that parses operation tracking files WT-4595 Coverity "null pointer dereference" complaints WT-4596 Simplify wt utility's session/connection handling WT-4599 Show latency threshold violations in operation visualizations WT-4605 workgen: read_write_storms.py needs a public domain notice WT-4606 workgen: remove lsm from the default table type in wtperf emulation WT-4613 Skip the wt4333_handle_locks test on OS X WT-4615 Sync backup file before returning backup cursor WT-4617 Cursor next/prev returns PREPARE_CONFLICT only once
Diffstat (limited to 'src/third_party/wiredtiger/src/include/connection.h')
-rw-r--r--src/third_party/wiredtiger/src/include/connection.h59
1 files changed, 30 insertions, 29 deletions
diff --git a/src/third_party/wiredtiger/src/include/connection.h b/src/third_party/wiredtiger/src/include/connection.h
index 280d7e32f7d..b6100ae134d 100644
--- a/src/third_party/wiredtiger/src/include/connection.h
+++ b/src/third_party/wiredtiger/src/include/connection.h
@@ -425,35 +425,36 @@ struct __wt_connection_impl {
#define WT_VERB_CHECKPOINT 0x000000004u
#define WT_VERB_CHECKPOINT_PROGRESS 0x000000008u
#define WT_VERB_COMPACT 0x000000010u
-#define WT_VERB_ERROR_RETURNS 0x000000020u
-#define WT_VERB_EVICT 0x000000040u
-#define WT_VERB_EVICTSERVER 0x000000080u
-#define WT_VERB_EVICT_STUCK 0x000000100u
-#define WT_VERB_FILEOPS 0x000000200u
-#define WT_VERB_HANDLEOPS 0x000000400u
-#define WT_VERB_LOG 0x000000800u
-#define WT_VERB_LOOKASIDE 0x000001000u
-#define WT_VERB_LOOKASIDE_ACTIVITY 0x000002000u
-#define WT_VERB_LSM 0x000004000u
-#define WT_VERB_LSM_MANAGER 0x000008000u
-#define WT_VERB_METADATA 0x000010000u
-#define WT_VERB_MUTEX 0x000020000u
-#define WT_VERB_OVERFLOW 0x000040000u
-#define WT_VERB_READ 0x000080000u
-#define WT_VERB_REBALANCE 0x000100000u
-#define WT_VERB_RECONCILE 0x000200000u
-#define WT_VERB_RECOVERY 0x000400000u
-#define WT_VERB_RECOVERY_PROGRESS 0x000800000u
-#define WT_VERB_SALVAGE 0x001000000u
-#define WT_VERB_SHARED_CACHE 0x002000000u
-#define WT_VERB_SPLIT 0x004000000u
-#define WT_VERB_TEMPORARY 0x008000000u
-#define WT_VERB_THREAD_GROUP 0x010000000u
-#define WT_VERB_TIMESTAMP 0x020000000u
-#define WT_VERB_TRANSACTION 0x040000000u
-#define WT_VERB_VERIFY 0x080000000u
-#define WT_VERB_VERSION 0x100000000u
-#define WT_VERB_WRITE 0x200000000u
+#define WT_VERB_COMPACT_PROGRESS 0x000000020u
+#define WT_VERB_ERROR_RETURNS 0x000000040u
+#define WT_VERB_EVICT 0x000000080u
+#define WT_VERB_EVICTSERVER 0x000000100u
+#define WT_VERB_EVICT_STUCK 0x000000200u
+#define WT_VERB_FILEOPS 0x000000400u
+#define WT_VERB_HANDLEOPS 0x000000800u
+#define WT_VERB_LOG 0x000001000u
+#define WT_VERB_LOOKASIDE 0x000002000u
+#define WT_VERB_LOOKASIDE_ACTIVITY 0x000004000u
+#define WT_VERB_LSM 0x000008000u
+#define WT_VERB_LSM_MANAGER 0x000010000u
+#define WT_VERB_METADATA 0x000020000u
+#define WT_VERB_MUTEX 0x000040000u
+#define WT_VERB_OVERFLOW 0x000080000u
+#define WT_VERB_READ 0x000100000u
+#define WT_VERB_REBALANCE 0x000200000u
+#define WT_VERB_RECONCILE 0x000400000u
+#define WT_VERB_RECOVERY 0x000800000u
+#define WT_VERB_RECOVERY_PROGRESS 0x001000000u
+#define WT_VERB_SALVAGE 0x002000000u
+#define WT_VERB_SHARED_CACHE 0x004000000u
+#define WT_VERB_SPLIT 0x008000000u
+#define WT_VERB_TEMPORARY 0x010000000u
+#define WT_VERB_THREAD_GROUP 0x020000000u
+#define WT_VERB_TIMESTAMP 0x040000000u
+#define WT_VERB_TRANSACTION 0x080000000u
+#define WT_VERB_VERIFY 0x100000000u
+#define WT_VERB_VERSION 0x200000000u
+#define WT_VERB_WRITE 0x400000000u
/* AUTOMATIC FLAG VALUE GENERATION STOP */
uint64_t verbose;