diff options
author | bar@bar.mysql.r18.ru <> | 2002-10-30 16:19:43 +0400 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2002-10-30 16:19:43 +0400 |
commit | b43876b9dd5a4e361c458d271110da88eea5d43a (patch) | |
tree | afd6e4ea67b585a5ec68bd069142c6d208822c5a /sql/sql_string.h | |
parent | 637b97991d3d1d6ca06f396e7fbdf67f6b876e35 (diff) | |
download | mariadb-git-b43876b9dd5a4e361c458d271110da88eea5d43a.tar.gz |
All String->set() now have charset argument
Diffstat (limited to 'sql/sql_string.h')
-rw-r--r-- | sql/sql_string.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sql/sql_string.h b/sql/sql_string.h index e94981d22c3..c881cb22c5c 100644 --- a/sql/sql_string.h +++ b/sql/sql_string.h @@ -125,10 +125,9 @@ public: } str_charset=cs; } - bool set(longlong num); - /* bool set(long num); */ - bool set(ulonglong num); - bool set(double num,uint decimals=2); + bool set(longlong num, CHARSET_INFO *cs); + bool set(ulonglong num, CHARSET_INFO *cs); + bool set(double num,uint decimals, CHARSET_INFO *cs); inline void free() { if (alloced) |