EVOLUTION-MANAGER
Edit File: rpl_tokudb_rfr_partition_table.result
include/master-slave.inc Warnings: Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection master] call mtr.add_suppression(".*read free replication is disabled for TokuDB table.*continue with rows lookup"); CREATE TABLE t1 (id int(11) NOT NULL, pid int(11), PRIMARY KEY (id)) ENGINE=TokuDB PARTITION BY RANGE (id) (PARTITION p_1 VALUES LESS THAN (10) ENGINE = TokuDB, PARTITION p_2 VALUES LESS THAN (20) ENGINE = TokuDB, PARTITION p_all VALUES LESS THAN MAXVALUE ENGINE = TokuDB); insert into t1 values (1, 1), (2, 2), (3, 3), (11, 11), (12, 12), (13, 13); CREATE TABLE t2 (id int(11) NOT NULL, pid int(11), key idx_1(id)) ENGINE=TokuDB PARTITION BY RANGE (id) (PARTITION p_1 VALUES LESS THAN (10) ENGINE = TokuDB, PARTITION p_2 VALUES LESS THAN (20) ENGINE = TokuDB, PARTITION p_all VALUES LESS THAN MAXVALUE ENGINE = TokuDB); insert into t2 values (1, 1), (2, 2), (3, 3), (11, 11), (12, 12), (13, 13); include/stop_slave.inc set global debug= "+d,tokudb_crash_if_rpl_looks_up_row,tokudb_crash_if_rpl_does_uniqueness_check"; include/start_slave.inc insert into t1 values(21, 21); delete from t1 where id = 11; update t1 set pid = 2 where id = 1; include/diff_tables.inc [master:test.t1, slave:test.t1] insert into t2 values(21, 21); delete from t2 where id = 11; update t2 set pid = 2 where id = 1; include/diff_tables.inc [master:test.t2, slave:test.t2] drop table t1; drop table t2; include/stop_slave.inc set global debug= "-d,tokudb_crash_if_rpl_looks_up_row,tokudb_crash_if_rpl_does_uniqueness_check"; set global debug= @saved_debug; include/start_slave.inc include/rpl_end.inc