diff options
author | unknown <msvensson@neptunus.(none)> | 2006-07-18 15:15:43 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-07-18 15:15:43 +0200 |
commit | 57dc819a14eabba0048ad8638aeb7b5055c0ff84 (patch) | |
tree | e6b3495156a7a5433cad639735a0ea6350f63a21 /mysql-test/mysql-test-run.pl | |
parent | 4627b6da1b6b10df9605a0ce7c12961aa7dc7436 (diff) | |
download | mariadb-git-57dc819a14eabba0048ad8638aeb7b5055c0ff84.tar.gz |
Fix erroneous join function use
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index ce76e136eb5..2f189f01d29 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -3518,7 +3518,6 @@ sub im_stop($) { } # Kill leftovers (the order is important). - unless ($clean_shutdown) { @@ -3535,7 +3534,7 @@ sub im_stop($) { # will not stop them on shutdown. So, we should firstly try to end them # legally. - mtr_verbose("Killing guarded mysqld(s) " . join(@mysqld_pids)); + mtr_verbose("Killing guarded mysqld(s) " . join(" ", @mysqld_pids)); mtr_kill_processes(\@mysqld_pids); # Complain in error log so that a warning will be shown. |