2
2
drop table if exists t1,t2;
5
# Test to see if select will get the lock ahead of low priority update
5
7
connect (locker,localhost,root,,);
6
8
connect (reader,localhost,root,,);
7
9
connect (writer,localhost,root,,);
12
create table t1(n int);
13
insert into t1 values (1);
16
send update low_priority t1 set n = 4;
19
select count(*) = 1 from information_schema.processlist
20
where state = "Table lock" and info = "update low_priority t1 set n = 4";
21
--source include/wait_condition.inc
22
send select n from t1;
25
select count(*) = 1 from information_schema.processlist
26
where state = "Table lock" and info = "select n from t1";
27
--source include/wait_condition.inc
36
create table t1(n int);
37
insert into t1 values (1);
40
send update low_priority t1 set n = 4;
43
select count(*) = 1 from information_schema.processlist
44
where state = "Table lock" and info = "update low_priority t1 set n = 4";
45
--source include/wait_condition.inc
54
# Test problem when using locks with multi-updates
55
# It should not block when multi-update is reading on a read-locked table
59
create table t1 (a int, b int);
60
create table t2 (c int, d int);
61
insert into t1 values(1,1);
62
insert into t1 values(2,2);
63
insert into t2 values(1,2);
66
update t1,t2 set c=a where b=d;
75
# Test problem when using locks on many tables and droping a table that
76
# is to-be-locked by another thread
80
create table t1 (a int);
81
create table t2 (a int);
82
lock table t1 write, t2 write;
84
send insert t1 select * from t2;
87
select count(*) = 1 from information_schema.processlist
88
where state = "Table lock" and info = "insert t1 select * from t2";
89
--source include/wait_condition.inc
98
# Same test as above, but with the dropped table locked twice
102
create table t1 (a int);
103
create table t2 (a int);
104
lock table t1 write, t2 write, t1 as t1_2 write, t2 as t2_2 write;
106
send insert t1 select * from t2;
109
select count(*) = 1 from information_schema.processlist
110
where state = "Table lock" and info = "insert t1 select * from t2";
111
--source include/wait_condition.inc
120
--echo End of 4.1 tests
123
# BUG#9998 - MySQL client hangs on USE "database"
125
create table t1(a int);
126
lock tables t1 write;
128
show columns from t1;
134
# Test if CREATE TABLE with LOCK TABLE deadlocks.
137
CREATE TABLE t1 (c1 int);
140
# This waits until t1 is unlocked.
142
send FLUSH TABLES WITH READ LOCK;
146
select count(*) = 1 from information_schema.processlist
147
where state = "Flushing tables" and info = "FLUSH TABLES WITH READ LOCK";
148
--source include/wait_condition.inc
149
# This must not block.
150
CREATE TABLE t2 (c1 int);
161
# Test if CREATE TABLE SELECT with LOCK TABLE deadlocks.
164
CREATE TABLE t1 (c1 int);
167
# This waits until t1 is unlocked.
169
send FLUSH TABLES WITH READ LOCK;
171
# This must not block.
174
select count(*) = 1 from information_schema.processlist
175
where state = "Flushing tables" and info = "FLUSH TABLES WITH READ LOCK";
176
--source include/wait_condition.inc
178
CREATE TABLE t2 AS SELECT * FROM t1;
10
190
# Bug#19815 - CREATE/RENAME/DROP DATABASE can deadlock on a global read lock
44
224
--error ER_DB_DROP_EXISTS
45
225
DROP DATABASE mysqltest_1;
228
# Bug #17264: MySQL Server freeze
231
# Disable warnings to allow test to run also without InnoDB
233
create table t1 (f1 int not null auto_increment, primary key(f1)) engine=innodb;
235
lock tables t1 write;
237
send alter table t1 auto_increment=0;
240
select count(*) = 1 from information_schema.processlist
241
where state = "Table lock" and info = "alter table t1 auto_increment=0";
242
--source include/wait_condition.inc
243
send alter table t1 auto_increment=0;
246
select count(*) = 2 from information_schema.processlist
247
where state = "Table lock" and info = "alter table t1 auto_increment=0";
248
--source include/wait_condition.inc
257
--echo End of 5.0 tests
260
## Bug #21281 "Pending write lock is incorrectly removed when its
261
## statement being KILLed"
263
#create table t1 (i int);
267
#--send update t1 set i= 10;
269
#let $wait_condition=
270
# select count(*) = 1 from information_schema.processlist
271
# where state = "Table lock" and info = "update t1 set i= 10";
272
#--source include/wait_condition.inc
273
#--send select * from t1;
275
#let $wait_condition=
276
# select count(*) = 1 from information_schema.processlist
277
# where state = "Table lock" and info = "select * from t1";
278
#--source include/wait_condition.inc
279
#let $ID= `select id from information_schema.processlist where state = "Table lock" and info = "update t1 set i= 10"`;
280
#--replace_result $ID ID
281
#eval kill query $ID;
285
#--error ER_QUERY_INTERRUPTED
293
# Bug#32395 Alter table under a impending global read lock causes a server crash
297
# Test ALTER TABLE under LOCK TABLES and FLUSH TABLES WITH READ LOCK
301
drop table if exists t1;
303
create table t1 (i int);
304
connect (flush,localhost,root,,test,,);
306
--echo connection: default
307
lock tables t1 write;
309
--echo connection: flush
310
--send flush tables with read lock;
312
--echo connection: default
314
select count(*) = 1 from information_schema.processlist
315
where state = "Flushing tables";
316
--source include/wait_condition.inc
317
alter table t1 add column j int;
318
connect (insert,localhost,root,,test,,);
320
--echo connection: insert
322
select count(*) = 1 from information_schema.processlist
323
where state = "Flushing tables";
324
--source include/wait_condition.inc
325
--send insert into t1 values (1,2);
326
--echo connection: default
329
select count(*) = 1 from information_schema.processlist
330
where state = "Waiting for release of readlock";
331
--source include/wait_condition.inc
334
--echo connection: flush
337
select count(*) = 1 from information_schema.processlist
338
where state = "Waiting for release of readlock";
339
--source include/wait_condition.inc
346
select count(*) = 1 from t1;
347
--source include/wait_condition.inc
354
# Test that FLUSH TABLES under LOCK TABLES protects write locked tables
355
# from a impending FLUSH TABLES WITH READ LOCK
359
drop table if exists t1;
361
create table t1 (i int);
362
connect (flush,localhost,root,,test,,);
364
--echo connection: default
365
lock tables t1 write;
367
--echo connection: flush
368
--send flush tables with read lock;
370
--echo connection: default
372
select count(*) = 1 from information_schema.processlist
373
where state = "Flushing tables";
374
--source include/wait_condition.inc
377
select count(*) = 1 from information_schema.processlist
378
where state = "Flushing tables";
379
--source include/wait_condition.inc
382
select count(*) = 0 from information_schema.processlist
383
where state = "Flushing tables";
384
--source include/wait_condition.inc
392
# Bug#30331: Table_locks_waited shows inaccurate values
396
drop table if exists t1,t2;
398
create table t1 (a int);
401
let $tlwa= `show status like 'Table_locks_waited'`;
402
connect (waiter,localhost,root,,);
404
send insert into t1 values(1);
407
select count(*) = 1 from information_schema.processlist
408
where state = "Table lock" and info = "insert into t1 values(1)";
409
--source include/wait_condition.inc
410
let $tlwb= `show status like 'Table_locks_waited'`;
416
eval SET @tlwa= SUBSTRING_INDEX('$tlwa', ' ', -1);
417
eval SET @tlwb= SUBSTRING_INDEX('$tlwb', ' ', -1);
419
select @tlwa < @tlwb;
47
421
--echo End of 5.1 tests
424
# Test that DROP TABLES does not wait for a impending FLUSH TABLES
429
drop table if exists t1;
431
create table t1 (i int);
432
connect (flush,localhost,root,,test,,);
434
--echo connection: default
435
lock tables t1 write;
437
--echo connection: flush
438
--send flush tables with read lock;
440
--echo connection: default
442
select count(*) = 1 from information_schema.processlist
443
where state = "Flushing tables";
444
--source include/wait_condition.inc
447
select count(*) = 1 from information_schema.processlist
448
where state = "Flushing tables";
449
--source include/wait_condition.inc
452
select count(*) = 0 from information_schema.processlist
453
where state = "Flushing tables";
454
--source include/wait_condition.inc