Commit 7aa4652d authored by unknown's avatar unknown

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
parent 1fbd375c
...@@ -4195,5 +4195,5 @@ dict_index_name_print( ...@@ -4195,5 +4195,5 @@ dict_index_name_print(
fputs("index ", file); fputs("index ", file);
ut_print_name(file, index->name); ut_print_name(file, index->name);
fputs(" of table ", file); fputs(" of table ", file);
ut_print_name(stderr, index->table_name); ut_print_name(file, index->table_name);
} }
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