Skip to content
Snippets Groups Projects
Commit 95cd0eb4 authored by Roman Tsisyk's avatar Roman Tsisyk
Browse files

txn_rollback fix

parent 1dc92ffe
No related merge requests found
......@@ -120,7 +120,7 @@ txn_rollback(struct txn *txn)
if (txn->op == 0) /* Nothing to do. */
return;
if (txn->new_tuple && txn->new_tuple->flags & WAL_WAIT) {
space_replace(txn->space, NULL, txn->new_tuple, 0);
space_replace(txn->space, txn->new_tuple, NULL, 0);
}
if (txn->new_tuple)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment