Commit 7dc31480 authored by unknown's avatar unknown
Browse files

Change mysql prompt while inside a multiline comment. (Bug #9186)


client/mysql.cc:
  Change prompt to "/*> " when inside a multiline comment.
parent e656fba7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -936,7 +936,8 @@ static int read_lines(bool execute_commands)
    }
    else
    {
      char *prompt= (char*) (glob_buffer.is_empty() ? construct_prompt() :
      char *prompt= (char*) (ml_comment ? "   /*> " :
                             glob_buffer.is_empty() ?  construct_prompt() :
			     !in_string ? "    -> " :
			     in_string == '\'' ?
			     "    '> " : (in_string == '`' ?