~vadim-tk/percona-server/percona-galera-5.1.57

« back to all changes in this revision

Viewing changes to mysql-test/r/mysqlbinlog-cp932.result

  • Committer: root
  • Date: 2011-07-10 16:09:24 UTC
  • Revision ID: root@r815.office.percona.com-20110710160924-fyffqsbaclgu6vui
Initial port

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
RESET MASTER;
 
2
create table t3 (f text character set utf8);
 
3
create table t4 (f text character set cp932);
 
4
flush logs;
 
5
rename table t3 to t03, t4 to t04;
 
6
select HEX(f) from t03;
 
7
HEX(f)
 
8
E382BD
 
9
select HEX(f) from t3;
 
10
HEX(f)
 
11
E382BD
 
12
select HEX(f) from t04;
 
13
HEX(f)
 
14
835C
 
15
select HEX(f) from t4;
 
16
HEX(f)
 
17
835C
 
18
drop table t3, t4, t03, t04;
 
19
End of 5.0 tests