summaryrefslogtreecommitdiff
path: root/src/config/config_def.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/config_def.c')
-rw-r--r--src/config/config_def.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/config/config_def.c b/src/config/config_def.c
index 5b6f0bac323..c7bbdf50280 100644
--- a/src/config/config_def.c
+++ b/src/config/config_def.c
@@ -17,6 +17,7 @@ static const WT_CONFIG_CHECK confchk_WT_CONNECTION_close[] = {
static const WT_CONFIG_CHECK confchk_WT_CONNECTION_load_extension[] = {
{ "config", "string", NULL, NULL, NULL, 0 },
+ { "early_load", "boolean", NULL, NULL, NULL, 0 },
{ "entry", "string", NULL, NULL, NULL, 0 },
{ "terminate", "string", NULL, NULL, NULL, 0 },
{ NULL, NULL, NULL, NULL, NULL, 0 }
@@ -304,6 +305,9 @@ static const WT_CONFIG_CHECK confchk_WT_SESSION_join[] = {
NULL, "choices=[\"eq\",\"ge\",\"gt\",\"le\",\"lt\"]",
NULL, 0 },
{ "count", "int", NULL, NULL, NULL, 0 },
+ { "operation", "string",
+ NULL, "choices=[\"and\",\"or\"]",
+ NULL, 0 },
{ "strategy", "string",
NULL, "choices=[\"bloom\",\"default\"]",
NULL, 0 },
@@ -955,9 +959,9 @@ static const WT_CONFIG_ENTRY config_entries[] = {
confchk_WT_CONNECTION_close, 1
},
{ "WT_CONNECTION.load_extension",
- "config=,entry=wiredtiger_extension_init,"
+ "config=,early_load=0,entry=wiredtiger_extension_init,"
"terminate=wiredtiger_extension_terminate",
- confchk_WT_CONNECTION_load_extension, 3
+ confchk_WT_CONNECTION_load_extension, 4
},
{ "WT_CONNECTION.open_session",
"isolation=read-committed",
@@ -979,6 +983,10 @@ static const WT_CONFIG_ENTRY config_entries[] = {
"timestamp=\"%b %d %H:%M:%S\",wait=0),verbose=",
confchk_WT_CONNECTION_reconfigure, 18
},
+ { "WT_CONNECTION.set_file_system",
+ "",
+ NULL, 0
+ },
{ "WT_CURSOR.close",
"",
NULL, 0
@@ -1031,8 +1039,8 @@ static const WT_CONFIG_ENTRY config_entries[] = {
},
{ "WT_SESSION.join",
"bloom_bit_count=16,bloom_hash_count=8,compare=\"eq\",count=,"
- "strategy=",
- confchk_WT_SESSION_join, 5
+ "operation=\"and\",strategy=",
+ confchk_WT_SESSION_join, 6
},
{ "WT_SESSION.log_flush",
"sync=on",