2012-03-01 16:24:59 +01:00
|
|
|
#
|
|
|
|
# verify that DELETE IGNORE does not ignore deadlocks
|
|
|
|
#
|
|
|
|
|
|
|
|
--source include/have_innodb.inc
|
|
|
|
|
|
|
|
SET GLOBAL innodb_lock_wait_timeout=3;
|
|
|
|
|
|
|
|
CREATE TABLE t1 (col_int_key INT, KEY (col_int_key)) ENGINE=InnoDB;
|
|
|
|
INSERT INTO t1 VALUES (6);
|
|
|
|
|
|
|
|
--connect (con1,localhost,root,,test)
|
|
|
|
SET SESSION TRANSACTION ISOLATION LEVEL SERIALIZABLE;
|
|
|
|
SET AUTOCOMMIT=OFF;
|
|
|
|
SELECT col_int_key FROM t1;
|
|
|
|
|
|
|
|
--connection default
|
|
|
|
--send DELETE IGNORE FROM t1;
|
|
|
|
|
|
|
|
--connection con1
|
2012-03-02 08:32:16 +01:00
|
|
|
--error 0,ER_LOCK_DEADLOCK,ER_LOCK_WAIT_TIMEOUT
|
2012-03-01 16:24:59 +01:00
|
|
|
DELETE FROM t1 WHERE col_int_key IN (1, 40000000);
|
|
|
|
|
|
|
|
--connection default
|
2020-02-28 12:59:30 +02:00
|
|
|
--disable_warnings
|
2012-03-02 08:32:16 +01:00
|
|
|
--error 0,ER_LOCK_DEADLOCK,ER_LOCK_WAIT_TIMEOUT
|
2012-03-01 16:24:59 +01:00
|
|
|
--reap
|
2020-02-28 12:59:30 +02:00
|
|
|
--enable_warnings
|
2012-03-01 16:24:59 +01:00
|
|
|
|
|
|
|
--disconnect con1
|
|
|
|
drop table t1;
|
|
|
|
SET GLOBAL innodb_lock_wait_timeout=default;
|
2016-12-19 17:32:45 -05:00
|
|
|
|
|
|
|
call mtr.add_suppression("Deadlock found when trying to get lock; try restarting transaction");
|