~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/t/rpl_typeconv_innodb.test

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-05-11 18:47:32 UTC
  • mto: (2.1.2 sid) (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100511184732-jhn055kfhxze24kt
Tags: upstream-5.1.46
ImportĀ upstreamĀ versionĀ 5.1.46

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--source include/have_binlog_format_row.inc
 
2
--source include/have_innodb.inc
 
3
--source include/master-slave.inc
 
4
 
 
5
#
 
6
# BUG#49618: Field length stored incorrectly in binary log for InnoDB
 
7
#
 
8
 
 
9
source include/reset_master_and_slave.inc;
 
10
 
 
11
connection master;
 
12
CREATE TABLE t1(b1 BIT(1), b2 BIT(2), b3 BIT(3)) ENGINE=InnoDB;
 
13
INSERT INTO t1 VALUES (b'0', b'01', b'101');
 
14
sync_slave_with_master;
 
15
 
 
16
let $diff_table_1=master:test.t1;
 
17
let $diff_table_2=slave:test.t1;
 
18
source include/diff_tables.inc;
 
19
 
 
20
connection master;
 
21
DROP TABLE t1;
 
22
sync_slave_with_master;