From 06eaf7232e9a920468c0f8d74dcf2fe8b555501c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 14:24:36 +0200 Subject: Adding upstream version 1:10.11.6. Signed-off-by: Daniel Baumann --- mysql-test/main/shutdown_debug.test | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 mysql-test/main/shutdown_debug.test (limited to 'mysql-test/main/shutdown_debug.test') diff --git a/mysql-test/main/shutdown_debug.test b/mysql-test/main/shutdown_debug.test new file mode 100644 index 00000000..587b88dc --- /dev/null +++ b/mysql-test/main/shutdown_debug.test @@ -0,0 +1,15 @@ +source include/not_embedded.inc; +source include/have_debug.inc; +-- source include/no_view_protocol.inc + +--echo # +--echo # MDEV-18353 Shutdown may miss to wait for connection thread +--echo # +call mtr.add_suppression('Thread .* did not exit'); +set @old_dbug=@@global.debug_dbug; +set global debug_dbug='+d,CONNECT_wait'; +select variable_value into @cons from information_schema.global_status where variable_name='connections'; +exec $MYSQL -e "select sleep(3600)" >/dev/null 2>&1 &; +let $wait_condition= select variable_value>@cons from information_schema.global_status where variable_name='connections'; +source include/wait_condition.inc; +source include/restart_mysqld.inc; -- cgit v1.2.3