summaryrefslogtreecommitdiff
path: root/src/cursor/cur_bulk.c
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2012-06-19 18:42:53 +0000
committerKeith Bostic <keith@wiredtiger.com>2012-06-19 18:42:53 +0000
commitbf93b477e45ae533e39e0edaed32bfef1431a293 (patch)
treeee0e5dbb03896ab8ff7c3919a4dda9ed403db10c /src/cursor/cur_bulk.c
parent55f9b3f4376041552b525aca994df4a9dcd59b49 (diff)
downloadmongo-bf93b477e45ae533e39e0edaed32bfef1431a293.tar.gz
Add WT_CONNECTION::config and WT_CURSOR::config methods.
WT_CONNECTION::config supports the cache_size, error_prefix, eviction_target, eviction_trigger, and verbose strings. WT_CURSOR::config supports the append and overwrite strings.
Diffstat (limited to 'src/cursor/cur_bulk.c')
-rw-r--r--src/cursor/cur_bulk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cursor/cur_bulk.c b/src/cursor/cur_bulk.c
index c68417a18c1..c8741ee7758 100644
--- a/src/cursor/cur_bulk.c
+++ b/src/cursor/cur_bulk.c
@@ -21,7 +21,7 @@ __curbulk_insert(WT_CURSOR *cursor)
cbulk = (WT_CURSOR_BULK *)cursor;
btree = cbulk->cbt.btree;
- CURSOR_API_CALL(cursor, session, insert, btree);
+ CURSOR_API_CALL_NOCONF(cursor, session, insert, btree);
if (btree->type == BTREE_ROW)
WT_CURSOR_NEEDKEY(cursor);
WT_CURSOR_NEEDVALUE(cursor);
@@ -46,7 +46,7 @@ __curbulk_close(WT_CURSOR *cursor)
cbulk = (WT_CURSOR_BULK *)cursor;
btree = cbulk->cbt.btree;
- CURSOR_API_CALL(cursor, session, close, btree);
+ CURSOR_API_CALL_NOCONF(cursor, session, close, btree);
WT_TRET(__wt_bulk_end(cbulk));
if (session->btree != NULL)
WT_TRET(__wt_session_release_btree(session));