summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/meta/meta_turtle.c
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2020-04-16 15:41:01 +1000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-04-16 05:58:39 +0000
commit946b8622fa3c8eed29fa9952f50b35d0f701cb37 (patch)
treec236294e11d666c45672ade80db14db4fc663886 /src/third_party/wiredtiger/src/meta/meta_turtle.c
parent0793797e87ea2c9c6e0a92f5fd704da15ffc0e51 (diff)
downloadmongo-946b8622fa3c8eed29fa9952f50b35d0f701cb37.tar.gz
Import wiredtiger: 9bd1ece7971714f947b47e589b0af5d7ee97a29d from branch mongodb-4.4
ref: da6c25fee0..9bd1ece797 for: 4.5.1 WT-5671 Prepare support with durable history: implement changes to prepare and commit/abort WT-5675 Prepare support with durable history: workgen changes WT-5765 Add an error return macro that skips codes but doesn't clear them WT-5825 Reduce the number of runs for checkpoint-stress-test WT-5982 Remove redundant fields used earlier for HS inserts WT-5989 Support arguments in workgen WT-5997 Disable mongodb-4.4 branch for release compatibility testing WT-5999 Update format so it's possible for it to restart on an existing database WT-6003 Remove duplicate open_cursor call WT-6007 Fix an assert for fixed length column store WT-6008 Turn off format stress testing for column-store
Diffstat (limited to 'src/third_party/wiredtiger/src/meta/meta_turtle.c')
-rw-r--r--src/third_party/wiredtiger/src/meta/meta_turtle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/third_party/wiredtiger/src/meta/meta_turtle.c b/src/third_party/wiredtiger/src/meta/meta_turtle.c
index 6b673a658e7..9a237065ba8 100644
--- a/src/third_party/wiredtiger/src/meta/meta_turtle.c
+++ b/src/third_party/wiredtiger/src/meta/meta_turtle.c
@@ -131,7 +131,7 @@ __metadata_load_bulk(WT_SESSION_IMPL *session)
WT_ERR(__wt_direct_io_size_check(session, filecfg, "allocation_size", &allocsize));
WT_ERR(__wt_block_manager_create(session, key, allocsize));
}
- WT_ERR_NOTFOUND_OK(ret);
+ WT_ERR_NOTFOUND_OK(ret, false);
err:
WT_TRET(__wt_metadata_cursor_release(session, &cursor));