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(
ptr, clust_index, &node->ref, node->heap);
} else {
ut_print_timestamp(stderr);
fprintf(stderr, " InnoDB: table %s has no indexes, "
"ignoring the table\n", node->table->name);
fprintf(stderr, " InnoDB: table ");
ut_print_name(stderr, node->trx, TRUE,
node->table->name);
fprintf(stderr, " has no indexes, "
"ignoring the table\n");
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