1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

several fixes to make tests pass in embedded-server mode

This commit is contained in:
holyfoot/hf@mysql.com/deer.(none)
2006-11-13 20:06:45 +04:00
parent 5d66d7fb14
commit 7ece4caad3
26 changed files with 336 additions and 371 deletions

View File

@@ -75,24 +75,3 @@ show create database test;
drop table t1;
# End of 4.1 tests
# FLUSH TABLES WITH READ LOCK should block writes to binlog too
connection con1;
create table t1 (a int) engine=innodb;
reset master;
set autocommit=0;
insert t1 values (1);
connection con2;
flush tables with read lock;
show master status;
connection con1;
send commit;
connection con2;
sleep 1;
show master status;
unlock tables;
connection con1;
reap;
drop table t1;
set autocommit=1;