summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/conn/conn_api.c
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2020-11-20 16:13:15 +1100
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-11-20 05:25:39 +0000
commit22408d33e3399497b4e77fee03d70ddd45e507a1 (patch)
tree3bb7c00051c340eb02408b84688122c70ebb2985 /src/third_party/wiredtiger/src/conn/conn_api.c
parenta83fbb793214c5a5feca171b58a1ebd21eda0e26 (diff)
downloadmongo-22408d33e3399497b4e77fee03d70ddd45e507a1.tar.gz
Import wiredtiger: 1ba1d9bab805851532495a05f4e2421c8cf30a61 from branch mongodb-4.4
ref: d6d4b1cc01..1ba1d9bab8 for: 4.4.3 WT-4780 Enable assertion that commit timestamp is newer than all readers WT-6449 Hang analyzer for WT Evergreen tests WT-6678 Remove Huffman Encoding support for Keys WT-6693 Add compatibility testing for imported objects WT-6706 Add table import repair functionality WT-6713 Remove transaction support from custom data sources WT-6722 Review function names in history store module WT-6750 Assert to ensure no duplicate entries in the history store WT-6751 Assert if new value is the same as old value for a history store update WT-6752 Assert history store will not have any uncommitted updates WT-6753 Assert only stop time pair of history store update can be modified. WT-6816 Design write gen scheme to allow dhandles with active history to get closed/re-opened WT-6824 Fix OSX python test errors related to UTF encoding WT-6828 Fix doc link in README WT-6830 Encode bytes before concatenating with string WT-6835 Add API to allow consolidating incremental backup info WT-6836 Handle the last key in the shadow table being removed by rollback to stable in timestamp abort WT-6839 Add API to query existing incremental backup IDs WT-6842 Add example showing using src_id only WT-6844 Make force stop durable WT-6857 Define a new cursor for the history store access. WT-6858 Implement insert method for the history store cursor WT-6860 Add relevant history store statistics to data handles WT-6867 Documentation: create model subpages for architecture guide WT-6869 Assert tree walk never return the start ref WT-6870 Rename history store statistic to better describe its use case. WT-6872 Replace the yield instructions with an ISB WT-6875 Remove legacy import invocation WT-6882 Files created during incremental backup should be copied in full WT-6883 Redo change for breaking up backup ranges and fix for EOF WT-6916 Create stub subpages for architecture guide WT-6922 Add random consolidate testing to incr_backup WT-6925 Fix incorrect comment
Diffstat (limited to 'src/third_party/wiredtiger/src/conn/conn_api.c')
-rw-r--r--src/third_party/wiredtiger/src/conn/conn_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/third_party/wiredtiger/src/conn/conn_api.c b/src/third_party/wiredtiger/src/conn/conn_api.c
index bc2ad006ab6..9b5e2394b61 100644
--- a/src/third_party/wiredtiger/src/conn/conn_api.c
+++ b/src/third_party/wiredtiger/src/conn/conn_api.c
@@ -2762,7 +2762,7 @@ wiredtiger_open(const char *home, WT_EVENT_HANDLER *event_handler, const char *c
*/
if (verify_meta) {
WT_ERR(__wt_open_internal_session(conn, "verify hs", false, 0, &verify_session));
- ret = __wt_history_store_verify(verify_session);
+ ret = __wt_hs_verify(verify_session);
WT_TRET(__wt_session_close_internal(verify_session));
WT_ERR(ret);
}