mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
13 lines
536 B
Text
13 lines
536 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
connection slave;
|
|
CREATE TABLE t1dec102 (a DECIMAL(10,2));
|
|
connection master;
|
|
INSERT INTO t1dec102 VALUES(999.99);
|
|
call mtr.add_suppression("Slave SQL.*Column 0 of table .* cannot be converted from type.* Error_code: 1677");
|
|
include/wait_for_slave_sql_error_and_skip.inc [errno=1677]
|
|
Last_SQL_Error = 'Column 0 of table 'test.t1dec102' cannot be converted from type 'decimal(0,?)/*old*/' to type 'decimal(10,2)''
|
|
connection master;
|
|
DROP TABLE t1dec102;
|
|
connection slave;
|
|
include/rpl_end.inc
|