Commit 703ee1ad authored by Michael Widenius's avatar Michael Widenius

Fixed MDEV-385: mysqltest running with continue-on-error crashes on a non-SQL...

Fixed MDEV-385: mysqltest running with continue-on-error crashes on a non-SQL command producing an error 

client/mysqltest.cc:
  Added missing DBUG_VOID_RETURN
parent de879df7
......@@ -1285,7 +1285,7 @@ void handle_command_error(struct st_command *command, uint error,
"errno: %d",
command->first_word_len, command->query, error, my_errno,
sys_errno);
return;
DBUG_VOID_RETURN;
}
i= match_expected_error(command, error, NULL);
......
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