diff options
author | sasha@mysql.sashanet.com <> | 2001-10-29 18:21:33 -0700 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2001-10-29 18:21:33 -0700 |
commit | 7fda1ab9f23557007875f97518faf06dbd02aea3 (patch) | |
tree | 60d10a11c6ad1781eac82dfd4567da51440ea2d7 /mysql-test/t/rpl000012.test | |
parent | f6321e8b75c3305aa7e167c8c05bbefc68dc1ecf (diff) | |
download | mariadb-git-7fda1ab9f23557007875f97518faf06dbd02aea3.tar.gz |
fixed bug with temporary tables replication if one does FLUSH LOGS
Diffstat (limited to 'mysql-test/t/rpl000012.test')
-rw-r--r-- | mysql-test/t/rpl000012.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/rpl000012.test b/mysql-test/t/rpl000012.test index 01ff9ec8a37..9f8ba9a4f91 100644 --- a/mysql-test/t/rpl000012.test +++ b/mysql-test/t/rpl000012.test @@ -9,6 +9,7 @@ insert into t2 select * from t1; drop table if exists test.t3; create temporary table test.t3 (n int not null); alter table test.t3 add primary key(n); +flush logs; insert into t3 values (100); insert into t2 select * from t3; drop table if exists test.t3; |