~ubuntu-branches/ubuntu/oneiric/mysql-5.1/oneiric-updates

« back to all changes in this revision

Viewing changes to mysql-test/suite/bugs/r/rpl_bug37426.result

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2011-07-17 17:26:27 UTC
  • mfrom: (1.3.8 upstream)
  • mto: This revision was merged to the branch mainline in revision 27.
  • Revision ID: james.westby@ubuntu.com-20110717172627-6ml4e6l16adhecmy
Tags: 5.1.58-1
New upstream release.

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 char128_utf8 ( 
8
 
i1 INT NOT NULL, 
9
 
c CHAR(128) CHARACTER SET utf8 NOT NULL, 
10
 
i2 INT NOT NULL);
11
 
INSERT INTO char128_utf8 VALUES ( 1, "123", 1 );
12
 
SELECT * FROM char128_utf8;
13
 
i1      c       i2
14
 
1       123     1
15
 
SELECT * FROM char128_utf8;
16
 
i1      c       i2
17
 
1       123     1