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

12 lines
276 B
Text

# test case for DB-768
source include/have_tokudb.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists t;
enable_warnings;
create table t (id int primary key);
set autocommit=OFF;
lock tables t write;
optimize table t;
unlock tables;
drop table t;