2 # include/test_fieldsize.inc
4 # This include file is designed to create a table with one column
5 # whose size on the master is greater than that on the slave. The
6 # test should fail with an error on the slave.
10 DROP
TABLE IF EXISTS t1;
12 sync_slave_with_master;
14 eval $test_table_slave;
17 eval $test_table_master;
19 --let $rpl_only_running_threads= 1
20 --source include/rpl_reset.inc
25 --let $slave_sql_errno= convert_error(ER_SLAVE_CONVERSION_FAILED)
# 1677
26 --source include/wait_for_slave_sql_error.inc
28 # The following should be 0
29 SELECT COUNT(*) FROM t1;
31 --source include/rpl_reset.inc
32 --let $rpl_only_running_threads= 0