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

set_default_charset() is not used anymore

Some system_charset_info were removed
This commit is contained in:
root@home.(none)
2003-03-16 10:56:14 +04:00
parent dfe65d3281
commit f71a7e4b05
14 changed files with 23 additions and 57 deletions

View File

@ -39,12 +39,12 @@ public:
String()
{
Ptr=0; str_length=Alloced_length=0; alloced=0;
str_charset=default_charset_info;
str_charset= &my_charset_latin1;
}
String(uint32 length_arg)
{
alloced=0; Alloced_length=0; (void) real_alloc(length_arg);
str_charset=default_charset_info;
str_charset= &my_charset_latin1;
}
String(const char *str, CHARSET_INFO *cs)
{