summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ndb/src/mgmclient/CommandInterpreter.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/ndb/src/mgmclient/CommandInterpreter.cpp b/ndb/src/mgmclient/CommandInterpreter.cpp
index 53c0e3b673e..1d4d66df961 100644
--- a/ndb/src/mgmclient/CommandInterpreter.cpp
+++ b/ndb/src/mgmclient/CommandInterpreter.cpp
@@ -499,7 +499,8 @@ CommandInterpreter::execute_impl(const char *_line)
line = my_strdup(_line,MYF(MY_WME));
My_auto_ptr<char> ptr(line);
- if (emptyString(line)) {
+ if (emptyString(line) ||
+ line[0] == '#') {
DBUG_RETURN(true);
}
@@ -516,6 +517,11 @@ CommandInterpreter::execute_impl(const char *_line)
executeConnect(allAfterFirstToken);
DBUG_RETURN(true);
}
+ else if (strcasecmp(firstToken, "SLEEP") == 0) {
+ if (allAfterFirstToken)
+ sleep(atoi(allAfterFirstToken));
+ DBUG_RETURN(true);
+ }
else if((strcasecmp(firstToken, "QUIT") == 0 ||
strcasecmp(firstToken, "EXIT") == 0 ||
strcasecmp(firstToken, "BYE") == 0) &&