mirror of
https://github.com/MariaDB/server.git
synced 2025-07-21 02:38:14 +02:00
34 lines
854 B
Text
34 lines
854 B
Text
--source include/have_tokudb.inc
|
|
#
|
|
# Record inconsistency.
|
|
#
|
|
#
|
|
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
|
|
|
|
--disable_warnings
|
|
DROP TABLE IF EXISTS t1;
|
|
--enable_warnings
|
|
|
|
create table t1
|
|
(c01 bigint unsigned not null auto_increment primary key,
|
|
c02 bigint unsigned not null default 0,
|
|
c03 bigint unsigned not null default 0,
|
|
c04 bigint unsigned not null default 0,
|
|
c05 bigint unsigned not null default 0,
|
|
c06 bigint unsigned not null default 0,
|
|
c07 bigint unsigned not null default 0,
|
|
c08 bigint unsigned not null default 0,
|
|
c09 bigint unsigned not null default 0,
|
|
c10 bigint unsigned not null default 0)
|
|
engine=tokudb;
|
|
|
|
insert into t1 (c01) values (NULL);
|
|
|
|
insert into t1 (c02,c03,c04,c05,c06,c07,c08,c09,c10) select c02,c03,c04,c05,c06,c07,c08,c09,c10 from t1;
|
|
|
|
flush tables;
|
|
|
|
select * from t1;
|
|
# Final cleanup.
|
|
DROP TABLE t1;
|
|
|