1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

aligned connect string option on all cluster executables, --ndb-connectstring is now supported by all

enabled new section in my.cnf [mysql_cluster], which is read by all executables, where connect string can be put for all cluster executables
This commit is contained in:
unknown
2004-11-22 08:06:39 +00:00
parent 5a7198f54d
commit 3e779698ab
13 changed files with 31 additions and 21 deletions

View File

@ -64,7 +64,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
int main(int argc, char** argv){
NDB_INIT(argv[0]);
const char *load_default_groups[]= { "ndb_tools",0 };
const char *load_default_groups[]= { "mysql_cluster",0 };
load_defaults("my",load_default_groups,&argc,&argv);
int ho_error;
if ((ho_error=handle_options(&argc, &argv, my_long_options, get_one_option)))