Commit 69644cb0 authored by Rich Prohaska's avatar Rich Prohaska

#212 simple garbage collection does not simplify committed deletes in all cases

parent eb500b8c
......@@ -336,7 +336,7 @@ ule_simple_garbage_collection(ULE ule, txn_gc_info *gc_info) {
// uxr with a txnid that is less than oldest_referenced_xid
for (uint32_t i = 0; i < ule->num_cuxrs; i++) {
curr_index = ule->num_cuxrs - i - 1;
if (ule->uxrs[curr_index].xid < gc_info->oldest_referenced_xid_for_simple_gc) {
if (ule->uxrs[curr_index].xid <= gc_info->oldest_referenced_xid_for_simple_gc) {
break;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment