Loading ndb/src/common/mgmcommon/ConfigInfo.cpp +0 −3 Original line number Diff line number Diff line Loading @@ -2920,21 +2920,18 @@ saveInConfigValues(InitConfigFileParser::Context & ctx, const char * data){ Uint32 val; require(ctx.m_currentSection->get(n, &val)); ok = ctx.m_configValues.put(id, val); ndbout_c("put %s %d %d", n, id, val); break; } case PropertiesType_Uint64:{ Uint64 val; require(ctx.m_currentSection->get(n, &val)); ok = ctx.m_configValues.put64(id, val); ndbout_c("put64 %s %d %lld", n, id, val); break; } case PropertiesType_char:{ const char * val; require(ctx.m_currentSection->get(n, &val)); ok = ctx.m_configValues.put(id, val); ndbout_c("put %s %d %s", n, id, val); break; } default: Loading Loading
ndb/src/common/mgmcommon/ConfigInfo.cpp +0 −3 Original line number Diff line number Diff line Loading @@ -2920,21 +2920,18 @@ saveInConfigValues(InitConfigFileParser::Context & ctx, const char * data){ Uint32 val; require(ctx.m_currentSection->get(n, &val)); ok = ctx.m_configValues.put(id, val); ndbout_c("put %s %d %d", n, id, val); break; } case PropertiesType_Uint64:{ Uint64 val; require(ctx.m_currentSection->get(n, &val)); ok = ctx.m_configValues.put64(id, val); ndbout_c("put64 %s %d %lld", n, id, val); break; } case PropertiesType_char:{ const char * val; require(ctx.m_currentSection->get(n, &val)); ok = ctx.m_configValues.put(id, val); ndbout_c("put %s %d %s", n, id, val); break; } default: Loading