diff options
author | unknown <bar@bar.mysql.r18.ru> | 2002-11-06 17:43:22 +0400 |
---|---|---|
committer | unknown <bar@bar.mysql.r18.ru> | 2002-11-06 17:43:22 +0400 |
commit | dedb5843256aa897147a2de4bfb37c87ffd0648d (patch) | |
tree | da00e60b2fd7b0ab3f00cdd758ad27aac80f49ce /sql/sql_string.h | |
parent | 6d7d19b860e0b3b9443b8059d36fb497029481d6 (diff) | |
download | mariadb-git-dedb5843256aa897147a2de4bfb37c87ffd0648d.tar.gz |
String->copy() now has a charset arg
Diffstat (limited to 'sql/sql_string.h')
-rw-r--r-- | sql/sql_string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_string.h b/sql/sql_string.h index c881cb22c5c..4ac4308f113 100644 --- a/sql/sql_string.h +++ b/sql/sql_string.h @@ -178,7 +178,7 @@ public: bool copy(); // Alloc string if not alloced bool copy(const String &s); // Allocate new string - bool copy(const char *s,uint32 arg_length); // Allocate new string + bool copy(const char *s,uint32 arg_length, CHARSET_INFO *cs); // Allocate new string bool append(const String &s); bool append(const char *s,uint32 arg_length=0); bool append(IO_CACHE* file, uint32 arg_length); |