Skip to content

Commit

Permalink
Merge 10.4 into 10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Jun 2, 2021
2 parents 6d21b6a + d3d2c96 commit 49ab50f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysql-test/main/lock_kill.test
Expand Up @@ -17,7 +17,7 @@ LOCK TABLE t1 WRITE;
eval KILL $conid;
--enable_query_log
--connection con1
--error 0,2013
--error 0,2013,ER_CONNECTION_KILLED
reap;
--connection default
--disconnect con1
Expand All @@ -35,7 +35,7 @@ LOCK TABLE t1 WRITE, t2 WRITE;
eval KILL $conid;
--enable_query_log
--connection con1
--error 0,2013
--error 0,2013,ER_CONNECTION_KILLED
reap;
--connection default
--disconnect con1
Expand Down
1 change: 1 addition & 0 deletions sql/sql_admin.cc
Expand Up @@ -581,6 +581,7 @@ static bool mysql_admin_table(THD* thd, TABLE_LIST* tables,

if (thd->check_killed())
{
open_error= false;
fatal_error= true;
result_code= HA_ADMIN_FAILED;
goto send_result;
Expand Down

0 comments on commit 49ab50f

Please sign in to comment.