1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Fix wait_timeout (and kill) handling on Mac OS X by cleaning up how

signal handlers are set up, the blocking flags for sockets are set,
and which thread-related functions are used. (Bug #8731)
This commit is contained in:
jimw@mysql.com
2005-10-11 09:12:12 -07:00
parent 52181cc810
commit c8a6c2c614
11 changed files with 77 additions and 99 deletions

View File

@@ -0,0 +1,11 @@
#
# Bug #8731: wait_timeout does not work on Mac OS X
#
--disable_reconnect
select 1;
# wait_timeout is 2, so we should get disconnected now
--sleep 5
--error 2006
select 2;
--enable_reconnect
select 3;