mirror of
https://github.com/MariaDB/server.git
synced 2025-04-05 06:45:33 +02:00

This will make mysql-test-run.pl try to schedule these long-running (> 60 seconds) tests early in --parallel runs, which helps avoid that the testsuite gets stuck with a few long-running tests at the end while most other test workers are idle. This speed up mtr --parallel=96 with 25 seconds for me. Reviewed-by: Brandon Nesterenko <brandon.nesterenko@mariadb.com> Signed-off-by: Kristian Nielsen <knielsen@knielsen-hq.org>
35 lines
964 B
Text
35 lines
964 B
Text
--source include/long_test.inc
|
|
--source include/have_innodb.inc
|
|
|
|
set session transaction isolation level read committed;
|
|
|
|
create table innodb_bug52663 (what varchar(5), id integer, count integer, primary key
|
|
(what, id)) engine=innodb;
|
|
insert into innodb_bug52663 values ('total', 0, 0);
|
|
begin;
|
|
|
|
connect (addconroot, localhost, root,,);
|
|
connection addconroot;
|
|
set session transaction isolation level read committed;
|
|
begin;
|
|
|
|
connection default;
|
|
update innodb_bug52663 set count = count + 1 where what = 'total' and id = 0;
|
|
select * from innodb_bug52663;
|
|
|
|
connection addconroot;
|
|
--error ER_LOCK_WAIT_TIMEOUT
|
|
update innodb_bug52663 set count = count + 1 where what = 'total' and id = 0;
|
|
select * from innodb_bug52663;
|
|
|
|
connection default;
|
|
commit;
|
|
|
|
connection addconroot;
|
|
update innodb_bug52663 set count = count + 1 where what = 'total' and id = 0;
|
|
commit;
|
|
select * from innodb_bug52663;
|
|
|
|
connection default;
|
|
select * from innodb_bug52663;
|
|
drop table innodb_bug52663;
|