summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorunknown <monty@donna.mysql.fi>2001-04-18 04:23:14 +0300
committerunknown <monty@donna.mysql.fi>2001-04-18 04:23:14 +0300
commit94bbfc8593a02ac964cdb06b796034b1a98064c4 (patch)
treed20669c823bd968b9d407bc966743303dd502f1c /mysql-test
parentbb85c4e3eef84af6faa2fe8be3b1b9f1a30410e5 (diff)
downloadmariadb-git-94bbfc8593a02ac964cdb06b796034b1a98064c4.tar.gz
Fixed bugs in mysqltest
client/mysqltest.c: Cleanup and bug fixes mysql-test/t/rpl000001.test: Fixed typo mysql-test/t/rpl000015.test: Changed to use table t1
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/t/rpl000001.test2
-rw-r--r--mysql-test/t/rpl000015.test10
2 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/t/rpl000001.test b/mysql-test/t/rpl000001.test
index dc29aea93ff..7989a679a70 100644
--- a/mysql-test/t/rpl000001.test
+++ b/mysql-test/t/rpl000001.test
@@ -60,7 +60,7 @@ sync_with_master ;
sleep 0.5;
# The following test can't be done because the result of Pos will differ
-# on different computes
+# on different computers
# --replace_result 9306 9999 3334 9999 3335 9999
# show slave status;
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;