mariadb/mysql-test/suite/tokudb.bugs/t/2970.test
Rich Prohaska 2e14bf1b2f #2970 fix the 2970.test and result files refs[t:2970]
git-svn-id: file:///svn/mysql/tests/mysql-test@24537 c7de825b-a66e-492c-adef-691d508d4ae1
2010-10-13 13:25:55 +00:00

11 lines
461 B
Text

# test that the query planner chooses a covering index over a non-covering index with the same
# record cost
drop table if exists t2970;
create table t2970 (a int, b int, c int, d int, key(a), key(a,b));
insert into t2970 values (1,1,1,1),(1,2,3,4);
explain select a,count(b),max(b) from t2970 where a > 0 group by a order by a;
alter table t2970 engine=tokudb;
explain select a,count(b),max(b) from t2970 where a > 0 group by a order by a;
drop table t2970;