mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
merge with 3.23.49
This commit is contained in:
@@ -768,6 +768,7 @@ int yylex(void *arg)
|
||||
return(TEXT_STRING);
|
||||
|
||||
case STATE_COMMENT: // Comment
|
||||
lex->options|= OPTION_FOUND_COMMENT;
|
||||
while ((c = yyGet()) != '\n' && c) ;
|
||||
yyUnget(); // Safety against eof
|
||||
state = STATE_START; // Try again
|
||||
@@ -779,6 +780,7 @@ int yylex(void *arg)
|
||||
break;
|
||||
}
|
||||
yySkip(); // Skip '*'
|
||||
lex->options|= OPTION_FOUND_COMMENT;
|
||||
if (yyPeek() == '!') // MySQL command in comment
|
||||
{
|
||||
ulong version=MYSQL_VERSION_ID;
|
||||
|
||||
Reference in New Issue
Block a user