From 11d837751b0da2cf7948ee17e2f6438f38c93693 Mon Sep 17 00:00:00 2001 From: Luke Chen Date: Fri, 4 May 2018 13:57:22 +1000 Subject: 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 --- src/third_party/wiredtiger/src/include/cache.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/third_party/wiredtiger/src/include/cache.h') 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 */ -- cgit v1.2.1