#At file:///home/cmiller/work/mysqlbzr/5.0-community/
2578 Chad MILLER 2008-07-15
Fixed packet-test bug caused by if block that didn't have curly braces.
modified:
sql/sql_parse.cc
=== modified file 'sql/sql_parse.cc'
--- a/sql/sql_parse.cc 2008-07-14 20:16:37 +0000
+++ b/sql/sql_parse.cc 2008-07-15 16:51:05 +0000
@@ -1559,8 +1559,10 @@ static bool do_command(THD *thd)
/* Check if we can continue without closing the connection */
if (net->error != 3)
+ {
return_value= TRUE; // We have to close it.
goto out;
+ }
net_send_error(thd, net->last_errno, NullS);
net->error= 0;
| Thread |
|---|
| • bzr commit into mysql-5.0 branch (chad:2578) | Chad MILLER | 15 Jul |