diff options
author | monty@donna.mysql.fi <> | 2001-04-18 04:23:14 +0300 |
---|---|---|
committer | monty@donna.mysql.fi <> | 2001-04-18 04:23:14 +0300 |
commit | 77fb94a21201484bbee76b51f78b9b1f17bb667e (patch) | |
tree | d20669c823bd968b9d407bc966743303dd502f1c /mysql-test/t/rpl000015.test | |
parent | 0bd30233937f44527cb90299f9f2398baa9fc57f (diff) | |
download | mariadb-git-77fb94a21201484bbee76b51f78b9b1f17bb667e.tar.gz |
Fixed bugs in mysqltest
Diffstat (limited to 'mysql-test/t/rpl000015.test')
-rw-r--r-- | mysql-test/t/rpl000015.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/t/rpl000015.test b/mysql-test/t/rpl000015.test index ce04b18d2e8..1003c355f15 100644 --- a/mysql-test/t/rpl000015.test +++ b/mysql-test/t/rpl000015.test @@ -17,15 +17,15 @@ slave start; sync_with_master; show slave status; connection master; -drop table if exists foo; -create table foo (n int); -insert into foo values (10),(45),(90); +drop table if exists t1; +create table t1 (n int); +insert into t1 values (10),(45),(90); save_master_pos; connection slave; sync_with_master; -select * from foo; +select * from t1; connection master; -drop table foo; +drop table t1; save_master_pos; connection slave; sync_with_master; |