Commit 39efb8c8 authored by gluh@mysql.com's avatar gluh@mysql.com

Merge sgluhov@bk-internal.mysql.com:/home/bk/mysql-5.0

into mysql.com:/home/gluh/MySQL/Merge/5.0
parents 1a9cf5b6 dd028309
...@@ -2438,6 +2438,12 @@ mysql_execute_command(THD *thd) ...@@ -2438,6 +2438,12 @@ mysql_execute_command(THD *thd)
{ {
if (lex->describe) if (lex->describe)
{ {
/*
We always use select_send for EXPLAIN, even if it's an EXPLAIN
for SELECT ... INTO OUTFILE: a user application should be able
to prepend EXPLAIN to any query and receive output for it,
even if the query itself redirects the output.
*/
if (!(result= new select_send())) if (!(result= new select_send()))
goto error; goto error;
else else
......
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