~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

Viewing changes to mysql-test/suite/bugs/t/rpl_bug37426.test

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#############################################################
2
 
# Author: Mats Kindahl <mats@mysql.com>
3
 
# Date:   2008-06-18
4
 
# Purpose: Test for BUG#37426
5
 
#   RBR breaks for CHAR() UTF8 fields > 85 chars
6
 
#############################################################
7
 
 
8
 
source include/master-slave.inc;
9
 
source include/have_binlog_format_row.inc;
10
 
 
11
 
connection master;
12
 
CREATE TABLE char128_utf8 ( 
13
 
    i1 INT NOT NULL, 
14
 
    c CHAR(128) CHARACTER SET utf8 NOT NULL, 
15
 
    i2 INT NOT NULL);
16
 
 
17
 
INSERT INTO char128_utf8 VALUES ( 1, "123", 1 );
18
 
 
19
 
SELECT * FROM char128_utf8;
20
 
sync_slave_with_master;
21
 
 
22
 
SELECT * FROM char128_utf8;