summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gorrod <alexg@wiredtiger.com>2015-03-06 06:44:49 +0000
committerAlex Gorrod <alexg@wiredtiger.com>2015-03-06 06:44:49 +0000
commit248d88e0c57b778f99ab1d1f767519d8eb261e9e (patch)
tree22c437eea2acfa52ee4eebd477d05385709c80b9
parentb0ad103d2aca72a0b65b4582ff4c4fb65ab4c3c2 (diff)
downloadmongo-248d88e0c57b778f99ab1d1f767519d8eb261e9e.tar.gz
Don't mark bulk loadable trees as dirty on open.
Causes a failure where checkpoint will reconcile the "magic" page we create for bulk trees.
-rw-r--r--src/btree/bt_handle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/btree/bt_handle.c b/src/btree/bt_handle.c
index a731c1dc505..5b3624a4a2d 100644
--- a/src/btree/bt_handle.c
+++ b/src/btree/bt_handle.c
@@ -464,7 +464,7 @@ __btree_tree_open_empty(WT_SESSION_IMPL *session, int creation)
ref->page = leaf;
ref->state = WT_REF_MEM;
WT_ERR(__wt_page_modify_init(session, leaf));
- __wt_page_modify_set(session, leaf);
+ __wt_page_only_modify_set(session, leaf);
}
/* Finish initializing the root, root reference links. */