2000-12-28 02:56:38 +01:00
|
|
|
# TODO: Only run this if we have privilege to do flush table
|
|
|
|
|
|
|
|
#
|
|
|
|
# Test of flush table
|
|
|
|
#
|
|
|
|
|
2006-01-04 11:20:28 +01:00
|
|
|
# Should work in embedded server after mysqltest is fixed
|
|
|
|
-- source include/not_embedded.inc
|
2004-06-26 14:21:32 +02:00
|
|
|
--disable_warnings
|
|
|
|
drop table if exists t1,t2;
|
|
|
|
--enable_warnings
|
2004-06-24 15:06:56 +02:00
|
|
|
create table t1 (a int not null auto_increment primary key);
|
|
|
|
insert into t1 values(0);
|
2005-11-23 21:45:02 +01:00
|
|
|
|
|
|
|
# Test for with read lock + flush
|
|
|
|
|
2004-06-24 15:06:56 +02:00
|
|
|
lock table t1 read;
|
|
|
|
flush table t1;
|
|
|
|
check table t1;
|
2005-11-23 21:45:02 +01:00
|
|
|
unlock tables;
|
|
|
|
|
|
|
|
# Test for with 2 read lock in different thread + flush
|
|
|
|
|
|
|
|
lock table t1 read;
|
|
|
|
connect (locker,localhost,root,,test);
|
|
|
|
connection locker;
|
|
|
|
lock table t1 read;
|
|
|
|
connection default;
|
|
|
|
send flush table t1;
|
|
|
|
connection locker;
|
|
|
|
--sleep 2
|
|
|
|
select * from t1;
|
|
|
|
unlock tables;
|
|
|
|
connection default;
|
|
|
|
reap;
|
|
|
|
select * from t1;
|
|
|
|
unlock tables;
|
|
|
|
|
|
|
|
# Test for with a write lock and a waiting read lock + flush
|
|
|
|
|
|
|
|
lock table t1 write;
|
|
|
|
connection locker;
|
|
|
|
send lock table t1 read;
|
|
|
|
connection default;
|
|
|
|
sleep 2;
|
|
|
|
flush table t1;
|
|
|
|
select * from t1;
|
|
|
|
unlock tables;
|
|
|
|
connection locker;
|
|
|
|
reap;
|
|
|
|
unlock tables;
|
|
|
|
connection default;
|
|
|
|
|
|
|
|
# Test for with a read lock and a waiting write lock + flush
|
|
|
|
|
|
|
|
lock table t1 read;
|
|
|
|
connection locker;
|
|
|
|
send lock table t1 write;
|
|
|
|
connection default;
|
|
|
|
sleep 2;
|
|
|
|
flush table t1;
|
|
|
|
select * from t1;
|
|
|
|
unlock tables;
|
|
|
|
connection locker;
|
|
|
|
reap;
|
|
|
|
unlock tables;
|
|
|
|
select * from t1;
|
|
|
|
connection default;
|
2004-06-24 15:06:56 +02:00
|
|
|
drop table t1;
|
2005-11-23 21:45:02 +01:00
|
|
|
disconnect locker;
|
2004-06-24 15:06:56 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# In the following test FLUSH TABLES produces a deadlock
|
2004-09-24 18:39:25 +02:00
|
|
|
# (hang forever) if the fix for BUG #3565 is missing.
|
|
|
|
# And it shows that handler tables are re-opened after flush (BUG #4286).
|
2004-06-24 15:06:56 +02:00
|
|
|
#
|
|
|
|
create table t1(table_id char(20) primary key);
|
|
|
|
create table t2(table_id char(20) primary key);
|
|
|
|
insert into t1 values ('test.t1');
|
|
|
|
insert into t1 values ('');
|
|
|
|
insert into t2 values ('test.t2');
|
|
|
|
insert into t2 values ('');
|
|
|
|
handler t1 open as a1;
|
|
|
|
handler t1 open as a2;
|
|
|
|
handler t2 open;
|
|
|
|
handler a1 read first limit 9;
|
|
|
|
handler a2 read first limit 9;
|
|
|
|
handler t2 read first limit 9;
|
|
|
|
flush tables;
|
|
|
|
handler a1 read first limit 9;
|
|
|
|
handler a2 read first limit 9;
|
|
|
|
handler t2 read first limit 9;
|
|
|
|
#
|
2004-09-24 18:39:25 +02:00
|
|
|
--error 1066
|
2004-06-24 15:06:56 +02:00
|
|
|
handler t1 open as a1;
|
2004-09-24 18:39:25 +02:00
|
|
|
--error 1066
|
2004-06-24 15:06:56 +02:00
|
|
|
handler t1 open as a2;
|
2004-09-24 18:39:25 +02:00
|
|
|
--error 1066
|
2004-06-24 15:06:56 +02:00
|
|
|
handler t2 open;
|
|
|
|
handler a1 read first limit 9;
|
|
|
|
handler a2 read first limit 9;
|
|
|
|
handler t2 read first limit 9;
|
|
|
|
flush table t1;
|
|
|
|
handler a1 read first limit 9;
|
|
|
|
handler a2 read first limit 9;
|
|
|
|
handler t2 read first limit 9;
|
|
|
|
flush table t2;
|
|
|
|
handler t2 close;
|
|
|
|
drop table t1;
|
|
|
|
drop table t2;
|
|
|
|
|
2004-09-24 18:39:25 +02:00
|
|
|
#
|
|
|
|
# The fix for BUG #4286 cannot restore the position after a flush.
|
|
|
|
#
|
|
|
|
create table t1(table_id char(20) primary key);
|
|
|
|
insert into t1 values ('Record-01');
|
|
|
|
insert into t1 values ('Record-02');
|
|
|
|
insert into t1 values ('Record-03');
|
|
|
|
insert into t1 values ('Record-04');
|
|
|
|
insert into t1 values ('Record-05');
|
|
|
|
handler t1 open;
|
|
|
|
handler t1 read first limit 1;
|
|
|
|
handler t1 read next limit 1;
|
|
|
|
handler t1 read next limit 1;
|
|
|
|
flush table t1;
|
|
|
|
handler t1 read next limit 1;
|
|
|
|
handler t1 read next limit 1;
|
|
|
|
handler t1 close;
|
|
|
|
drop table t1;
|
2005-07-28 02:22:47 +02:00
|
|
|
|
2005-08-03 00:01:27 +02:00
|
|
|
#
|
|
|
|
# Bug #11934 Two sequential FLUSH TABLES WITH READ LOCK hangs client
|
|
|
|
#
|
|
|
|
FLUSH TABLES WITH READ LOCK ;
|
|
|
|
FLUSH TABLES WITH READ LOCK ;
|
|
|
|
UNLOCK TABLES;
|
|
|
|
|
2005-07-28 02:22:47 +02:00
|
|
|
# End of 4.1 tests
|