mariadb/mysql-test/suite/tokudb.bugs/t/1711.test
Christian Rober 8fed2ad329 [t:4324] Missed test 1711 from tokudb.bugs, now updated to ignore row column.
git-svn-id: file:///svn/mysql/tests/mysql-test@38944 c7de825b-a66e-492c-adef-691d508d4ae1
2012-01-18 00:14:51 +00:00

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;