summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2014-12-16 17:03:11 -0500
committerKeith Bostic <keith@wiredtiger.com>2014-12-16 17:03:11 -0500
commit9b7bbd225a0e410b6f1ccdb53f6acbf9ad3c100b (patch)
tree5383e3c9acdfd3cbca4a294aed90498c2f5eaa63 /src
parent9ec5bb2e22894b6696f54c5e28435598842709c6 (diff)
downloadmongo-9b7bbd225a0e410b6f1ccdb53f6acbf9ad3c100b.tar.gz
Don't set the LSM tree collator to "none" if that's what was specified.
Diffstat (limited to 'src')
-rw-r--r--src/lsm/lsm_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lsm/lsm_tree.c b/src/lsm/lsm_tree.c
index e7b1d7f9d2c..2e61bcbacc8 100644
--- a/src/lsm/lsm_tree.c
+++ b/src/lsm/lsm_tree.c
@@ -343,7 +343,7 @@ __wt_lsm_tree_create(WT_SESSION_IMPL *session,
WT_ERR(__wt_strndup(
session, cval.str, cval.len, &lsm_tree->value_format));
- WT_ERR(__wt_config_gets(session, cfg, "collator", &cval));
+ WT_ERR(__wt_config_gets_none(session, cfg, "collator", &cval));
WT_ERR(__wt_strndup(
session, cval.str, cval.len, &lsm_tree->collator_name));