Commit 35d020df authored by marko's avatar marko

branches/zip: row_undo_ins_parse_undo_rec(): Initialize node->update

so that it will not be uninitialized when the undo record is being
processed.
parent 40e01b2f
...@@ -235,6 +235,7 @@ row_undo_ins_parse_undo_rec( ...@@ -235,6 +235,7 @@ row_undo_ins_parse_undo_rec(
ut_ad(type == TRX_UNDO_INSERT_REC); ut_ad(type == TRX_UNDO_INSERT_REC);
node->rec_type = type; node->rec_type = type;
node->update = NULL;
node->table = dict_table_get_on_id(table_id, node->trx); node->table = dict_table_get_on_id(table_id, node->trx);
/* Skip the UNDO if we can't find the table or the .ibd file. */ /* Skip the UNDO if we can't find the table or the .ibd file. */
......
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