diff options
Diffstat (limited to 'strings/ctype-simple.c')
-rw-r--r-- | strings/ctype-simple.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/strings/ctype-simple.c b/strings/ctype-simple.c index 58535cbfc69..a9c2b07d05b 100644 --- a/strings/ctype-simple.c +++ b/strings/ctype-simple.c @@ -1283,6 +1283,12 @@ static my_bool my_coll_init_simple(CHARSET_INFO *cs, } +longlong my_strtoll10_8bit(CHARSET_INFO *cs __attribute__((unused)), + const char *nptr, char **endptr, int *error) +{ + return 0; /* my_strtoll10(nptr, endptr, error); */ +} + MY_CHARSET_HANDLER my_charset_8bit_handler= { @@ -1309,6 +1315,7 @@ MY_CHARSET_HANDLER my_charset_8bit_handler= my_strntoll_8bit, my_strntoull_8bit, my_strntod_8bit, + my_strtoll10_8bit, my_scan_8bit }; |