summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/rpl/r/tokudb_innodb_xa_crash.result
blob: aa95091b40b270716d9aa9b5dd6123def0d11977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
include/master-slave.inc
[connection master]
CREATE TABLE t1(`a` INT) ENGINE=TokuDB;
CREATE TABLE t2(`a` INT) ENGINE=InnoDB;
connection master;
begin;
insert into t1 values (1);
insert into t2 values (1);
commit;
connection slave;
TABLES t1 and t2 must be equal otherwise an error will be thrown.
include/diff_tables.inc [master:test.t1, slave:test.t1]
include/diff_tables.inc [master:test.t2, slave:test.t2]
connection master;
drop table t1,t2;
include/rpl_end.inc