diff options
author | Michael Widenius <monty@askmonty.org> | 2013-05-11 20:31:50 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2013-05-11 20:31:50 +0300 |
commit | 0737932b907214221bdf1b6fc1eec1d0d98bbfde (patch) | |
tree | 9e74ec59f5fde9dabadac3a2bf64f8a27082f7c8 /mysql-test/mysql-test-run.pl | |
parent | 5b31f8785840d63e6a2516758bcd68ac1307d7a7 (diff) | |
download | mariadb-git-0737932b907214221bdf1b6fc1eec1d0d98bbfde.tar.gz |
Fixed that SHOW PROCESSLIST and information_schema.processlist uses the right length for user names.
Fixed some failing tests
mysql-test/mysql-test-run.pl:
Removed warning from mysql-test-run
mysql-test/r/create.result:
Updated result
mysql-test/r/log_slow.result:
Fixed failing test
mysql-test/suite/funcs_1/r/is_columns_is.result:
Updated result
mysql-test/suite/funcs_1/r/processlist_priv_no_prot.result:
Updated result
mysql-test/suite/funcs_1/r/processlist_val_no_prot.result:
Updated result
mysql-test/t/log_slow.test:
Ensure variables are properly reset at end of test
sql/sql_show.cc:
Fixed max length for user names
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index ee2978e0a32..3f2d359eb98 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -524,7 +524,7 @@ sub main { } } - if ( not defined @$completed ) { + if ( not @$completed ) { mtr_error("Test suite aborted"); } |