mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
21 lines
489 B
Text
21 lines
489 B
Text
--source include/have_tokudb.inc
|
|
#
|
|
# Record inconsistency.
|
|
#
|
|
#
|
|
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
|
|
|
|
--disable_warnings
|
|
DROP TABLE IF EXISTS foo;
|
|
--enable_warnings
|
|
set session tokudb_read_buf_size=5000;
|
|
create table foo (a varchar(300), b text)engine=TokuDB;
|
|
insert into foo values ("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", repeat('a',16384));
|
|
select * from foo;
|
|
delete from foo;
|
|
insert into foo values ("aaa","bbbbbb");
|
|
select * from foo;
|
|
|
|
# Final cleanup.
|
|
DROP TABLE foo;
|
|
|