@@ -101,8 +101,6 @@ class CommandInterpreter {
101
101
int executePurge (char * parameters);
102
102
int executeConnect (char * parameters, bool interactive);
103
103
int executeShutdown (char * parameters);
104
- void executeRun (char * parameters);
105
- void executeInfo (char * parameters);
106
104
void executeClusterLog (char * parameters);
107
105
108
106
public:
@@ -133,11 +131,6 @@ class CommandInterpreter {
133
131
int *node_ids, int no_of_nodes);
134
132
int executeStart (Vector<BaseString> &command_list, unsigned command_pos,
135
133
int *node_ids, int no_of_nodes);
136
-
137
- int executeRep (char * parameters);
138
-
139
- void executeCpc (char * parameters);
140
-
141
134
public:
142
135
bool connect (bool interactive);
143
136
bool disconnect ();
@@ -223,17 +216,6 @@ Ndb_mgmclient::disconnect()
223
216
224
217
#include " MgmtErrorReporter.hpp"
225
218
226
- int Ndb_mgmclient::execute (int argc, char ** argv, int _try_reconnect, bool interactive, int *error)
227
- {
228
- if (argc <= 0 )
229
- return 0 ;
230
- BaseString _line (argv[0 ]);
231
- for (int i= 1 ; i < argc; i++)
232
- {
233
- _line.appfmt (" %s" , argv[i]);
234
- }
235
- return m_cmd->execute (_line.c_str (),_try_reconnect, interactive, error);
236
- }
237
219
238
220
/* ****************************************************************************
239
221
* HELP
0 commit comments