mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
9e90516b35
git-svn-id: file:///svn/mysql/tests/mysql-test@48570 c7de825b-a66e-492c-adef-691d508d4ae1
27 lines
620 B
Text
Executable file
27 lines
620 B
Text
Executable file
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
|
|
DROP TABLE IF EXISTS foo;
|
|
create table foo ( a int, b bigint auto_increment, primary key (a,b));
|
|
insert into foo values (1,4444000000);
|
|
insert into foo (a) values (1),(1);
|
|
select * from foo;
|
|
a b
|
|
1 4444000000
|
|
1 4444000001
|
|
1 4444000002
|
|
flush table foo;
|
|
insert into foo (a) values (1),(1);
|
|
select * from foo;
|
|
a b
|
|
1 4444000000
|
|
1 4444000001
|
|
1 4444000002
|
|
1 4444000003
|
|
1 4444000004
|
|
drop table foo;
|
|
create table foo (a bigint auto_increment, primary key (a))engine=tokudb, auto_increment=4444000000;
|
|
insert into foo values (),();
|
|
select * from foo;
|
|
a
|
|
4444000000
|
|
4444000001
|
|
DROP TABLE foo;
|