1eval CREATE TABLE t1 (a INT) ENGINE=$engine_type; 2 3begin; 4insert into t1 values(1); 5flush tables with read lock; 6commit; 7--source include/sync_slave_sql_with_master.inc 8# cleanup 9connection master; 10unlock tables; 11drop table t1; 12--source include/sync_slave_sql_with_master.inc 13 14# End of 4.1 tests 15