summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClarisse Cheah <clarisse.cheah@mongodb.com>2022-08-22 05:28:25 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-08-22 05:58:26 +0000
commitc3058c49b899ddafbbe17dff9ab9a64b9346e29f (patch)
treec34bb32a30e8d109764e94d9c7baedf32cd78248
parent20aeaa8ea992c26c764ff4d53a20e879d2a5d7fb (diff)
downloadmongo-c3058c49b899ddafbbe17dff9ab9a64b9346e29f.tar.gz
Import wiredtiger: 7adc445f756f27c8a9f6dc45b490c0679df3c42b from branch mongodb-master
ref: 9db69777a9..7adc445f75 for: 6.1.0-rc0 Increasing the buffer for search near assert due to changes in WT-9474 which increase the stats incremented with prefixed bounds (#8216)
-rw-r--r--src/third_party/wiredtiger/import.data2
-rw-r--r--src/third_party/wiredtiger/test/cppsuite/tests/search_near_01.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/import.data b/src/third_party/wiredtiger/import.data
index 9246aa5ea06..0bbb6256aff 100644
--- a/src/third_party/wiredtiger/import.data
+++ b/src/third_party/wiredtiger/import.data
@@ -2,5 +2,5 @@
"vendor": "wiredtiger",
"github": "wiredtiger/wiredtiger.git",
"branch": "mongodb-master",
- "commit": "9db69777a912a1fbf3fbd08d8e0a4c016fea2bb5"
+ "commit": "7adc445f756f27c8a9f6dc45b490c0679df3c42b"
}
diff --git a/src/third_party/wiredtiger/test/cppsuite/tests/search_near_01.cpp b/src/third_party/wiredtiger/test/cppsuite/tests/search_near_01.cpp
index 0c9988fdbaf..6979619b795 100644
--- a/src/third_party/wiredtiger/test/cppsuite/tests/search_near_01.cpp
+++ b/src/third_party/wiredtiger/test/cppsuite/tests/search_near_01.cpp
@@ -297,7 +297,7 @@ class search_near_01 : public test {
* prefix search nears can traverse and that the prefix fast path has increased by the
* number of threads minus the number of search nears with z key.
*/
- testutil_assert(num_threads * expected_entries + (2 * num_threads) >=
+ testutil_assert(num_threads * expected_entries + (3 * num_threads) >=
entries_stat - prev_entries_stat);
testutil_assert(prefix_stat - prev_prefix_stat == num_threads - z_key_searches);
z_key_searches = 0;