1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

A preparatory patch for MDEV-6566.

Adding a new virtual function MY_CHARSET_HANDLER::copy_abort().
Moving character set specific code into the correspoding implementations
(for simple, multi-byte and mbmaxlen>1 character sets).
This commit is contained in:
Alexander Barkov
2015-03-02 18:24:22 +04:00
parent 7047bef1ef
commit b1b6101af2
18 changed files with 185 additions and 89 deletions

View File

@ -548,7 +548,8 @@ static MY_CHARSET_HANDLER my_charset_handler=
my_strntod_8bit,
my_strtoll10_8bit,
my_strntoull10rnd_8bit,
my_scan_8bit
my_scan_8bit,
my_copy_8bit,
};