summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/btree/bt_vrfy_dsk.c
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2020-04-16 16:07:04 +1000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-04-16 06:33:38 +0000
commit24dba905c4fb50ff3e7738877a1697db23ff02c9 (patch)
treec39613347f710aa005128369fa4fd6953b76a8f4 /src/third_party/wiredtiger/src/btree/bt_vrfy_dsk.c
parentd0a377ad6012cda8738223026e8197af56e540e0 (diff)
downloadmongo-24dba905c4fb50ff3e7738877a1697db23ff02c9.tar.gz
Import wiredtiger: 9bd1ece7971714f947b47e589b0af5d7ee97a29d from branch mongodb-4.4
ref: da6c25fee0..9bd1ece797 for: 4.4.0-rc2 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/btree/bt_vrfy_dsk.c')
-rw-r--r--src/third_party/wiredtiger/src/btree/bt_vrfy_dsk.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/src/btree/bt_vrfy_dsk.c b/src/third_party/wiredtiger/src/btree/bt_vrfy_dsk.c
index d3ff920c9eb..7b80327a22c 100644
--- a/src/third_party/wiredtiger/src/btree/bt_vrfy_dsk.c
+++ b/src/third_party/wiredtiger/src/btree/bt_vrfy_dsk.c
@@ -308,13 +308,15 @@ __verify_dsk_validity(WT_SESSION_IMPL *session, WT_CELL_UNPACK *unpack, uint32_t
break;
WT_RET(__verify_dsk_ts_addr_cmp(session, cell_num - 1, "start durable",
- unpack->newest_start_durable_ts, "start durable", addr->start_durable_ts, false, tag));
+ unpack->newest_start_durable_ts, "start durable", addr->newest_start_durable_ts, false,
+ tag));
WT_RET(__verify_dsk_ts_addr_cmp(session, cell_num - 1, "oldest start",
unpack->oldest_start_ts, "oldest start", addr->oldest_start_ts, true, tag));
WT_RET(__verify_dsk_txn_addr_cmp(session, cell_num - 1, "oldest start",
unpack->oldest_start_txn, "oldest start", addr->oldest_start_txn, true, tag, dsk));
WT_RET(__verify_dsk_ts_addr_cmp(session, cell_num - 1, "stop durable",
- unpack->newest_stop_durable_ts, "stop durable", addr->stop_durable_ts, false, tag));
+ unpack->newest_stop_durable_ts, "stop durable", addr->newest_stop_durable_ts, false,
+ tag));
WT_RET(__verify_dsk_ts_addr_cmp(session, cell_num - 1, "newest stop",
unpack->newest_stop_ts, "newest stop", addr->newest_stop_ts, false, tag));
WT_RET(__verify_dsk_txn_addr_cmp(session, cell_num - 1, "newest stop",