Commit 0d3877bb authored by unknown's avatar unknown

ndb - bug in my.cnf handling on resize of vector

  backport fix from 5.1


ndb/src/mgmsrv/InitConfigFileParser.cpp:
  backport fix from 5.1
parent 24d90a35
...@@ -800,6 +800,7 @@ InitConfigFileParser::parse_mycnf() ...@@ -800,6 +800,7 @@ InitConfigFileParser::parse_mycnf()
/** /**
* Add ndbd, ndb_mgmd, api/mysqld * Add ndbd, ndb_mgmd, api/mysqld
*/ */
Uint32 idx = options.size();
{ {
struct my_option opt; struct my_option opt;
bzero(&opt, sizeof(opt)); bzero(&opt, sizeof(opt));
...@@ -809,7 +810,6 @@ InitConfigFileParser::parse_mycnf() ...@@ -809,7 +810,6 @@ InitConfigFileParser::parse_mycnf()
opt.var_type = GET_STR; opt.var_type = GET_STR;
opt.arg_type = REQUIRED_ARG; opt.arg_type = REQUIRED_ARG;
options.push_back(opt); options.push_back(opt);
ndbd = &options.back();
opt.name = "ndb_mgmd"; opt.name = "ndb_mgmd";
opt.id = 256; opt.id = 256;
...@@ -817,7 +817,6 @@ InitConfigFileParser::parse_mycnf() ...@@ -817,7 +817,6 @@ InitConfigFileParser::parse_mycnf()
opt.var_type = GET_STR; opt.var_type = GET_STR;
opt.arg_type = REQUIRED_ARG; opt.arg_type = REQUIRED_ARG;
options.push_back(opt); options.push_back(opt);
ndb_mgmd = &options.back();
opt.name = "mysqld"; opt.name = "mysqld";
opt.id = 256; opt.id = 256;
...@@ -825,20 +824,22 @@ InitConfigFileParser::parse_mycnf() ...@@ -825,20 +824,22 @@ InitConfigFileParser::parse_mycnf()
opt.var_type = GET_STR; opt.var_type = GET_STR;
opt.arg_type = REQUIRED_ARG; opt.arg_type = REQUIRED_ARG;
options.push_back(opt); options.push_back(opt);
mysqld = &options.back();
opt.name = "api"; opt.name = "ndbapi";
opt.id = 256; opt.id = 256;
opt.value = (gptr*)malloc(sizeof(char*)); opt.value = (gptr*)malloc(sizeof(char*));
opt.var_type = GET_STR; opt.var_type = GET_STR;
opt.arg_type = REQUIRED_ARG; opt.arg_type = REQUIRED_ARG;
options.push_back(opt); options.push_back(opt);
api = &options.back();
bzero(&opt, sizeof(opt)); bzero(&opt, sizeof(opt));
options.push_back(opt); options.push_back(opt);
}
ndbd = &options[idx];
ndb_mgmd = &options[idx+1];
mysqld = &options[idx+2];
api = &options[idx+3];
}
Context ctx(m_info, m_errstream); Context ctx(m_info, m_errstream);
const char *groups[]= { "cluster_config", 0 }; const char *groups[]= { "cluster_config", 0 };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment