summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/config/config_def.c
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2018-04-06 16:06:32 +1000
committerLuke Chen <luke.chen@mongodb.com>2018-04-06 16:23:17 +1000
commitb180ec4ad34b40b499cb4c7a2f01508ed639b44b (patch)
tree87c8fe8e92a19bb0beb69c1c2696e2b3d98aca07 /src/third_party/wiredtiger/src/config/config_def.c
parentf728898d2be6b231175c9d64b39d0f072f5d8d18 (diff)
downloadmongo-b180ec4ad34b40b499cb4c7a2f01508ed639b44b.tar.gz
Import wiredtiger: ea986ede145b8c2e3da8f8d11ef25813770c0b39 from branch mongodb-3.8
ref: 875e91581c..ea986ede14 for: 3.7.4 WT-3724 Log an error if flushing with F_FULLSYNC fails WT-3849 Add timestamp validation to WT_SESSION::prepare_transaction WT-3870 Bi-weekly WT codebase lint WT-3922 Allow truncate operations to be prepared WT-3931 cursor.prev split race WT-3971 Make cursor duplication use cursor caching WT-3973 Allow alter to modify app_metadata WT-3981 Make snapshot consistent with read_timestamp WT-3984 Fix race conditions around prepare state transitions WT-3996 Test truncate with timestamps and lookaside WT-3997 The cursor walk code can spin without sleeping on restart/split. WT-4002 Allow duplicates in api_data.py WT-4005 AddressSanitizer in __wt_timestamp_iszero(). WT-4007 eviction instantiates pages from dead trees. WT-4008 Add ARM NEON support for row search operations WT-4011 Checkpoint should not read truncated pages WT-4022 Avoid WT_RESTART error return during eviction walk WT-4025 Allow debug dumping of internal pages
Diffstat (limited to 'src/third_party/wiredtiger/src/config/config_def.c')
-rw-r--r--src/third_party/wiredtiger/src/config/config_def.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/third_party/wiredtiger/src/config/config_def.c b/src/third_party/wiredtiger/src/config/config_def.c
index ffcb2139330..bd68a8b0937 100644
--- a/src/third_party/wiredtiger/src/config/config_def.c
+++ b/src/third_party/wiredtiger/src/config/config_def.c
@@ -238,6 +238,7 @@ static const WT_CONFIG_CHECK confchk_WT_SESSION_alter[] = {
{ "access_pattern_hint", "string",
NULL, "choices=[\"none\",\"random\",\"sequential\"]",
NULL, 0 },
+ { "app_metadata", "string", NULL, NULL, NULL, 0 },
{ "assert", "category",
NULL, NULL,
confchk_assert_subconfigs, 2 },
@@ -1274,9 +1275,10 @@ static const WT_CONFIG_ENTRY config_entries[] = {
confchk_WT_CURSOR_reconfigure, 2
},
{ "WT_SESSION.alter",
- "access_pattern_hint=none,assert=(commit_timestamp=none,"
- "read_timestamp=none),cache_resident=false,log=(enabled=true)",
- confchk_WT_SESSION_alter, 4
+ "access_pattern_hint=none,app_metadata=,"
+ "assert=(commit_timestamp=none,read_timestamp=none),"
+ "cache_resident=false,log=(enabled=true)",
+ confchk_WT_SESSION_alter, 5
},
{ "WT_SESSION.begin_transaction",
"ignore_prepare=false,isolation=,name=,priority=0,read_timestamp="