diff options
author | Keith Bostic <keith.bostic@wiredtiger.com> | 2011-12-28 19:44:41 +0000 |
---|---|---|
committer | Keith Bostic <keith.bostic@wiredtiger.com> | 2011-12-28 19:44:41 +0000 |
commit | 9a24a9608d115cd5ae8706af1bbf2a41db82a509 (patch) | |
tree | 2c459ec671385084e3b12790edfe526c4d01c79a /src/btree/bt_stat.c | |
parent | ba28e8f3513be24b4c82f7101aac99d7dca23f51 (diff) | |
download | mongo-9a24a9608d115cd5ae8706af1bbf2a41db82a509.tar.gz |
Minor shuffling between the block-manager and the engine.
Diffstat (limited to 'src/btree/bt_stat.c')
-rw-r--r-- | src/btree/bt_stat.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/btree/bt_stat.c b/src/btree/bt_stat.c index 8f7a7257c55..ac3b2505e05 100644 --- a/src/btree/bt_stat.c +++ b/src/btree/bt_stat.c @@ -32,9 +32,6 @@ __wt_btree_stat_init(WT_SESSION_IMPL *session) WT_BSTAT_SET(session, file_maxintlitem, btree->maxintlitem); WT_BSTAT_SET(session, file_maxleafpage, btree->maxleafpage); WT_BSTAT_SET(session, file_maxleafitem, btree->maxleafitem); - WT_BSTAT_SET(session, file_magic, WT_BTREE_MAGIC); - WT_BSTAT_SET(session, file_major, WT_BTREE_MAJOR_VERSION); - WT_BSTAT_SET(session, file_minor, WT_BTREE_MINOR_VERSION); page = NULL; while ((ret = __wt_tree_np(session, &page, 0, 1)) == 0 && page != NULL) |