diff options
Diffstat (limited to 'src/config/config_def.c')
-rw-r--r-- | src/config/config_def.c | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/src/config/config_def.c b/src/config/config_def.c index 845b4e65825..4365b37e1fd 100644 --- a/src/config/config_def.c +++ b/src/config/config_def.c @@ -228,6 +228,7 @@ static const WT_CONFIG_CHECK confchk_WT_SESSION_create[] = { NULL, "min=512B,max=512MB", NULL, 0 }, { "leaf_value_max", "int", NULL, "min=0", NULL, 0 }, + { "logging", "boolean", NULL, NULL, NULL, 0 }, { "lsm", "category", NULL, NULL, confchk_WT_SESSION_create_lsm_subconfigs, 11 }, @@ -344,6 +345,7 @@ static const WT_CONFIG_CHECK confchk_file_meta[] = { NULL, "min=512B,max=512MB", NULL, 0 }, { "leaf_value_max", "int", NULL, "min=0", NULL, 0 }, + { "logging", "boolean", NULL, NULL, NULL, 0 }, { "memory_page_max", "int", NULL, "min=512B,max=10TB", NULL, 0 }, @@ -786,14 +788,14 @@ static const WT_CONFIG_ENTRY config_entries[] = { "huffman_value=,immutable=0,internal_item_max=0," "internal_key_max=0,internal_key_truncate=,internal_page_max=4KB," "key_format=u,key_gap=10,leaf_item_max=0,leaf_key_max=0," - "leaf_page_max=32KB,leaf_value_max=0,lsm=(auto_throttle=,bloom=," - "bloom_bit_count=16,bloom_config=,bloom_hash_count=8," + "leaf_page_max=32KB,leaf_value_max=0,logging=,lsm=(auto_throttle=" + ",bloom=,bloom_bit_count=16,bloom_config=,bloom_hash_count=8," "bloom_oldest=0,chunk_count_limit=0,chunk_max=5GB,chunk_size=10MB" ",merge_max=15,merge_min=0),memory_page_max=5MB," "os_cache_dirty_max=0,os_cache_max=0,prefix_compression=0," "prefix_compression_min=4,source=,split_deepen_min_child=0," "split_deepen_per_child=0,split_pct=75,type=file,value_format=u", - confchk_WT_SESSION_create, 39 + confchk_WT_SESSION_create, 40 }, { "WT_SESSION.drop", "force=0,remove_files=", @@ -853,11 +855,12 @@ static const WT_CONFIG_ENTRY config_entries[] = { "huffman_value=,id=,internal_item_max=0,internal_key_max=0," "internal_key_truncate=,internal_page_max=4KB,key_format=u," "key_gap=10,leaf_item_max=0,leaf_key_max=0,leaf_page_max=32KB," - "leaf_value_max=0,memory_page_max=5MB,os_cache_dirty_max=0," - "os_cache_max=0,prefix_compression=0,prefix_compression_min=4," - "split_deepen_min_child=0,split_deepen_per_child=0,split_pct=75," - "value_format=u,version=(major=0,minor=0)", - confchk_file_meta, 36 + "leaf_value_max=0,logging=,memory_page_max=5MB," + "os_cache_dirty_max=0,os_cache_max=0,prefix_compression=0," + "prefix_compression_min=4,split_deepen_min_child=0," + "split_deepen_per_child=0,split_pct=75,value_format=u," + "version=(major=0,minor=0)", + confchk_file_meta, 37 }, { "index.meta", "app_metadata=,collator=,columns=,extractor=,immutable=0," |