1# Testcase for BUG#4552 (DROP on two tables, one of which does not
2# exist, must be binlogged with a non-zero error code)
3source include/master-slave.inc;
4
5create table t1 (a int);
6--error 1051
7drop table t1, t2;
8--sync_slave_with_master
9
10# End of 4.1 tests
11
12--source include/rpl_end.inc
13