mirror of
https://github.com/MariaDB/server.git
synced 2025-05-27 01:57:48 +03:00
they are ignored to a new test suite "innodb_plugin". Remove a hack in mtr that was deployed to run the builtin InnoDB tests against the InnoDB Plugin. Also detect if a test is an 'innodb plugin test' and if so then transparently replace the builtin InnoDB with the InnoDB Plugin.
14 lines
332 B
Plaintext
14 lines
332 B
Plaintext
CREATE TABLE bug51920 (i INT) ENGINE=InnoDB;
|
|
INSERT INTO bug51920 VALUES (1);
|
|
BEGIN;
|
|
SELECT * FROM bug51920 FOR UPDATE;
|
|
i
|
|
1
|
|
UPDATE bug51920 SET i=2;
|
|
SELECT ID FROM INFORMATION_SCHEMA.PROCESSLIST
|
|
WHERE INFO="UPDATE bug51920 SET i=2"
|
|
INTO @thread_id;
|
|
KILL @thread_id;
|
|
ERROR 70100: Query execution was interrupted
|
|
DROP TABLE bug51920;
|