mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
22 lines
341 B
Text
22 lines
341 B
Text
|
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
|
||
|
DROP TABLE IF EXISTS foo;
|
||
|
create table foo (a int auto_increment, primary key (a))engine=TokuDB, auto_increment=5;
|
||
|
insert into foo values (),(),(),();
|
||
|
select * from foo;
|
||
|
a
|
||
|
5
|
||
|
6
|
||
|
7
|
||
|
8
|
||
|
truncate table foo;
|
||
|
select * from foo;
|
||
|
a
|
||
|
insert into foo values (),(),(),();
|
||
|
select * from foo;
|
||
|
a
|
||
|
5
|
||
|
6
|
||
|
7
|
||
|
8
|
||
|
DROP TABLE foo;
|