mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Bug#34376 - merge-big test fails
After changes to the bug fix for bug 26379 (Combination of FLUSH TABLE and REPAIR TABLE corrupts a MERGE table) the test case merge-big failed. Repaired the test case. Removed tests for INSERT ... SELECT, which is disabled for MERGE. Test case change only. mysql-test/r/merge-big.result: Bug#34376 - merge-big test fails Removed result for removed tests. mysql-test/t/merge-big.test: Bug#34376 - merge-big test fails Repaired the test case. Removed tests for INSERT ... SELECT, which is disabled for MERGE.
This commit is contained in:
@ -24,54 +24,3 @@ UNLOCK TABLES;
|
|||||||
SET SESSION debug="-d,sleep_open_and_lock_after_open";
|
SET SESSION debug="-d,sleep_open_and_lock_after_open";
|
||||||
# connection default
|
# connection default
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
#
|
|
||||||
# Extra tests for Bug#26379 - Combination of FLUSH TABLE and
|
|
||||||
# REPAIR TABLE corrupts a MERGE table
|
|
||||||
#
|
|
||||||
CREATE TABLE t1 (c1 INT);
|
|
||||||
CREATE TABLE t2 (c1 INT);
|
|
||||||
CREATE TABLE t3 (c1 INT);
|
|
||||||
INSERT INTO t1 VALUES (1);
|
|
||||||
INSERT INTO t2 VALUES (2);
|
|
||||||
INSERT INTO t3 VALUES (3);
|
|
||||||
#
|
|
||||||
# CREATE ... SELECT
|
|
||||||
# try to access parent from another thread.
|
|
||||||
#
|
|
||||||
# connection con1
|
|
||||||
SET SESSION debug="+d,sleep_create_select_before_lock";
|
|
||||||
CREATE TABLE t4 (c1 INT) ENGINE=MRG_MYISAM UNION=(t1,t2)
|
|
||||||
INSERT_METHOD=FIRST SELECT * FROM t3;
|
|
||||||
# connection default
|
|
||||||
# Now try to access the parent.
|
|
||||||
# If 3 is in table, SELECT had to wait.
|
|
||||||
SELECT * FROM t4 ORDER BY c1;
|
|
||||||
c1
|
|
||||||
1
|
|
||||||
2
|
|
||||||
3
|
|
||||||
# connection con1
|
|
||||||
SET SESSION debug="-d,sleep_create_select_before_lock";
|
|
||||||
# connection default
|
|
||||||
# Cleanup for next test.
|
|
||||||
DROP TABLE t4;
|
|
||||||
DELETE FROM t1 WHERE c1 != 1;
|
|
||||||
#
|
|
||||||
# CREATE ... SELECT
|
|
||||||
# try to access child from another thread.
|
|
||||||
#
|
|
||||||
# connection con1
|
|
||||||
SET SESSION debug="+d,sleep_create_select_before_lock";
|
|
||||||
CREATE TABLE t4 (c1 INT) ENGINE=MRG_MYISAM UNION=(t1,t2)
|
|
||||||
INSERT_METHOD=FIRST SELECT * FROM t3;
|
|
||||||
# connection default
|
|
||||||
# Now try to access a child.
|
|
||||||
# If 3 is in table, SELECT had to wait.
|
|
||||||
SELECT * FROM t1 ORDER BY c1;
|
|
||||||
c1
|
|
||||||
1
|
|
||||||
3
|
|
||||||
# connection con1
|
|
||||||
SET SESSION debug="-d,sleep_create_select_before_lock";
|
|
||||||
# connection default
|
|
||||||
DROP TABLE t1, t2, t3, t4;
|
|
||||||
|
@ -3,8 +3,10 @@
|
|||||||
#
|
#
|
||||||
# This test takes rather long time so let us run it only in --big-test mode
|
# This test takes rather long time so let us run it only in --big-test mode
|
||||||
--source include/big_test.inc
|
--source include/big_test.inc
|
||||||
# We are using some debug-only features in this test
|
# We use some debug-only features in this test
|
||||||
--source include/have_debug.inc
|
--source include/have_debug.inc
|
||||||
|
# We use INFORMATION_SCHEMA.PROCESSLIST in this test
|
||||||
|
--source include/not_embedded.inc
|
||||||
|
|
||||||
--disable_warnings
|
--disable_warnings
|
||||||
drop table if exists t1,t2,t3,t4,t5,t6;
|
drop table if exists t1,t2,t3,t4,t5,t6;
|
||||||
@ -46,6 +48,8 @@ LOCK TABLE t1 WRITE;
|
|||||||
--echo # connection default
|
--echo # connection default
|
||||||
connection default;
|
connection default;
|
||||||
--echo # Let INSERT go into thr_multi_lock().
|
--echo # Let INSERT go into thr_multi_lock().
|
||||||
|
#--sleep 8
|
||||||
|
#SELECT ID,STATE,INFO FROM INFORMATION_SCHEMA.PROCESSLIST;
|
||||||
let $wait_condition= SELECT 1 FROM INFORMATION_SCHEMA.PROCESSLIST
|
let $wait_condition= SELECT 1 FROM INFORMATION_SCHEMA.PROCESSLIST
|
||||||
WHERE ID = $con1_id AND STATE = 'Locked';
|
WHERE ID = $con1_id AND STATE = 'Locked';
|
||||||
--source include/wait_condition.inc
|
--source include/wait_condition.inc
|
||||||
@ -54,8 +58,10 @@ let $wait_condition= SELECT 1 FROM INFORMATION_SCHEMA.PROCESSLIST
|
|||||||
FLUSH TABLES;
|
FLUSH TABLES;
|
||||||
#SELECT NOW();
|
#SELECT NOW();
|
||||||
--echo # Let INSERT go through open_tables() where it sleeps.
|
--echo # Let INSERT go through open_tables() where it sleeps.
|
||||||
|
#--sleep 8
|
||||||
|
#SELECT ID,STATE,INFO FROM INFORMATION_SCHEMA.PROCESSLIST;
|
||||||
let $wait_condition= SELECT 1 FROM INFORMATION_SCHEMA.PROCESSLIST
|
let $wait_condition= SELECT 1 FROM INFORMATION_SCHEMA.PROCESSLIST
|
||||||
WHERE ID = $con1_id AND STATE = 'DBUG sleep';
|
WHERE ID = $con1_id AND STATE = 'Waiting for table';
|
||||||
--source include/wait_condition.inc
|
--source include/wait_condition.inc
|
||||||
#SELECT NOW();
|
#SELECT NOW();
|
||||||
--echo # Unlock and close table and wait for con1 to close too.
|
--echo # Unlock and close table and wait for con1 to close too.
|
||||||
@ -74,77 +80,3 @@ UNLOCK TABLES;
|
|||||||
connection default;
|
connection default;
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
|
|
||||||
--echo #
|
|
||||||
--echo # Extra tests for Bug#26379 - Combination of FLUSH TABLE and
|
|
||||||
--echo # REPAIR TABLE corrupts a MERGE table
|
|
||||||
--echo #
|
|
||||||
CREATE TABLE t1 (c1 INT);
|
|
||||||
CREATE TABLE t2 (c1 INT);
|
|
||||||
CREATE TABLE t3 (c1 INT);
|
|
||||||
INSERT INTO t1 VALUES (1);
|
|
||||||
INSERT INTO t2 VALUES (2);
|
|
||||||
INSERT INTO t3 VALUES (3);
|
|
||||||
--echo #
|
|
||||||
--echo # CREATE ... SELECT
|
|
||||||
--echo # try to access parent from another thread.
|
|
||||||
--echo #
|
|
||||||
#SELECT NOW();
|
|
||||||
--echo # connection con1
|
|
||||||
connect (con1,localhost,root,,);
|
|
||||||
let $con1_id= `SELECT CONNECTION_ID()`;
|
|
||||||
SET SESSION debug="+d,sleep_create_select_before_lock";
|
|
||||||
send CREATE TABLE t4 (c1 INT) ENGINE=MRG_MYISAM UNION=(t1,t2)
|
|
||||||
INSERT_METHOD=FIRST SELECT * FROM t3;
|
|
||||||
--echo # connection default
|
|
||||||
connection default;
|
|
||||||
# wait for the other query to start executing
|
|
||||||
let $wait_condition= SELECT 1 FROM INFORMATION_SCHEMA.PROCESSLIST
|
|
||||||
WHERE ID = $con1_id AND STATE = 'DBUG sleep';
|
|
||||||
--source include/wait_condition.inc
|
|
||||||
#SELECT NOW();
|
|
||||||
--echo # Now try to access the parent.
|
|
||||||
--echo # If 3 is in table, SELECT had to wait.
|
|
||||||
SELECT * FROM t4 ORDER BY c1;
|
|
||||||
#SELECT NOW();
|
|
||||||
--echo # connection con1
|
|
||||||
connection con1;
|
|
||||||
reap;
|
|
||||||
#SELECT NOW();
|
|
||||||
SET SESSION debug="-d,sleep_create_select_before_lock";
|
|
||||||
disconnect con1;
|
|
||||||
--echo # connection default
|
|
||||||
connection default;
|
|
||||||
--echo # Cleanup for next test.
|
|
||||||
DROP TABLE t4;
|
|
||||||
DELETE FROM t1 WHERE c1 != 1;
|
|
||||||
--echo #
|
|
||||||
--echo # CREATE ... SELECT
|
|
||||||
--echo # try to access child from another thread.
|
|
||||||
--echo #
|
|
||||||
#SELECT NOW();
|
|
||||||
--echo # connection con1
|
|
||||||
connect (con1,localhost,root,,);
|
|
||||||
let $con1_id= `SELECT CONNECTION_ID()`;
|
|
||||||
SET SESSION debug="+d,sleep_create_select_before_lock";
|
|
||||||
send CREATE TABLE t4 (c1 INT) ENGINE=MRG_MYISAM UNION=(t1,t2)
|
|
||||||
INSERT_METHOD=FIRST SELECT * FROM t3;
|
|
||||||
--echo # connection default
|
|
||||||
connection default;
|
|
||||||
# wait for the other query to start executing
|
|
||||||
let $wait_condition= SELECT 1 FROM INFORMATION_SCHEMA.PROCESSLIST
|
|
||||||
WHERE ID = $con1_id AND STATE = 'DBUG sleep';
|
|
||||||
--source include/wait_condition.inc
|
|
||||||
#SELECT NOW();
|
|
||||||
--echo # Now try to access a child.
|
|
||||||
--echo # If 3 is in table, SELECT had to wait.
|
|
||||||
SELECT * FROM t1 ORDER BY c1;
|
|
||||||
#SELECT NOW();
|
|
||||||
--echo # connection con1
|
|
||||||
connection con1;
|
|
||||||
reap;
|
|
||||||
#SELECT NOW();
|
|
||||||
SET SESSION debug="-d,sleep_create_select_before_lock";
|
|
||||||
disconnect con1;
|
|
||||||
--echo # connection default
|
|
||||||
connection default;
|
|
||||||
DROP TABLE t1, t2, t3, t4;
|
|
||||||
|
Reference in New Issue
Block a user