diff --git a/sql/sql_show.cc b/sql/sql_show.cc index 5036a063a44..b61bfe2aa57 100644 --- a/sql/sql_show.cc +++ b/sql/sql_show.cc @@ -2447,10 +2447,10 @@ void select_result_text_buffer::save_to(String *res) { List_iterator it(rows); char **row; - res->append("## \n"); + res->append("#\n"); while ((row= it++)) { - res->append("## "); + res->append("# explain: "); for (int i=0; i < n_columns; i++) { if (i) @@ -2459,7 +2459,7 @@ void select_result_text_buffer::save_to(String *res) } res->append("\n"); } - res->append("## \n"); + res->append("#\n"); }