MOON
Server: Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4
System: Linux vps.panamaemb.org.sg 3.10.0-1160.80.1.vz7.191.4 #1 SMP Thu Dec 15 20:31:06 MSK 2022 x86_64
User: panama (500)
PHP: 5.2.17
Disabled: NONE
Upload Files
File: //proc/2/cwd/usr/share/mysql-test/extra/rpl_tests/rpl_truncate_helper.test
--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