diff options
Diffstat (limited to 'mysql-test/r/rpl_temporary.result')
-rw-r--r-- | mysql-test/r/rpl_temporary.result | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mysql-test/r/rpl_temporary.result b/mysql-test/r/rpl_temporary.result index a628936b600..470a6302a2b 100644 --- a/mysql-test/r/rpl_temporary.result +++ b/mysql-test/r/rpl_temporary.result @@ -4,9 +4,8 @@ reset master; reset slave; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; start slave; -drop table if exists t1; +drop table if exists t1,t2; 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); create temporary table t3(f int); @@ -35,8 +34,7 @@ master-bin.000001 573 Query 1 573 use `test`; insert into t3 select * from t1 wh master-bin.000001 650 Query 1 650 use `test`; drop temporary table t3 master-bin.000001 708 Query 1 708 use `test`; insert into t2 select count(*) from t3 master-bin.000001 781 Query 1 781 use `test`; drop temporary table t3 -drop table if exists t1; -drop table if exists t2; +drop table t1, t2; use test; SET TIMESTAMP=1040323920; create table t1(f int); @@ -72,3 +70,4 @@ select * from t2; f 5 7 +drop table t1,t2; |