mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
62e6906bfb
increase coverage for table.cc in mysql_rm_table() ingore temporary gcov files fixed bug in replication test case
34 lines
623 B
Text
34 lines
623 B
Text
connect (con1,localhost,root,,);
|
|
connect (con2,localhost,root,,);
|
|
connection con1;
|
|
drop table if exists t1;
|
|
create temporary table t1(n int not null primary key);
|
|
drop table if exists t2;
|
|
create table t2(n int);
|
|
insert into t2 values(3);
|
|
let $1=100;
|
|
while ($1)
|
|
{
|
|
connection con1;
|
|
send replace into t1 select n from t2;
|
|
connection con2;
|
|
send flush tables;
|
|
connection con1;
|
|
reap;
|
|
connection con2;
|
|
reap;
|
|
dec $1;
|
|
}
|
|
|
|
connection con1;
|
|
select * from t1;
|
|
connection con2;
|
|
flush tables with read lock;
|
|
--error 1099;
|
|
drop table t2;
|
|
connection con1;
|
|
send drop table t2;
|
|
connection con2;
|
|
unlock tables;
|
|
connection con1;
|
|
reap;
|