From 8025aaaae50207616308215e24c5e37340ff8e04 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 25 Sep 2004 15:29:33 +0500 Subject: Incorporating new faster string->number converter functions into MY_CHARSET_INFO structure. --- strings/ctype-simple.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'strings/ctype-simple.c') 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 }; -- cgit v1.2.1