Commit 51239d36 authored by Marko Mäkelä's avatar Marko Mäkelä

row_undo_mod_parse_undo_rec(): Use trx_undo_metadata

parent 1f8d44ed
......@@ -1248,9 +1248,9 @@ row_undo_mod_parse_undo_rec(
ut_ad(clust_index->is_instant());
ut_ad(clust_index->table->instant
|| !(node->update->info_bits & REC_INFO_DELETED_FLAG));
const_cast<dtuple_t*>(node->ref)->info_bits =
node->update->info_bits = (node->update->info_bits
& REC_INFO_DELETED_FLAG)
node->ref = &trx_undo_metadata;
node->update->info_bits = (node->update->info_bits
& REC_INFO_DELETED_FLAG)
? REC_INFO_METADATA_ALTER
: REC_INFO_METADATA_ADD;
}
......
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