mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +01:00
Test wait_timeout: do not fail by SQL syntax error, use die
This commit is contained in:
parent
abaa5c91b4
commit
8a67fc8c82
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ while (!`select @aborted_clients`)
|
||||||
dec $retries;
|
dec $retries;
|
||||||
if (!$retries)
|
if (!$retries)
|
||||||
{
|
{
|
||||||
Failed to detect that client has been aborted;
|
die Failed to detect that client has been aborted;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
--enable_query_log
|
--enable_query_log
|
||||||
|
@ -108,7 +108,7 @@ while (!`select @aborted_clients`)
|
||||||
dec $retries;
|
dec $retries;
|
||||||
if (!$retries)
|
if (!$retries)
|
||||||
{
|
{
|
||||||
Failed to detect that client has been aborted;
|
die Failed to detect that client has been aborted;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
--enable_query_log
|
--enable_query_log
|
||||||
|
|
Loading…
Add table
Reference in a new issue