1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Fixed bugs in mysqltest

This commit is contained in:
monty@donna.mysql.fi
2001-04-18 04:23:14 +03:00
parent 0bd3023393
commit 77fb94a212
3 changed files with 49 additions and 43 deletions

View File

@ -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;

View File

@ -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;