mirror of
https://github.com/MariaDB/server.git
synced 2025-04-08 00:05:34 +02:00
13 lines
307 B
Text
13 lines
307 B
Text
drop table if exists t1,t2;
|
|
CREATE TABLE t1(`a` INT) ENGINE=TokuDB;
|
|
CREATE TABLE t2(`a` INT) ENGINE=InnoDB;
|
|
begin;
|
|
insert into t1 values (0);
|
|
insert into t2 values (0);
|
|
commit;
|
|
begin;
|
|
insert into t1 values (1);
|
|
insert into t2 values (1);
|
|
commit;
|
|
include/diff_tables.inc [test.t1, test.t2]
|
|
drop table t1,t2;
|