| Server IP : 45.40.142.9 / Your IP : 216.73.216.236 Web Server : Apache System : Linux s45-40-142-9.secureserver.net 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : bayspec ( 506) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/mysql-test/extra/rpl_tests/ |
Upload File : |
--source include/rpl_reset.inc --echo **** On Master **** connection master; eval CREATE TABLE t1 (a INT, b LONG) ENGINE=$engine; INSERT INTO t1 VALUES (1,1), (2,2); --source include/sync_slave_sql_with_master.inc --echo **** On Master **** connection master; eval $trunc_stmt t1; --source include/sync_slave_sql_with_master.inc let $diff_tables= master:t1, slave:t1; source include/diff_tables.inc; --echo ==== Test using a table with delete triggers ==== --echo **** On Master **** 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; --source include/sync_slave_sql_with_master.inc --echo **** On Master **** connection master; eval $trunc_stmt t1; --source include/sync_slave_sql_with_master.inc let $diff_tables= master:t2, slave:t2; source include/diff_tables.inc; connection master; DROP TABLE t1,t2; --source include/sync_slave_sql_with_master.inc