Commit 8fed2ad3 authored by Christian Rober's avatar Christian Rober

[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
parent 8be94606
......@@ -4,7 +4,7 @@ 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);
explain select * From foo where a = 2;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE foo ref a a 5 const 3 Using where
1 SIMPLE foo ref a a 5 const NULL; Using where
select * From foo where a = 2;
a b c
2 1 4
......
......@@ -12,6 +12,7 @@ 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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment