mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
bf98417fcc
git-svn-id: file:///svn/mysql/tests/mysql-test@49930 c7de825b-a66e-492c-adef-691d508d4ae1
21 lines
440 B
Text
21 lines
440 B
Text
--source include/have_tokudb.inc
|
|
#
|
|
# Record inconsistency.
|
|
#
|
|
#
|
|
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
|
|
|
|
--disable_warnings
|
|
DROP TABLE IF EXISTS foo;
|
|
--enable_warnings
|
|
create table foo (a int auto_increment, primary key (a))engine=TokuDB, auto_increment=5;
|
|
insert into foo values (),(),(),();
|
|
select * from foo;
|
|
truncate table foo;
|
|
select * from foo;
|
|
insert into foo values (),(),(),();
|
|
select * from foo;
|
|
|
|
# Final cleanup.
|
|
DROP TABLE foo;
|
|
|