Commit e2041167 authored by Nirbhay Choubey's avatar Nirbhay Choubey

Check supress_my_ok before sending Ok packet (logic lost during merge).

parent 0e2ce3b7
......@@ -3798,7 +3798,7 @@ bool select_insert::send_eof()
{
bool res;
DBUG_ENTER("select_insert::send_eof");
res= (prepare_eof() || send_ok_packet());
res= (prepare_eof() || (!suppress_my_ok && send_ok_packet()));
DBUG_RETURN(res);
}
......
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