1
source include/have_sjis.inc;
2
source include/master-slave.inc;
5
drop table if exists t1;
6
drop procedure if exists p1;
8
create table t1 (a varchar(255) character set sjis);
9
create procedure p1 (in a varchar(255) character set sjis) insert into t1 values (a);
13
select "--- on master ---";
14
select hex(a) from t1 ;
15
sync_slave_with_master;
17
select "--- on slave ---";
18
select hex(a) from t1;
22
sync_slave_with_master;