2016-08-12 10:17:45 +02:00
|
|
|
call mtr.add_suppression("\\[Warning\\] InnoDB: Cannot find a free slot for an undo log. Do you have too");
|
2012-01-10 06:18:58 +01:00
|
|
|
drop database if exists mysqltest;
|
|
|
|
create database mysqltest;
|
|
|
|
CREATE TABLE mysqltest.transtable (id int unsigned NOT NULL PRIMARY KEY, val int DEFAULT 0) ENGINE=InnoDB;
|
2016-11-07 22:35:02 +01:00
|
|
|
select count(*) from information_schema.processlist where command != 'Daemon';
|
2012-01-10 06:18:58 +01:00
|
|
|
count(*)
|
|
|
|
33
|
2016-03-25 17:51:22 +01:00
|
|
|
connection default;
|
2012-01-10 06:18:58 +01:00
|
|
|
CREATE TABLE mysqltest.testtable (id int unsigned not null primary key) ENGINE=InnoDB;
|
2013-04-09 23:27:07 +02:00
|
|
|
ERROR HY000: Can't create table `mysqltest`.`testtable` (errno: 177 "Too many active concurrent transactions")
|
2016-11-07 22:35:02 +01:00
|
|
|
select count(*) from information_schema.processlist where command != 'Daemon';
|
2012-01-10 06:18:58 +01:00
|
|
|
count(*)
|
|
|
|
33
|
2016-03-25 17:51:22 +01:00
|
|
|
connection default;
|
2016-11-07 22:35:02 +01:00
|
|
|
select count(*) from information_schema.processlist where command != 'Daemon';
|
2012-01-10 06:18:58 +01:00
|
|
|
count(*)
|
|
|
|
33
|
|
|
|
drop database mysqltest;
|