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.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/config/config_def.c b/src/config/config_def.c
index 65955240847..83d9401fd5c 100644
--- a/src/config/config_def.c
+++ b/src/config/config_def.c
@@ -142,7 +142,9 @@ static const WT_CONFIG_CHECK confchk_file_meta[] = {
{ "block_allocation", "string",
NULL, "choices=[\"first\",\"best\"]",
NULL },
- { "block_compressor", "string", NULL, NULL, NULL },
+ { "block_compressor", "string",
+ __wt_compressor_confchk, NULL,
+ NULL },
{ "cache_resident", "boolean", NULL, NULL, NULL },
{ "checkpoint", "string", NULL, NULL, NULL },
{ "checkpoint_lsn", "string", NULL, NULL, NULL },
@@ -242,7 +244,9 @@ static const WT_CONFIG_CHECK confchk_session_create[] = {
{ "block_allocation", "string",
NULL, "choices=[\"first\",\"best\"]",
NULL },
- { "block_compressor", "string", NULL, NULL, NULL },
+ { "block_compressor", "string",
+ __wt_compressor_confchk, NULL,
+ NULL },
{ "cache_resident", "boolean", NULL, NULL, NULL },
{ "checksum", "string",
NULL, "choices=[\"on\",\"off\",\"uncompressed\"]",