mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 11:57:38 +02:00
Major replication test framework cleanup. This does the following:
- Ensure that all tests clean up the replication state when they
finish, by making check-testcase check the output of SHOW SLAVE STATUS.
This implies:
- Slave must not be running after test finished. This is good
because it removes the risk for sporadic errors in subsequent
tests when a test forgets to sync correctly.
- Slave SQL and IO errors must be cleared when test ends. This is
good because we will notice if a test gets an unexpected error in
the slave threads near the end.
- We no longer have to clean up before a test starts.
- Ensure that all tests that wait for an error in one of the slave
threads waits for a specific error. It is no longer possible to
source wait_for_slave_[sql|io]_to_stop.inc when there is an error
in one of the slave threads. This is good because:
- If a test expects an error but there is a bug that causes
another error to happen, or if it stops the slave thread without
an error, then we will notice.
- When developing tests, wait_for_*_to_[start|stop].inc will fail
immediately if there is an error in the relevant slave thread.
Before this patch, we had to wait for the timeout.
- Remove duplicated and repeated code for setting up unusual replication
topologies. Now, there is a single file that is capable of setting
up arbitrary topologies (include/rpl_init.inc, but
include/master-slave.inc is still available for the most common
topology). Tests can now end with include/rpl_end.inc, which will clean
up correctly no matter what topology is used. The topology can be
changed with include/rpl_change_topology.inc.
- Improved debug information when tests fail. This includes:
- debug info is printed on all servers configured by include/rpl_init.inc
- User can set $rpl_debug=1, which makes auxiliary replication files
print relevant debug info.
- Improved documentation for all auxiliary replication files. Now they
describe purpose, usage, parameters, and side effects.
- Many small code cleanups:
- Made have_innodb.inc output a sensible error message.
- Moved contents of rpl000017-slave.sh into rpl000017.test
- Added mysqltest variables that expose the current state of
disable_warnings/enable_warnings and friends.
- Too many to list here: see per-file comments for details.
209 lines
5.1 KiB
Text
209 lines
5.1 KiB
Text
#############################################################################
|
|
# This test is being created to test out the non deterministic items with #
|
|
# row based replication. #
|
|
#############################################################################
|
|
# Test: Contains two stored procedures test one that insert data into tables#
|
|
# and use the LAST_INSERTED_ID() on tables with FOREIGN KEY(a) #
|
|
# REFERENCES ON DELETE CASCADE. This test also has a delete sp that #
|
|
# should cause a delete cascade. #
|
|
# The second test has a sp that will either insert rows or delete from#
|
|
# the table depending on the CASE outcome. The test uses this SP in a#
|
|
# transaction first rolling back and then commiting, #
|
|
#############################################################################
|
|
|
|
|
|
|
|
# Includes
|
|
-- source include/have_binlog_format_row.inc
|
|
-- source include/master-slave.inc
|
|
|
|
|
|
# Begin test section 1
|
|
|
|
eval CREATE TABLE test.t1 (a INT AUTO_INCREMENT KEY, t CHAR(6)) ENGINE=$engine_type;
|
|
eval CREATE TABLE test.t2 (a INT AUTO_INCREMENT KEY, f INT, FOREIGN KEY(a) REFERENCES test.t1(a) ON DELETE CASCADE) ENGINE=$engine_type;
|
|
|
|
delimiter |;
|
|
create procedure test.p1(IN i CHAR(6))
|
|
begin
|
|
INSERT INTO test.t1 (t) VALUES (i);
|
|
INSERT INTO test.t2 VALUES (NULL,LAST_INSERT_ID());
|
|
end|
|
|
create procedure test.p2(IN i INT)
|
|
begin
|
|
DELETE FROM test.t1 where a < i;
|
|
end|
|
|
delimiter ;|
|
|
|
|
let $message=< -- test 1 call p1 -- >;
|
|
--source include/show_msg.inc
|
|
SET FOREIGN_KEY_CHECKS=1;
|
|
call test.p1('texas');
|
|
call test.p1('Live');
|
|
call test.p1('next');
|
|
call test.p1('to');
|
|
call test.p1('OK');
|
|
call test.p1('MySQL');
|
|
|
|
let $message=< -- test 1 select master after p1 -- >;
|
|
--source include/show_msg.inc
|
|
|
|
SELECT * FROM test.t1;
|
|
SELECT * FROM test.t2;
|
|
|
|
let $message=< -- test 1 select slave after p1 -- >;
|
|
--source include/show_msg.inc
|
|
sync_slave_with_master;
|
|
SELECT * FROM test.t1;
|
|
SELECT * FROM test.t2;
|
|
|
|
let $message=< -- test 1 call p2 & select master -- >;
|
|
--source include/show_msg.inc
|
|
connection master;
|
|
call test.p2(4);
|
|
SELECT * FROM test.t1;
|
|
SELECT * FROM test.t2;
|
|
|
|
let $message=< -- test 1 select slave after p2 -- >;
|
|
--source include/show_msg.inc
|
|
sync_slave_with_master;
|
|
SELECT * FROM test.t1;
|
|
SELECT * FROM test.t2;
|
|
|
|
connection master;
|
|
#show binlog events;
|
|
let $message=< -- End test 1 Begin test 2 -- >;
|
|
--source include/show_msg.inc
|
|
# End test 1 Begin test 2
|
|
|
|
--disable_warnings
|
|
SET FOREIGN_KEY_CHECKS=0;
|
|
DROP PROCEDURE IF EXISTS test.p1;
|
|
DROP PROCEDURE IF EXISTS test.p2;
|
|
DROP TABLE IF EXISTS test.t1;
|
|
DROP TABLE IF EXISTS test.t2;
|
|
--enable_warnings
|
|
# End of cleanup
|
|
|
|
eval CREATE TABLE test.t1 (a INT, t CHAR(6), PRIMARY KEY(a)) ENGINE=$engine_type;
|
|
eval CREATE TABLE test.t2 (a INT, f INT, FOREIGN KEY(a) REFERENCES test.t1(a) ON UPDATE CASCADE, PRIMARY KEY(a)) ENGINE=$engine_type;
|
|
|
|
delimiter |;
|
|
CREATE PROCEDURE test.p1(IN nm INT, IN ch CHAR(6))
|
|
BEGIN
|
|
INSERT INTO test.t1 (a,t) VALUES (nm, ch);
|
|
INSERT INTO test.t2 VALUES (nm, LAST_INSERT_ID());
|
|
END|
|
|
CREATE PROCEDURE test.p2(IN i INT)
|
|
BEGIN
|
|
UPDATE test.t1 SET a = i*10 WHERE a = i;
|
|
END|
|
|
delimiter ;|
|
|
SET FOREIGN_KEY_CHECKS=1;
|
|
CALL test.p1(1,'texas');
|
|
CALL test.p1(2,'Live');
|
|
CALL test.p1(3,'next');
|
|
CALL test.p1(4,'to');
|
|
CALL test.p1(5,'OK');
|
|
CALL test.p1(6,'MySQL');
|
|
|
|
let $message=< -- test 2 select Master after p1 -- >;
|
|
--source include/show_msg.inc
|
|
SELECT * FROM test.t1;
|
|
SELECT * FROM test.t2;
|
|
|
|
let $message=< -- test 2 select Slave after p1 -- >;
|
|
--source include/show_msg.inc
|
|
sync_slave_with_master;
|
|
SELECT * FROM test.t1;
|
|
SELECT * FROM test.t2;
|
|
|
|
let $message=< -- test 2 call p2 & select Master -- >;
|
|
--source include/show_msg.inc
|
|
connection master;
|
|
CALL test.p2(2);
|
|
CALL test.p2(4);
|
|
CALL test.p2(6);
|
|
SELECT * FROM test.t1;
|
|
SELECT * FROM test.t2;
|
|
|
|
let $message=< -- test 1 select Slave after p2 -- >;
|
|
--source include/show_msg.inc
|
|
sync_slave_with_master;
|
|
SELECT * FROM test.t1;
|
|
SELECT * FROM test.t2;
|
|
|
|
connection master;
|
|
#show binlog events;
|
|
let $message=< -- End test 2 Begin test 3 -- >;
|
|
--source include/show_msg.inc
|
|
# End test 2 begin test 3
|
|
|
|
eval CREATE TABLE test.t3 (a INT AUTO_INCREMENT KEY, t CHAR(6))ENGINE=$engine_type;
|
|
|
|
delimiter |;
|
|
CREATE PROCEDURE test.p3(IN n INT)
|
|
begin
|
|
CASE n
|
|
WHEN 2 THEN
|
|
DELETE from test.t3;
|
|
ELSE
|
|
INSERT INTO test.t3 VALUES (NULL,'NONE');
|
|
END CASE;
|
|
end|
|
|
delimiter ;|
|
|
|
|
SET AUTOCOMMIT=0;
|
|
START TRANSACTION;
|
|
|
|
-- disable_query_log
|
|
-- disable_result_log
|
|
let $n=50;
|
|
while ($n)
|
|
{
|
|
eval call test.p3($n);
|
|
dec $n;
|
|
}
|
|
-- enable_result_log
|
|
-- enable_query_log
|
|
|
|
ROLLBACK;
|
|
select * from test.t3;
|
|
sync_slave_with_master;
|
|
select * from test.t3;
|
|
|
|
connection master;
|
|
START TRANSACTION;
|
|
|
|
-- disable_query_log
|
|
-- disable_result_log
|
|
let $n=50;
|
|
while ($n)
|
|
{
|
|
eval call test.p3($n);
|
|
dec $n;
|
|
}
|
|
-- enable_result_log
|
|
-- enable_query_log
|
|
|
|
COMMIT;
|
|
select * from test.t3;
|
|
sync_slave_with_master;
|
|
select * from test.t3;
|
|
|
|
connection master;
|
|
#show binlog events from 1627;
|
|
|
|
|
|
# First lets cleanup
|
|
SET AUTOCOMMIT=1;
|
|
SET FOREIGN_KEY_CHECKS=0;
|
|
DROP PROCEDURE test.p3;
|
|
DROP PROCEDURE test.p1;
|
|
DROP PROCEDURE test.p2;
|
|
DROP TABLE test.t1;
|
|
DROP TABLE test.t2;
|
|
DROP TABLE test.t3;
|
|
|
|
# End of 5.0 test case
|
|
--source include/rpl_end.inc
|