Skip to content

Commit

Permalink
Import wiredtiger: 5c5f4fad24bbb6a3b0d94dd64fd063644cda69a1 from bran…
Browse files Browse the repository at this point in the history
…ch mongodb-master

ref: 7991477ad9..5c5f4fad24
for: 8.0.0-rc0

WT-12364 Replaced WT_ASSERT() calls in Catch2-based unit test code with REQUIRE()

GitOrigin-RevId: 63b5c97db3c5a73ba62a16046d221e760be4d21d
  • Loading branch information
etienneptl authored and MongoDB Bot committed Feb 4, 2024
1 parent cd7c008 commit 688efa7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/third_party/wiredtiger/import.data
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"vendor": "wiredtiger",
"github": "wiredtiger/wiredtiger.git",
"branch": "mongodb-master",
"commit": "7991477ad97cf3dc7962f7740600570ed4228139"
"commit": "5c5f4fad24bbb6a3b0d94dd64fd063644cda69a1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ init_key(WT_SESSION_IMPL *session, WT_ITEM *key, std::string key_str)
WT_DECL_RET;

ret = __wt_buf_init(session, key, key_str.size());
WT_ASSERT(session, ret == 0);
REQUIRE(ret == 0);
ret = __wt_buf_set(session, key, key_str.c_str(), key_str.size());
WT_ASSERT(session, ret == 0);
REQUIRE(ret == 0);
}

/* Generate random keys. */
Expand Down

0 comments on commit 688efa7

Please sign in to comment.