mariadb/storage/tokudb/mysql-test/tokudb_bugs/t/db762.test
2016-04-26 20:56:25 +02:00

13 lines
326 B
Text

# test for DB-762 and DB-767
source include/have_tokudb.inc;
source include/have_innodb.inc;
disable_warnings;
drop table if exists t1,t2;
enable_warnings;
create table t1 (x int) engine=innodb;
lock table t1 read;
create temporary table t2 (x int) engine=tokudb;
insert into t2 values (1);
unlock tables;
drop table t1, t2;