~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_charset_sjis.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
stop slave;
 
2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
3
reset master;
 
4
reset slave;
 
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
6
start slave;
 
7
drop table if exists t1;
 
8
drop procedure if exists p1;
 
9
create table t1 (a varchar(255) character set sjis);
 
10
create procedure p1 (in a varchar(255) character set sjis) insert into t1 values (a);
 
11
SET NAMES binary;
 
12
CALL p1 ('�\\');
 
13
select "--- on master ---";
 
14
--- on master ---
 
15
--- on master ---
 
16
select hex(a) from t1 ;
 
17
hex(a)
 
18
965C
 
19
select "--- on slave ---";
 
20
--- on slave ---
 
21
--- on slave ---
 
22
select hex(a) from t1;
 
23
hex(a)
 
24
965C
 
25
drop table t1;
 
26
drop procedure p1;