mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.5 into 10.6
This commit is contained in:
@ -2258,10 +2258,7 @@ int Lex_input_stream::lex_one_token(YYSTYPE *yylval, THD *thd)
|
||||
if (c == '-' || c == '+')
|
||||
c= yyGet(); // Skip sign
|
||||
if (!my_isdigit(cs, c))
|
||||
{ // No digit after sign
|
||||
state= MY_LEX_CHAR;
|
||||
break;
|
||||
}
|
||||
return ABORT_SYM; // No digit after sign
|
||||
while (my_isdigit(cs, yyGet())) ;
|
||||
yylval->lex_str= get_token(0, yyLength());
|
||||
return(FLOAT_NUM);
|
||||
|
Reference in New Issue
Block a user