summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_typeconv_innodb.result
blob: 67ac642bc5a34be7a0365a0fc191269bee4bdd4e (plain)
1
2
3
4
5
6
7
8
9
10
include/master-slave.inc
[connection master]
SET @saved_slave_type_conversions = @@GLOBAL.SLAVE_TYPE_CONVERSIONS;
SET GLOBAL SLAVE_TYPE_CONVERSIONS = '';
CREATE TABLE t1(b1 BIT(1), b2 BIT(2), b3 BIT(3)) ENGINE=InnoDB;
INSERT INTO t1 VALUES (b'0', b'01', b'101');
include/diff_tables.inc [master:t1, slave:t1]
DROP TABLE t1;
SET GLOBAL SLAVE_TYPE_CONVERSIONS = @saved_slave_type_conversions;
include/rpl_end.inc