Comment 2 for bug 903798

Revision history for this message
Elena Stepanova (elenst) wrote :

# MTR test case:

# Run with --mysqld=--slave-skip-errors=all
# or --mysqld=--slave-skip-error=1146.
# Please note that variations of the flow
# that cause error 1032 instead of 1146
# work all right.

--source include/master-slave.inc

SET binlog_format='row';
SET SQL_LOG_BIN=0;

CREATE TABLE t ( i INT );

SET SQL_LOG_BIN=1;
INSERT INTO t VALUES (1);

--sync_slave_with_master

# End of test case