diff options
author | Monty <monty@mariadb.org> | 2019-07-18 15:32:22 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2019-07-18 15:32:22 +0300 |
commit | 47334649752e109360c9e22b8f8019a0df51fe93 (patch) | |
tree | 343a69f76e7aee854ed7c8c399b94fd0a05a9465 /client/mysqltest.cc | |
parent | 5a95a33e309d0b2c6bc0f938ad925e3f74b0f921 (diff) | |
download | mariadb-git-47334649752e109360c9e22b8f8019a0df51fe93.tar.gz |
Fixed that mariadb-# binaries reads their corresponding entry from my.cnf
- Added mariadb-# to load_default_groups to all mariadb-# scripts and
mariadb-binaries.
- Added mariadbd and mariadbd-"version" to load_default_groups for the
mysqld/mariadb server
- Added mariadb-client to load_default_groups for the mysql/mariadb client
Other things
- Ignored mysql-test/lib/My/SafeProcess/wsrep_check_version
- mysql_install_db will now automatically detect if run from srcdir
Diffstat (limited to 'client/mysqltest.cc')
-rw-r--r-- | client/mysqltest.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/mysqltest.cc b/client/mysqltest.cc index 139377d3889..3c9b26d0412 100644 --- a/client/mysqltest.cc +++ b/client/mysqltest.cc @@ -136,7 +136,8 @@ static my_bool server_initialized= 0; static my_bool is_windows= 0; static char **default_argv; static const char *load_default_groups[]= -{ "mysqltest", "client", "client-server", "client-mariadb", 0 }; +{ "mysqltest", "mariadb-test", "client", "client-server", "client-mariadb", + 0 }; static char line_buffer[MAX_DELIMITER_LENGTH], *line_buffer_pos= line_buffer; /* Info on properties that can be set with --enable_X and --disable_X */ |