mariadb/storage/tokudb/mysql-test/tokudb_bugs/r/db762.result
Sergei Golubchik f20598b27d TokuDB 7.5.4
2015-01-13 23:44:32 +01:00

7 lines
197 B
Text

drop table if exists t1,t2;
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;