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:
unknown 2004-05-13 15:51:02 +03:00
parent 72595adab2
commit 6a39732037

View file

@ -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);
}