summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/t/rpl_colSize.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/rpl/t/rpl_colSize.test')
-rw-r--r--mysql-test/suite/rpl/t/rpl_colSize.test5
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/suite/rpl/t/rpl_colSize.test b/mysql-test/suite/rpl/t/rpl_colSize.test
index 07fd8041b18..4c808ef3dfd 100644
--- a/mysql-test/suite/rpl/t/rpl_colSize.test
+++ b/mysql-test/suite/rpl/t/rpl_colSize.test
@@ -19,6 +19,9 @@ STOP SLAVE;
--source include/wait_for_slave_to_stop.inc
RESET SLAVE;
+SET @saved_slave_type_conversions = @@slave_type_conversions;
+SET GLOBAL SLAVE_TYPE_CONVERSIONS = 'ALL_NON_LOSSY';
+
eval CREATE TABLE t1 (
a float (47),
b double (143,9),
@@ -219,4 +222,6 @@ connection master;
DROP TABLE t1;
sync_slave_with_master;
+SET GLOBAL SLAVE_TYPE_CONVERSIONS = @saved_slave_type_conversions;
+
# END 5.1 Test Case