diff options
author | unknown <msvensson@neptunus.(none)> | 2006-11-10 13:25:10 +0100 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-11-10 13:25:10 +0100 |
commit | fbd4378b85b2420d4741784cc5990ddd4d6203ef (patch) | |
tree | dec126920389e732038d0aaaab8f1e99c6906128 /mysql-test/mysql-test-run.pl | |
parent | fc449ac174d616b015998a5cd6f2f9bfa80da812 (diff) | |
download | mariadb-git-fbd4378b85b2420d4741784cc5990ddd4d6203ef.tar.gz |
Bug#10608 mysqladmin breaks on "database" variable in my.cnf
- Add printout of "Warning" or "Note" for non error messages in default_reporter
- Add test for the above in new mysqladmin.test
mysql-test/mysql-test-run.pl:
Add support for mysqladmin to mysql-test-run.pl
mysys/my_getopt.c:
Add printout of Warning: or Info: in 'default_reporter', this
will make the user aware of the problem but can filter it
as a warning or note.
mysql-test/r/mysqladmin.result:
New BitKeeper file ``mysql-test/r/mysqladmin.result''
mysql-test/t/mysqladmin.test:
New BitKeeper file ``mysql-test/t/mysqladmin.test''
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index d788140dd4a..fe125d1e126 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -1818,6 +1818,10 @@ sub environment_setup () { # ---------------------------------------------------- $ENV{'MYSQL_MY_PRINT_DEFAULTS'}= $exe_my_print_defaults; + # ---------------------------------------------------- + # Setup env so childs can execute mysqladmin + # ---------------------------------------------------- + $ENV{'MYSQLADMIN'}= $exe_mysqladmin; # ---------------------------------------------------- # Setup env so childs can execute perror |