summaryrefslogtreecommitdiff
path: root/src/meta/meta_table.c
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2015-10-19 16:03:44 -0400
committerKeith Bostic <keith@wiredtiger.com>2015-10-19 16:03:44 -0400
commit166cce8ff43ae184388df9ba437dab0405a7661e (patch)
tree0561d06afd6dc8d3a6d083674db8077e2b91931d /src/meta/meta_table.c
parent7b277f2b902f0117a10bf65dd739ef1b97dd2d3c (diff)
downloadmongo-166cce8ff43ae184388df9ba437dab0405a7661e.tar.gz
WT-2073: "overwrite" is the default, there's no reason to specify it.
Diffstat (limited to 'src/meta/meta_table.c')
-rw-r--r--src/meta/meta_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/meta/meta_table.c b/src/meta/meta_table.c
index 0261c37a94c..f8c45ce2235 100644
--- a/src/meta/meta_table.c
+++ b/src/meta/meta_table.c
@@ -160,7 +160,7 @@ __wt_metadata_update(
if (WT_META_TRACKING(session))
WT_RET(__wt_meta_track_update(session, key));
- WT_RET(__wt_metadata_cursor(session, "overwrite", &cursor));
+ WT_RET(__wt_metadata_cursor(session, NULL, &cursor));
cursor->set_key(cursor, key);
cursor->set_value(cursor, value);
WT_ERR(cursor->insert(cursor));