diff options
author | unknown <tomas@poseidon.(none)> | 2004-08-24 22:27:33 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.(none)> | 2004-08-24 22:27:33 +0000 |
commit | 9f2b7e91b6a6eee0e4e1629ea4d55782a81c78bb (patch) | |
tree | 0d94300f81e757cb171b99ad38f8800d12a8b999 /ndb/src/mgmclient/CommandInterpreter.cpp | |
parent | 340d40a77c87009d83fe360ca00bd5ef0f7b8792 (diff) | |
download | mariadb-git-9f2b7e91b6a6eee0e4e1629ea4d55782a81c78bb.tar.gz |
ndb config ability/naming changes, see respective file
mysql-test/ndb/ndb_config_2_node.ini:
using new naming capabilities
ndb/src/common/mgmcommon/ConfigInfo.cpp:
fixes case insensitive
+ removed abort from config handling
ndb/src/common/mgmcommon/InitConfigFileParser.cpp:
fixed alias handling
some requires in config handling
ndb/src/mgmclient/CommandInterpreter.cpp:
new printout to reflect new naming in config
Diffstat (limited to 'ndb/src/mgmclient/CommandInterpreter.cpp')
-rw-r--r-- | ndb/src/mgmclient/CommandInterpreter.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ndb/src/mgmclient/CommandInterpreter.cpp b/ndb/src/mgmclient/CommandInterpreter.cpp index 141a0be0eff..c90ed1822f1 100644 --- a/ndb/src/mgmclient/CommandInterpreter.cpp +++ b/ndb/src/mgmclient/CommandInterpreter.cpp @@ -682,12 +682,12 @@ CommandInterpreter::executeShow(char* parameters) } ndbout << ndb_nodes - << " NDB Node(s)" + << " [ndbd] node(s)" << endl; for(i=0; i < state->no_of_nodes; i++) { if(state->node_states[i].node_type == NDB_MGM_NODE_TYPE_NDB) { - ndbout << "DB node:\t" << state->node_states[i].node_id; + ndbout << "[ndbd]\t\tid=" << state->node_states[i].node_id; if(state->node_states[i].version != 0) { ndbout << " (Version: " << getMajor(state->node_states[i].version) << "." @@ -707,12 +707,12 @@ CommandInterpreter::executeShow(char* parameters) ndbout << endl; ndbout << mgm_nodes - << " MGM Node(s)" + << " [ndb_mgmd] node(s)" << endl; for(i=0; i < state->no_of_nodes; i++) { if(state->node_states[i].node_type == NDB_MGM_NODE_TYPE_MGM) { - ndbout << "MGM node:\t" << state->node_states[i].node_id; + ndbout << "[ndb_mgmd]\tid=" << state->node_states[i].node_id; if(state->node_states[i].version != 0) { ndbout << " (Version: " << getMajor(state->node_states[i].version) << "." @@ -728,12 +728,12 @@ CommandInterpreter::executeShow(char* parameters) ndbout << endl; ndbout << api_nodes - << " API Node(s)" + << " [mysqld] node(s)" << endl; for(i=0; i < state->no_of_nodes; i++) { if(state->node_states[i].node_type == NDB_MGM_NODE_TYPE_API) { - ndbout << "API node:\t" << state->node_states[i].node_id; + ndbout << "[mysqld]\tid=" << state->node_states[i].node_id; if(state->node_states[i].version != 0) { ndbout << " (Version: " << getMajor(state->node_states[i].version) << "." |