1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

All String->set() now have charset argument

This commit is contained in:
bar@bar.mysql.r18.ru
2002-10-30 16:19:43 +04:00
parent 637b97991d
commit b43876b9dd
13 changed files with 94 additions and 76 deletions

View File

@ -903,7 +903,7 @@ int collect_real(double *element, element_count count __attribute__((unused)),
else
info->found = 1;
info->str->append('\'');
s.set(*element, info->item->decimals);
s.set(*element, info->item->decimals, my_thd_charset);
info->str->append(s);
info->str->append('\'');
return 0;
@ -922,7 +922,7 @@ int collect_longlong(longlong *element,
else
info->found = 1;
info->str->append('\'');
s.set(*element);
s.set(*element,default_charset_info);
info->str->append(s);
info->str->append('\'');
return 0;
@ -941,7 +941,7 @@ int collect_ulonglong(ulonglong *element,
else
info->found = 1;
info->str->append('\'');
s.set(*element);
s.set(*element,default_charset_info);
info->str->append(s);
info->str->append('\'');
return 0;