MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
wait_until_disconnected.inc
1 #
2 # Include this script to wait until the connection to the
3 # server has been dropped
4 --disable_result_log
5 --disable_query_log
6 let $counter= 500;
7 let $mysql_errno= 0;
8 while (!$mysql_errno)
9 {
10  --error 0,1040,1053,2002,2003,2006,2013
11  show status;
12 
13  dec $counter;
14  if (!$counter)
15  {
16  --die Server failed to dissapear
17  }
18  --sleep 0.1
19 }
20 --enable_query_log
21 --enable_result_log