mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
The test that triggers multi-master conflict between two CTAS commands uses LOCK/UNLOCK TABLES to block local CTAS from progress. It could result in a race when UNLOCK TABLES command is issued a bit earlier then needed, causing local CTAS to run further and change wsrep transaction state, so that a different code path is taken later and the original error gets overridden, causing the test to fail. The solution is to replace LOCK/UNLOCK TABLES with debug sync points. Signed-off-by: Julius Goryavsky <julius.goryavsky@mariadb.com>
104 lines
2.7 KiB
Plaintext
104 lines
2.7 KiB
Plaintext
connection node_2;
|
|
connection node_1;
|
|
connection node_1;
|
|
SET SESSION default_storage_engine=InnoDB;
|
|
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
CREATE TABLE t1 AS SELECT * FROM t2;
|
|
ERROR 42S01: Table 't1' already exists
|
|
DROP TABLE t1,t2;
|
|
CREATE TABLE t1 AS SELECT * FROM t2;
|
|
ERROR 42S02: Table 'test.t2' doesn't exist
|
|
CREATE TABLE t1 AS SELECT 1 FROM DUAL;
|
|
connection node_2;
|
|
SELECT COUNT(*) = 1 FROM t1;
|
|
COUNT(*) = 1
|
|
1
|
|
connection node_1;
|
|
DROP TABLE t1;
|
|
connection node_1;
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
CREATE TABLE t1 AS SELECT * FROM t2;
|
|
connection node_2;
|
|
SELECT COUNT(*) = 0 FROM t1;
|
|
COUNT(*) = 0
|
|
1
|
|
connection node_1;
|
|
DROP TABLE t1,t2;
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=MyISAM;
|
|
INSERT INTO t2 VALUES (1),(2),(3),(4),(5);
|
|
CREATE TABLE t1 AS SELECT * FROM t2;
|
|
SELECT COUNT(*) = 5 FROM t1;
|
|
COUNT(*) = 5
|
|
1
|
|
connection node_2;
|
|
SELECT COUNT(*) = 5 FROM t1;
|
|
COUNT(*) = 5
|
|
1
|
|
connection node_1;
|
|
DROP TABLE t1,t2;
|
|
connection node_1;
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t2 VALUES (1),(2),(3),(4),(5);
|
|
CREATE TABLE t1 AS SELECT MAX(f1) AS f1 FROM t2;
|
|
connection node_2;
|
|
SELECT COUNT(*) = 1 FROM t1;
|
|
COUNT(*) = 1
|
|
1
|
|
SELECT f1 = 5 FROM t1;
|
|
f1 = 5
|
|
1
|
|
connection node_1;
|
|
DROP TABLE t1,t2;
|
|
connection node_1;
|
|
CREATE PROCEDURE sp1 ()
|
|
BEGIN
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t2 VALUES (1),(2),(3),(4),(5);
|
|
CREATE TABLE t1 AS SELECT * FROM t2;
|
|
END|
|
|
CALL sp1();
|
|
SELECT COUNT(*) = 5 FROM t1;
|
|
COUNT(*) = 5
|
|
1
|
|
connection node_2;
|
|
SELECT COUNT(*) = 5 FROM t1;
|
|
COUNT(*) = 5
|
|
1
|
|
connection node_1;
|
|
DROP TABLE t1, t2;
|
|
DROP PROCEDURE sp1;
|
|
connection node_1;
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t2 VALUES (1),(2),(3),(4),(5);
|
|
PREPARE stmt FROM 'CREATE TABLE t1 AS SELECT * FROM t2';
|
|
EXECUTE stmt;
|
|
DEALLOCATE PREPARE stmt;
|
|
DROP TABLE t1, t2;
|
|
connection node_1;
|
|
SET GLOBAL DEBUG_DBUG = 'd,sync.wsrep_apply_cb';
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t2 VALUES (1),(2),(3),(4),(5);
|
|
SET DEBUG_SYNC = 'create_table_select_before_create WAIT_FOR sync.wsrep_apply_cb_reached';
|
|
SET DEBUG_SYNC = 'create_table_select_before_lock SIGNAL signal.wsrep_apply_cb WAIT_FOR bf_abort';
|
|
CREATE TABLE t1 AS SELECT * FROM t2;;
|
|
connection node_2;
|
|
SELECT COUNT(*) = 5 FROM t2;
|
|
COUNT(*) = 5
|
|
1
|
|
CREATE TABLE t1 AS SELECT * FROM t2;
|
|
connection node_1;
|
|
ERROR 70100: Query execution was interrupted
|
|
SET GLOBAL DEBUG_DBUG = '';
|
|
SET DEBUG_SYNC = 'RESET';
|
|
DROP TABLE t1, t2;
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t2 VALUES (1),(2),(3),(4),(5);
|
|
CREATE TEMPORARY TABLE t1 AS SELECT * FROM t2;
|
|
connection node_2;
|
|
SELECT * FROM t1;
|
|
ERROR 42S02: Table 'test.t1' doesn't exist
|
|
CALL mtr.add_suppression("Slave SQL: Error 'Unknown table 'test.t1'' on query");
|
|
connection node_1;
|
|
DROP TABLE t1, t2;
|