summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/block/block_open.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/block/block_open.c')
-rw-r--r--src/third_party/wiredtiger/src/block/block_open.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/third_party/wiredtiger/src/block/block_open.c b/src/third_party/wiredtiger/src/block/block_open.c
index 1f33e1092c7..638796e4459 100644
--- a/src/third_party/wiredtiger/src/block/block_open.c
+++ b/src/third_party/wiredtiger/src/block/block_open.c
@@ -334,12 +334,7 @@ __desc_read(WT_SESSION_IMPL *session, uint32_t allocsize, WT_BLOCK *block)
* to be returning across the API boundary.
*/
if (block->size < allocsize) {
- /*
- * We use the "ignore history store tombstone" flag as of verify so we need to check that
- * we're not performing a verify.
- */
- if (F_ISSET(session, WT_SESSION_ROLLBACK_TO_STABLE_FLAGS) &&
- !F_ISSET(S2BT(session), WT_BTREE_VERIFY))
+ if (F_ISSET(session, WT_SESSION_ROLLBACK_TO_STABLE))
ret = ENOENT;
else {
ret = WT_ERROR;