Commit 09e849c6 authored by Rich Prohaska's avatar Rich Prohaska

#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
parent 5060544e
drop table if exists t2970;
Warnings:
Note 1051 Unknown table 't2970'
create table t2970 (a int, b int, c int, d int, key(a), key(a,b)) engine=innodb;
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;
id select_type table type possible_keys key key_len ref rows Extra
......
......@@ -2,7 +2,7 @@
# record cost
drop table if exists t2970;
create table t2970 (a int, b int, c int, d int, key(a), key(a,b)) engine=innodb;
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;
......
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