mirror of
https://github.com/MariaDB/server.git
synced 2025-04-26 00:49:55 +02:00
12 lines
276 B
Text
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;
|