Commit 8ac83c39 authored by vasil's avatar vasil

branches/zip:

Print the table name via ut_print_name() and add two spaces before InnoDB.

Suggested by:	Marko
parent a0dd0c79
...@@ -260,8 +260,12 @@ row_undo_ins_parse_undo_rec( ...@@ -260,8 +260,12 @@ row_undo_ins_parse_undo_rec(
ptr, clust_index, &node->ref, node->heap); ptr, clust_index, &node->ref, node->heap);
} else { } else {
ut_print_timestamp(stderr); ut_print_timestamp(stderr);
fprintf(stderr, " InnoDB: table %s has no indexes, " fprintf(stderr, " InnoDB: table ");
"ignoring the table\n", node->table->name); ut_print_name(stderr, node->trx, TRUE,
node->table->name);
fprintf(stderr, " has no indexes, "
"ignoring the table\n");
node->table = NULL; node->table = NULL;
} }
} }
......
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