mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
InnoDB: fixed bug in dict0dict.c: dict_index_name_print()
innobase/dict/dict0dict.c: dict_index_name_print(): output table name to file, not stderr
This commit is contained in:
parent
72595adab2
commit
6a39732037
1 changed files with 1 additions and 1 deletions
|
@ -4195,5 +4195,5 @@ dict_index_name_print(
|
|||
fputs("index ", file);
|
||||
ut_print_name(file, index->name);
|
||||
fputs(" of table ", file);
|
||||
ut_print_name(stderr, index->table_name);
|
||||
ut_print_name(file, index->table_name);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue