summaryrefslogtreecommitdiff
path: root/innobase/row/row0uins.c
diff options
context:
space:
mode:
Diffstat (limited to 'innobase/row/row0uins.c')
-rw-r--r--innobase/row/row0uins.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/innobase/row/row0uins.c b/innobase/row/row0uins.c
index c9330318ac0..47807877779 100644
--- a/innobase/row/row0uins.c
+++ b/innobase/row/row0uins.c
@@ -242,11 +242,12 @@ row_undo_ins_parse_undo_rec(
dulint table_id;
ulint type;
ulint dummy;
+ ibool dummy_extern;
ut_ad(node && thr);
- ptr = trx_undo_rec_get_pars(node->undo_rec, &type, &dummy, &undo_no,
- &table_id);
+ ptr = trx_undo_rec_get_pars(node->undo_rec, &type, &dummy,
+ &dummy_extern, &undo_no, &table_id);
ut_ad(type == TRX_UNDO_INSERT_REC);
node->rec_type = type;
@@ -284,9 +285,9 @@ row_undo_ins(
row_undo_ins_parse_undo_rec(node, thr);
if (node->table == NULL) {
- found = FALSE;
+ found = FALSE;
} else {
- found = row_undo_search_clust_to_pcur(node, thr);
+ found = row_undo_search_clust_to_pcur(node, thr);
}
if (!found) {