Commit 4f496e64 authored by marko's avatar marko

branches/zip: row_prebuilt_free(), row_drop_tables_for_mysql_in_background():

Fix some printouts.
parent 7f46c9bb
...@@ -752,6 +752,7 @@ row_prebuilt_free( ...@@ -752,6 +752,7 @@ row_prebuilt_free(
ut_a(*prebuilt->table->name == TEMP_TABLE_PREFIX); ut_a(*prebuilt->table->name == TEMP_TABLE_PREFIX);
if (!row_add_table_to_background_drop_list(prebuilt->table)) { if (!row_add_table_to_background_drop_list(prebuilt->table)) {
ut_print_timestamp(stderr);
fputs(" InnoDB: Error: failed trying to add ", fputs(" InnoDB: Error: failed trying to add ",
stderr); stderr);
ut_print_name(stderr, NULL, TRUE, ut_print_name(stderr, NULL, TRUE,
...@@ -2417,9 +2418,9 @@ row_drop_tables_for_mysql_in_background(void) ...@@ -2417,9 +2418,9 @@ row_drop_tables_for_mysql_in_background(void)
UT_LIST_REMOVE(row_mysql_drop_list, row_mysql_drop_list, drop); UT_LIST_REMOVE(row_mysql_drop_list, row_mysql_drop_list, drop);
ut_print_timestamp(stderr); ut_print_timestamp(stderr);
fprintf(stderr, fputs(" InnoDB: Dropped table ", stderr);
" InnoDB: Dropped table %s in background drop queue.\n", ut_print_name(stderr, NULL, TRUE, drop->table_name);
drop->table_name); fputs(" in background drop queue.\n", stderr);
mem_free(drop->table_name); mem_free(drop->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