Skip to content

Commit

Permalink
Merge branch '10.4-MDEV-18838' of https://github.com/codership/mariad…
Browse files Browse the repository at this point in the history
…b-server into 10.4-MDEV-22966
  • Loading branch information
sysprg committed Jul 14, 2020
2 parents de20872 + 7b8319f commit df1846a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions mysql-test/suite/galera/r/galera_toi_truncate.result
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
connection node_2;
SET SESSION wsrep_retry_autocommit = 0;
INSERT INTO t1 (f1) SELECT 1 FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4, ten AS a5, ten AS a6, ten AS a7, ten AS a8;
connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2;
connection node_2a;
connection node_1;
TRUNCATE TABLE t1;;
TRUNCATE TABLE t1;
connection node_2;
ERROR 40001: Deadlock found when trying to get lock; try restarting transaction
connection node_1;
connection node_2;
SELECT COUNT(*) AS EXPECT_0 FROM t1;
EXPECT_0
0
Expand Down
11 changes: 6 additions & 5 deletions mysql-test/suite/galera/t/galera_toi_truncate.test
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,18 @@ CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
SET SESSION wsrep_retry_autocommit = 0;
--send INSERT INTO t1 (f1) SELECT 1 FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4, ten AS a5, ten AS a6, ten AS a7, ten AS a8

--connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2
--connection node_2a
--let $wait_condition = SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE STATE LIKE 'Sending data%' AND INFO LIKE 'INSERT INTO t1 (f1)%';
--source include/wait_condition.inc

--connection node_1
--send TRUNCATE TABLE t1;
TRUNCATE TABLE t1;

--connection node_2
--error ER_LOCK_DEADLOCK
--reap

--connection node_1
--reap

--connection node_2
SELECT COUNT(*) AS EXPECT_0 FROM t1;

--connection node_1
Expand Down

0 comments on commit df1846a

Please sign in to comment.