mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
4733464975
- 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
9 lines
204 B
C
9 lines
204 B
C
const char *load_default_groups[]= {
|
|
"mysqld", "server", MYSQL_BASE_VERSION,
|
|
"mariadb", MARIADB_BASE_VERSION,
|
|
"mariadbd", MARIADBD_BASE_VERSION,
|
|
"client-server",
|
|
#ifdef WITH_WSREP
|
|
"galera",
|
|
#endif
|
|
0, 0};
|