mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Integer values between 9223372036854775807 and 9999999999999999999 are now
regarded as unsigned longlongss, not as floats. This make these values work similar to values between 10000000000000000000 and 18446744073709551615.
This commit is contained in:
@ -407,7 +407,7 @@ inline static uint int_token(const char *str,uint length)
|
||||
{
|
||||
cmp=longlong_str;
|
||||
smaller=LONG_NUM;
|
||||
bigger=REAL_NUM;
|
||||
bigger= ULONGLONG_NUM;
|
||||
}
|
||||
}
|
||||
while (*cmp && *cmp++ == *str++) ;
|
||||
|
Reference in New Issue
Block a user