~maria-captains/maria/mysql-6.0-backup

« back to all changes in this revision

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

  • Committer: Thava Alagu
  • Date: 2010-03-18 17:40:22 UTC
  • mfrom: (3719.14.67 mysql-6.0-codebase)
  • Revision ID: thavamuni.alagu@sun.com-20100318174022-d1yknocintpcgbp2
Auto-merge from mysql-6.0-codebase

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
CREATE TABLE t1(c1 CHAR(10) CHARACTER SET utf16 DEFAULT 'ola');
 
8
INSERT INTO t1 VALUES ('abc');
 
9
#### ON MASTER
 
10
SELECT c1, hex(c1) from t1;
 
11
c1      abc
 
12
hex(c1) 006F006C0061
 
13
#### ON SLAVE
 
14
SELECT c1, hex(c1) FROM t1;
 
15
c1      abc
 
16
hex(c1) 006100620063
 
17
Comparing tables master:test.t1 and slave:test.t1
 
18
DROP TABLE t1;