mariadb/storage/tokudb/mysql-test/tokudb_bugs/t/db768.test
2016-04-26 20:56:25 +02: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;