summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/reconcile
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/reconcile')
-rw-r--r--src/third_party/wiredtiger/src/reconcile/rec_visibility.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/third_party/wiredtiger/src/reconcile/rec_visibility.c b/src/third_party/wiredtiger/src/reconcile/rec_visibility.c
index 64ff9d361ae..ba947c13ac4 100644
--- a/src/third_party/wiredtiger/src/reconcile/rec_visibility.c
+++ b/src/third_party/wiredtiger/src/reconcile/rec_visibility.c
@@ -255,20 +255,6 @@ __timestamp_out_of_order_fix(WT_SESSION_IMPL *session, WT_TIME_WINDOW *select_tw
select_tw->start_ts = select_tw->stop_ts;
return (true);
}
-
- /*
- * As per the time window validation the durable_start_ts must not be greater than the stop_ts.
- * Hence, if the stop_ts is less than durable_start_ts and greater than start_ts, make
- * durable_start_ts equal to stop_ts.
- */
- if ((select_tw->start_ts != select_tw->stop_ts) &&
- (select_tw->stop_ts < select_tw->durable_start_ts)) {
- __wt_verbose(session, WT_VERB_TIMESTAMP,
- "Warning: fixing out-of-order timestamps remove earlier than value; time window %s",
- __wt_time_window_to_string(select_tw, time_string));
-
- select_tw->durable_start_ts = select_tw->stop_ts;
- }
return (false);
}