summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/btree/bt_ovfl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/btree/bt_ovfl.c')
-rw-r--r--src/third_party/wiredtiger/src/btree/bt_ovfl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/third_party/wiredtiger/src/btree/bt_ovfl.c b/src/third_party/wiredtiger/src/btree/bt_ovfl.c
index feb78df75e2..29ea561db3a 100644
--- a/src/third_party/wiredtiger/src/btree/bt_ovfl.c
+++ b/src/third_party/wiredtiger/src/btree/bt_ovfl.c
@@ -33,8 +33,8 @@ __ovfl_read(WT_SESSION_IMPL *session,
store->data = WT_PAGE_HEADER_BYTE(btree, dsk);
store->size = dsk->u.datalen;
- WT_STAT_FAST_CONN_INCR(session, cache_read_overflow);
- WT_STAT_FAST_DATA_INCR(session, cache_read_overflow);
+ WT_STAT_CONN_INCR(session, cache_read_overflow);
+ WT_STAT_DATA_INCR(session, cache_read_overflow);
return (0);
}
@@ -209,8 +209,8 @@ __wt_ovfl_cache(WT_SESSION_IMPL *session,
*/
if (!visible) {
WT_RET(__ovfl_cache(session, page, vpack));
- WT_STAT_FAST_CONN_INCR(session, cache_overflow_value);
- WT_STAT_FAST_DATA_INCR(session, cache_overflow_value);
+ WT_STAT_CONN_INCR(session, cache_overflow_value);
+ WT_STAT_DATA_INCR(session, cache_overflow_value);
}
/*