diff options
Diffstat (limited to 'mysql-test/t/rpl_temporary.test')
-rw-r--r-- | mysql-test/t/rpl_temporary.test | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/mysql-test/t/rpl_temporary.test b/mysql-test/t/rpl_temporary.test index 1cb53c77f1f..75519b75f75 100644 --- a/mysql-test/t/rpl_temporary.test +++ b/mysql-test/t/rpl_temporary.test @@ -3,9 +3,11 @@ source include/master-slave.inc; connect (con1,localhost,root,,); connect (con2,localhost,root,,); -drop table if exists t1; +--disable_warnings +drop table if exists t1,t2; +--enable_warnings + create table t1(f int); -drop table if exists t2; create table t2(f int); insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10); @@ -38,8 +40,7 @@ select * from t2; show binlog events; -drop table if exists t1; -drop table if exists t2; +drop table t1, t2; use test; SET TIMESTAMP=1040323920; @@ -74,4 +75,5 @@ SET TIMESTAMP=1040324224; SET @@session.pseudo_thread_id=2; drop temporary table t3; -select * from t2;
\ No newline at end of file +select * from t2; +drop table t1,t2; |