summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/include/cache.h
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2018-05-04 13:57:22 +1000
committerLuke Chen <luke.chen@mongodb.com>2018-05-04 13:57:22 +1000
commit11d837751b0da2cf7948ee17e2f6438f38c93693 (patch)
tree508b815763591b0d61f457b845a7d49909f1dd8d /src/third_party/wiredtiger/src/include/cache.h
parent381acc4baa6d5f730fb77be5acc39f8473a16b88 (diff)
downloadmongo-11d837751b0da2cf7948ee17e2f6438f38c93693.tar.gz
Import wiredtiger: ba76f72622a52024382effb7296e9f8f5cac224b from branch mongodb-3.8
ref: aa6646fd0a..ba76f72622 for: 3.7.10 WT-4023 Add messages to a few places that return errors WT-4033 Add ability to alter tables without taking exclusive access WT-4058 Make slot switch quicker when I/O is slow WT-4064 Relax checking of lookaside entry count WT-4069 Commit of a truncate can leave a page permanently locked WT-4070 WiredTiger recovery can checkpoint data referencing pieces of a transaction
Diffstat (limited to 'src/third_party/wiredtiger/src/include/cache.h')
-rw-r--r--src/third_party/wiredtiger/src/include/cache.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/third_party/wiredtiger/src/include/cache.h b/src/third_party/wiredtiger/src/include/cache.h
index 5d2d4bbf6cb..1299d3e90e3 100644
--- a/src/third_party/wiredtiger/src/include/cache.h
+++ b/src/third_party/wiredtiger/src/include/cache.h
@@ -200,7 +200,8 @@ struct __wt_cache {
bool las_session_inuse[WT_LAS_NUM_SESSIONS];
uint32_t las_fileid; /* Lookaside table file ID */
- uint64_t las_entry_count; /* Count of entries in lookaside */
+ uint64_t las_insert_count; /* Count of inserts to lookaside */
+ uint64_t las_remove_count; /* Count of removes from lookaside */
uint64_t las_pageid; /* Lookaside table page ID counter */
bool las_reader; /* Indicate an LAS reader to sweep */