~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to mysql-test/r/mysqlbinlog-cp932.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
flush logs;
 
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