diff options
author | bar@bar.mysql.r18.ru <> | 2003-03-17 13:14:04 +0400 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2003-03-17 13:14:04 +0400 |
commit | caf31a07903df2351092b5de8bf6f39b1aca642a (patch) | |
tree | 964cdcf2c74b547efa3df764fba458b70cf72286 /sql/ha_myisam.cc | |
parent | e00c9fa7d50b209afca7f17ec448fcc41f028001 (diff) | |
download | mariadb-git-caf31a07903df2351092b5de8bf6f39b1aca642a.tar.gz |
Preparing to client<->server autoconvert
Diffstat (limited to 'sql/ha_myisam.cc')
-rw-r--r-- | sql/ha_myisam.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/ha_myisam.cc b/sql/ha_myisam.cc index 7cd5927bd24..26268f5deaf 100644 --- a/sql/ha_myisam.cc +++ b/sql/ha_myisam.cc @@ -77,10 +77,10 @@ static void mi_check_print_msg(MI_CHECK *param, const char* msg_type, length=(uint) (strxmov(name, param->db_name,".",param->table_name,NullS) - name); protocol->prepare_for_resend(); - protocol->store(name, length); - protocol->store(param->op_name); - protocol->store(msg_type); - protocol->store(msgbuf, msg_length); + protocol->store(name, length, system_charset_info); + protocol->store(param->op_name, system_charset_info); + protocol->store(msg_type, system_charset_info); + protocol->store(msgbuf, msg_length, system_charset_info); if (protocol->write()) sql_print_error("Failed on my_net_write, writing to stderr instead: %s\n", msgbuf); |