mariadb/mysql-test/suite/tokudb.bugs/r/4675.result
Zardosht Kasheff bf98417fcc refs #4675, add test
git-svn-id: file:///svn/mysql/tests/mysql-test@49930 c7de825b-a66e-492c-adef-691d508d4ae1
2012-11-13 21:54:42 +00:00

21 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;