1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

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

This commit is contained in:
Nirbhay Choubey
2015-07-14 17:21:35 -04:00
parent 0e2ce3b745
commit e204116734

View File

@ -3798,7 +3798,7 @@ bool select_insert::send_eof()
{ {
bool res; bool res;
DBUG_ENTER("select_insert::send_eof"); DBUG_ENTER("select_insert::send_eof");
res= (prepare_eof() || send_ok_packet()); res= (prepare_eof() || (!suppress_my_ok && send_ok_packet()));
DBUG_RETURN(res); DBUG_RETURN(res);
} }