summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/sql_show.cc6
1 files changed, 3 insertions, 3 deletions
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<char*> it(rows);
char **row;
- res->append("## <explain>\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("## </explain>\n");
+ res->append("#\n");
}