diff options
author | Magnus Svensson <msvensson@mysql.com> | 2008-12-10 19:40:27 +0100 |
---|---|---|
committer | Magnus Svensson <msvensson@mysql.com> | 2008-12-10 19:40:27 +0100 |
commit | 5c16a315ca28c18949e27b91cddf0886329d1dd4 (patch) | |
tree | 51e08e9393d1fa333810dcd3a7e3c7d73f3d93d5 /mysql-test/include | |
parent | 95b779ee535c883a891fe35996ad6d56b78aa5b0 (diff) | |
download | mariadb-git-5c16a315ca28c18949e27b91cddf0886329d1dd4.tar.gz |
Bug#40636 falcon_bug_28095 test fails with "Server failed to restart"
mysql-test/include/wait_until_disconnected.inc:
Change the default value for $mysql_errno so that the loops is run at least once
Diffstat (limited to 'mysql-test/include')
-rw-r--r-- | mysql-test/include/wait_until_disconnected.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/include/wait_until_disconnected.inc b/mysql-test/include/wait_until_disconnected.inc index 66a09f3c971..956ab3c1845 100644 --- a/mysql-test/include/wait_until_disconnected.inc +++ b/mysql-test/include/wait_until_disconnected.inc @@ -4,7 +4,7 @@ --disable_result_log --disable_query_log let $counter= 500; -let $mysql_errno= 9999; +let $mysql_errno= 0; while (!$mysql_errno) { --error 0,1053,2002,2006 |