Commit cb74e09f authored by petr@mysql.com's avatar petr@mysql.com

Add a shift in the parser. Forgotten in the previous commit.

parent db7b6ef5
...@@ -290,6 +290,7 @@ Command *parse_command(Instance_map *map, const char *text) ...@@ -290,6 +290,7 @@ Command *parse_command(Instance_map *map, const char *text)
get_word(&text, &word_len); get_word(&text, &word_len);
if (!word_len) if (!word_len)
goto syntax_error; goto syntax_error;
text+= word_len;
command= new Show_instance_log(map, instance_name, command= new Show_instance_log(map, instance_name,
instance_name_len, log_type, instance_name_len, log_type,
log_size, text); log_size, text);
......
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