1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

logging_ok:

Logging to logging@openlogging.org accepted
item_strfunc.cc:
  Bug wich appeared in ctype_tis620 is fixed
This commit is contained in:
bar@deer.(none)
2003-12-29 18:45:13 +04:00
parent 1547a03c79
commit b13808d55f
2 changed files with 3 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ arjen@george.bitbike.com
bar@bar.intranet.mysql.r18.ru
bar@bar.mysql.r18.ru
bar@bar.udmsearch.izhnet.ru
bar@deer.(none)
bar@gw.udmsearch.izhnet.ru
bell@laptop.sanja.is.com.ua
bell@sanja.is.com.ua

View File

@@ -2104,8 +2104,8 @@ String *Item_func_conv_charset::val_str(String *str)
null_value=1;
return 0;
}
null_value= str->copy(arg->ptr(),arg->length(),arg->charset(),conv_charset);
return null_value ? 0 : str;
null_value= str_value.copy(arg->ptr(),arg->length(),arg->charset(),conv_charset);
return null_value ? 0 : &str_value;
}
void Item_func_conv_charset::fix_length_and_dec()