mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
branches/zip:
Print the table name via ut_print_name() and add two spaces before InnoDB. Suggested by: Marko
This commit is contained in:
parent
a0dd0c794e
commit
8ac83c39b3
1 changed files with 6 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue