summaryrefslogtreecommitdiff
path: root/mysql-test/t/aborted_clients.test
Commit message (Collapse)AuthorAgeFilesLines
* MDEV-4447 MariaDB sources should have unix-style line endings everywhereSergei Golubchik2014-02-271-28/+28
|
* Fix (hopefully) a race condition in a test. Wait until killed connection Vladislav Vaintroub2012-05-031-2/+4
| | | | is gone.
* MDEV-246 - Aborted_clients incremented during ordinary connection closeVladislav Vaintroub2012-05-031-0/+26
The problem was increment of aborted_threads variable due to thd->killed which was set when threadpool connection was terminated . The fix is not to set thd->killed anymore, there is no real reason for doing it.. Added a test that checks that status variable aborted_clients does not grow for ordinary disconnects, and that successful KILL increments this variable.