summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/config/config_def.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/config/config_def.c')
-rw-r--r--src/third_party/wiredtiger/src/config/config_def.c39
1 files changed, 22 insertions, 17 deletions
diff --git a/src/third_party/wiredtiger/src/config/config_def.c b/src/third_party/wiredtiger/src/config/config_def.c
index 9d12e953498..879de670695 100644
--- a/src/third_party/wiredtiger/src/config/config_def.c
+++ b/src/third_party/wiredtiger/src/config/config_def.c
@@ -151,9 +151,9 @@ static const WT_CONFIG_CHECK confchk_WT_CONNECTION_reconfigure[] = {
NULL, "choices=[\"api\",\"block\",\"checkpoint\",\"compact\","
"\"evict\",\"evictserver\",\"fileops\",\"log\",\"lsm\","
"\"lsm_manager\",\"metadata\",\"mutex\",\"overflow\",\"read\","
- "\"reconcile\",\"recovery\",\"salvage\",\"shared_cache\","
- "\"split\",\"temporary\",\"transaction\",\"verify\",\"version\","
- "\"write\"]",
+ "\"rebalance\",\"reconcile\",\"recovery\",\"salvage\","
+ "\"shared_cache\",\"split\",\"temporary\",\"transaction\","
+ "\"verify\",\"version\",\"write\"]",
NULL, 0 },
{ NULL, NULL, NULL, NULL, NULL, 0 }
};
@@ -291,6 +291,7 @@ static const WT_CONFIG_CHECK confchk_WT_SESSION_create[] = {
static const WT_CONFIG_CHECK confchk_WT_SESSION_drop[] = {
{ "force", "boolean", NULL, NULL, NULL, 0 },
+ { "lock_wait", "boolean", NULL, NULL, NULL, 0 },
{ "remove_files", "boolean", NULL, NULL, NULL, 0 },
{ NULL, NULL, NULL, NULL, NULL, 0 }
};
@@ -563,9 +564,9 @@ static const WT_CONFIG_CHECK confchk_wiredtiger_open[] = {
NULL, "choices=[\"api\",\"block\",\"checkpoint\",\"compact\","
"\"evict\",\"evictserver\",\"fileops\",\"log\",\"lsm\","
"\"lsm_manager\",\"metadata\",\"mutex\",\"overflow\",\"read\","
- "\"reconcile\",\"recovery\",\"salvage\",\"shared_cache\","
- "\"split\",\"temporary\",\"transaction\",\"verify\",\"version\","
- "\"write\"]",
+ "\"rebalance\",\"reconcile\",\"recovery\",\"salvage\","
+ "\"shared_cache\",\"split\",\"temporary\",\"transaction\","
+ "\"verify\",\"version\",\"write\"]",
NULL, 0 },
{ "write_through", "list",
NULL, "choices=[\"data\",\"log\"]",
@@ -643,9 +644,9 @@ static const WT_CONFIG_CHECK confchk_wiredtiger_open_all[] = {
NULL, "choices=[\"api\",\"block\",\"checkpoint\",\"compact\","
"\"evict\",\"evictserver\",\"fileops\",\"log\",\"lsm\","
"\"lsm_manager\",\"metadata\",\"mutex\",\"overflow\",\"read\","
- "\"reconcile\",\"recovery\",\"salvage\",\"shared_cache\","
- "\"split\",\"temporary\",\"transaction\",\"verify\",\"version\","
- "\"write\"]",
+ "\"rebalance\",\"reconcile\",\"recovery\",\"salvage\","
+ "\"shared_cache\",\"split\",\"temporary\",\"transaction\","
+ "\"verify\",\"version\",\"write\"]",
NULL, 0 },
{ "version", "string", NULL, NULL, NULL, 0 },
{ "write_through", "list",
@@ -718,9 +719,9 @@ static const WT_CONFIG_CHECK confchk_wiredtiger_open_basecfg[] = {
NULL, "choices=[\"api\",\"block\",\"checkpoint\",\"compact\","
"\"evict\",\"evictserver\",\"fileops\",\"log\",\"lsm\","
"\"lsm_manager\",\"metadata\",\"mutex\",\"overflow\",\"read\","
- "\"reconcile\",\"recovery\",\"salvage\",\"shared_cache\","
- "\"split\",\"temporary\",\"transaction\",\"verify\",\"version\","
- "\"write\"]",
+ "\"rebalance\",\"reconcile\",\"recovery\",\"salvage\","
+ "\"shared_cache\",\"split\",\"temporary\",\"transaction\","
+ "\"verify\",\"version\",\"write\"]",
NULL, 0 },
{ "version", "string", NULL, NULL, NULL, 0 },
{ "write_through", "list",
@@ -793,9 +794,9 @@ static const WT_CONFIG_CHECK confchk_wiredtiger_open_usercfg[] = {
NULL, "choices=[\"api\",\"block\",\"checkpoint\",\"compact\","
"\"evict\",\"evictserver\",\"fileops\",\"log\",\"lsm\","
"\"lsm_manager\",\"metadata\",\"mutex\",\"overflow\",\"read\","
- "\"reconcile\",\"recovery\",\"salvage\",\"shared_cache\","
- "\"split\",\"temporary\",\"transaction\",\"verify\",\"version\","
- "\"write\"]",
+ "\"rebalance\",\"reconcile\",\"recovery\",\"salvage\","
+ "\"shared_cache\",\"split\",\"temporary\",\"transaction\","
+ "\"verify\",\"version\",\"write\"]",
NULL, 0 },
{ "write_through", "list",
NULL, "choices=[\"data\",\"log\"]",
@@ -904,8 +905,8 @@ static const WT_CONFIG_ENTRY config_entries[] = {
confchk_WT_SESSION_create, 40
},
{ "WT_SESSION.drop",
- "force=0,remove_files=",
- confchk_WT_SESSION_drop, 2
+ "force=0,lock_wait=,remove_files=",
+ confchk_WT_SESSION_drop, 3
},
{ "WT_SESSION.join",
"bloom_bit_count=16,bloom_hash_count=8,compare=\"eq\",count=,"
@@ -926,6 +927,10 @@ static const WT_CONFIG_ENTRY config_entries[] = {
"skip_sort_check=0,statistics=,target=",
confchk_WT_SESSION_open_cursor, 12
},
+ { "WT_SESSION.rebalance",
+ "",
+ NULL, 0
+ },
{ "WT_SESSION.reconfigure",
"isolation=read-committed",
confchk_WT_SESSION_reconfigure, 1