Commit 5e6ff79a authored by Ramil Kalimullin's avatar Ramil Kalimullin

Fix for bug#11758931 - 51196: SLAVE SQL: GOT AN ERROR WRITING

COMMUNICATION PACKETS, ERROR_CODE: 1160

Addendum: for some queries table->in_use might be NULL -
check it.
parent 2a21a662
......@@ -1658,7 +1658,8 @@ int ha_federated::close(void)
if the original query was not issued against the FEDERATED table.
So, don't propagate errors from mysql_close().
*/
table->in_use->clear_error();
if (table->in_use)
table->in_use->clear_error();
DBUG_RETURN(free_share(share));
}
......
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