mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Automatic conversion from CHAR(length) to BLOB when length > 255
New operators MOD and DIV SELECT ... FROM DUAL TRUE = 1 and FALSE = 0
This commit is contained in:
@ -855,9 +855,8 @@ int yylex(void *arg)
|
||||
case STATE_END:
|
||||
lex->next_state=STATE_END;
|
||||
return(0); // We found end of input last time
|
||||
|
||||
// Actually real shouldn't start
|
||||
// with . but allow them anyhow
|
||||
|
||||
/* Actually real shouldn't start with . but allow them anyhow */
|
||||
case STATE_REAL_OR_POINT:
|
||||
if (my_isdigit(system_charset_info,yyPeek()))
|
||||
state = STATE_REAL; // Real
|
||||
|
Reference in New Issue
Block a user