1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00
Files
mariadb/storage/tokudb/mysql-test/tokudb_bugs/t/5951.test
Sergei Golubchik 9a3b9a5416 tokudb test suites
2013-09-09 13:59:38 +02:00

35 lines
854 B
Plaintext

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