File: tokudb_innodb_xa_crash.test

package info (click to toggle)
mariadb-10.0 10.0.32-0%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 476,064 kB
  • sloc: cpp: 1,400,131; ansic: 832,140; perl: 54,391; sh: 41,304; pascal: 32,365; yacc: 14,921; xml: 5,257; sql: 4,667; cs: 4,647; makefile: 4,555; ruby: 4,465; python: 2,292; lex: 1,427; java: 941; asm: 295; awk: 54; php: 22; sed: 16
file content (25 lines) | stat: -rw-r--r-- 609 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--source include/master-slave.inc
--source include/have_tokudb.inc
--source include/have_innodb.inc

eval CREATE TABLE t1(`a` INT) ENGINE=TokuDB;
eval CREATE TABLE t2(`a` INT) ENGINE=InnoDB;

connection master;
begin;
insert into t1 values (1);
insert into t2 values (1);
commit;

sync_slave_with_master;

--echo TABLES t1 and t2 must be equal otherwise an error will be thrown.
let $diff_tables= master:test.t1, slave:test.t1;
source include/diff_tables.inc;

let $diff_tables= master:test.t2, slave:test.t2;
source include/diff_tables.inc;

connection master;
drop table t1,t2;
--source include/rpl_end.inc