diff options
author | Keith Bostic <keith@wiredtiger.com> | 2014-06-27 09:52:49 -0400 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2014-06-27 09:52:49 -0400 |
commit | 98e9ab0c2538a1033922ae6b2d6749244075ede9 (patch) | |
tree | ee65ab8fe5c6561fb40ca6e118b09fd66a3a3cb0 /src/btree | |
parent | 67bcb0ea902771e8ae3211d1a6f04313555a2e17 (diff) | |
parent | c09aa41d6f10d88991862d88a90fc7aab17abad1 (diff) | |
download | mongo-98e9ab0c2538a1033922ae6b2d6749244075ede9.tar.gz |
Merge branch 'develop' into onpage-cell
Diffstat (limited to 'src/btree')
-rw-r--r-- | src/btree/bt_stat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/btree/bt_stat.c b/src/btree/bt_stat.c index 93793891807..3da0bcf346c 100644 --- a/src/btree/bt_stat.c +++ b/src/btree/bt_stat.c @@ -38,7 +38,7 @@ __wt_btree_stat_init(WT_SESSION_IMPL *session, WT_CURSOR_STAT *cst) WT_STAT_SET(stats, btree_maxleafpage, btree->maxleafpage); /* Everything else is really, really expensive. */ - if (!cst->stat_all) + if (!F_ISSET(cst, WT_CONN_STAT_ALL)) return (0); next_walk = NULL; |