diff options
author | unknown <root@home.(none)> | 2003-03-16 10:56:14 +0400 |
---|---|---|
committer | unknown <root@home.(none)> | 2003-03-16 10:56:14 +0400 |
commit | 6b11fa3a247e9dd961f0a570a208cedeb750c1a7 (patch) | |
tree | 460a8abc4de11ac2745df4507cc3edbbda326194 /client/sql_string.h | |
parent | a4d8174473161708be20bfa1c18bee988bd51ed8 (diff) | |
download | mariadb-git-6b11fa3a247e9dd961f0a570a208cedeb750c1a7.tar.gz |
set_default_charset() is not used anymore
Some system_charset_info were removed
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'client/sql_string.h')
-rw-r--r-- | client/sql_string.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/sql_string.h b/client/sql_string.h index 42f9e446981..33f34a43b7f 100644 --- a/client/sql_string.h +++ b/client/sql_string.h @@ -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) { |