1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Move mysql-test-run/extra/rpl_tests to suite/rpl/include

Renamed suite/rpl/include/rpl_sync.inc to rpl_sync_test.inc to
remove clash with include/rpl_sync.inc
This commit is contained in:
Michael Widenius
2018-03-09 15:14:33 +02:00
committed by Monty
parent 108ed22854
commit 39018f2a5a
290 changed files with 891 additions and 890 deletions

View File

@@ -0,0 +1,29 @@
--source include/rpl_reset.inc
connection master;
eval CREATE TABLE t1 (a INT, b LONG) ENGINE=$engine;
INSERT INTO t1 VALUES (1,1), (2,2);
sync_slave_with_master;
connection master;
eval $trunc_stmt t1;
sync_slave_with_master;
let $diff_tables= master:t1, slave:t1;
source include/diff_tables.inc;
--echo ==== Test using a table with delete triggers ====
connection master;
SET @count := 1;
eval CREATE TABLE t2 (a INT, b LONG) ENGINE=$engine;
CREATE TRIGGER trg1 BEFORE DELETE ON t1 FOR EACH ROW SET @count := @count + 1;
sync_slave_with_master;
connection master;
eval $trunc_stmt t1;
sync_slave_with_master;
let $diff_tables= master:t2, slave:t2;
source include/diff_tables.inc;
connection master;
DROP TABLE t1,t2;
sync_slave_with_master;