1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

cleanup String::set(integer)

This commit is contained in:
serg@serg.mylan
2006-06-14 23:09:03 +02:00
parent 7549dac044
commit 99fd8f728b
6 changed files with 15 additions and 43 deletions

View File

@ -139,8 +139,11 @@ public:
}
str_charset=cs;
}
bool set(longlong num, CHARSET_INFO *cs);
bool set(ulonglong num, CHARSET_INFO *cs);
bool set(longlong num, bool unsigned_flag, CHARSET_INFO *cs);
bool set(longlong num, CHARSET_INFO *cs)
{ return set(num, false, cs); }
bool set(ulonglong num, CHARSET_INFO *cs)
{ return set((longlong)num, true, cs); }
bool set(double num,uint decimals, CHARSET_INFO *cs);
/*