mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
8fed2ad329
git-svn-id: file:///svn/mysql/tests/mysql-test@38944 c7de825b-a66e-492c-adef-691d508d4ae1
21 lines
452 B
Text
Executable file
21 lines
452 B
Text
Executable file
--source include/have_tokudb.inc
|
|
#
|
|
# Record inconsistency.
|
|
#
|
|
#
|
|
SET STORAGE_ENGINE = 'tokudb';
|
|
|
|
--disable_warnings
|
|
DROP TABLE IF EXISTS foo;
|
|
--enable_warnings
|
|
create table foo (a int, b int, c int, clustering key (a))engine=tokudb;
|
|
|
|
insert into foo values (1,1,1),(1,2,2),(1,3,3),(2,1,4),(2,2,5),(2,3,6),(3,1,7),(3,2,8);
|
|
|
|
--replace_column 9 NULL;
|
|
explain select * From foo where a = 2;
|
|
select * From foo where a = 2;
|
|
|
|
# Final cleanup.
|
|
DROP TABLE foo;
|
|
|