Commit 6a397320 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 72595ada
......@@ -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);
}
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