1include/master-slave.inc
2[connection master]
3connection slave;
4CREATE TABLE t1dec102 (a DECIMAL(10,2));
5connection master;
6INSERT INTO t1dec102 VALUES(999.99);
7call mtr.add_suppression("Slave SQL.*Column 0 of table .* cannot be converted from type.* Error_code: 1677");
8include/wait_for_slave_sql_error_and_skip.inc [errno=1677]
9Last_SQL_Error = 'Column 0 of table 'test.t1dec102' cannot be converted from type 'decimal(0,?)/*old*/' to type 'decimal(10,2)''
10connection master;
11DROP TABLE t1dec102;
12connection slave;
13include/rpl_end.inc
14