From f2351cbb23b6f02a9d74d8cfbacf7afc769236bf Mon Sep 17 00:00:00 2001 From: Rich Prohaska Date: Fri, 8 Jun 2012 14:01:11 +0000 Subject: [PATCH] #5001 add test result file refs[t:5001] git-svn-id: file:///svn/mysql/tests/mysql-test@44365 c7de825b-a66e-492c-adef-691d508d4ae1 --- .../suite/rpl/r/tokudb_innodb_xa_crash.result | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 mysql-test/suite/rpl/r/tokudb_innodb_xa_crash.result diff --git a/mysql-test/suite/rpl/r/tokudb_innodb_xa_crash.result b/mysql-test/suite/rpl/r/tokudb_innodb_xa_crash.result new file mode 100644 index 00000000000..78a66421446 --- /dev/null +++ b/mysql-test/suite/rpl/r/tokudb_innodb_xa_crash.result @@ -0,0 +1,13 @@ +include/master-slave.inc +[connection master] +CREATE TABLE t1(`a` INT) ENGINE=TokuDB; +CREATE TABLE t2(`a` INT) ENGINE=InnoDB; +begin; +insert into t1 values (1); +insert into t2 values (1); +commit; +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] +drop table t1,t2; +include/rpl_end.inc