Commit f15e49c1 authored by Zardosht Kasheff's avatar Zardosht Kasheff

[t:3007], fix result file

git-svn-id: file:///svn/mysql/tests/mysql-test@25585 c7de825b-a66e-492c-adef-691d508d4ae1
parent fcba6d57
...@@ -25,14 +25,14 @@ alter table foo drop index a; ...@@ -25,14 +25,14 @@ alter table foo drop index a;
alter table foo add clustering index (a); alter table foo add clustering index (a);
explain select * from foo where a=2 and b=2; explain select * from foo where a=2 and b=2;
id select_type table type possible_keys key key_len ref rows Extra id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE foo range b,a a 5 NULL 6144 Using where 1 SIMPLE foo ref b,a a 5 const 6144 Using where
alter table foo drop index a; alter table foo drop index a;
alter table foo drop index b; alter table foo drop index b;
alter table foo add index (a); alter table foo add index (a);
alter table foo add clustering index(b); alter table foo add clustering index(b);
explain select * from foo where a=2 and b=2; explain select * from foo where a=2 and b=2;
id select_type table type possible_keys key key_len ref rows Extra id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE foo range a,b b 5 NULL 6144 Using where 1 SIMPLE foo ref a,b b 5 const 6144 Using where
alter table foo drop index a; alter table foo drop index a;
alter table foo drop index b; alter table foo drop index b;
alter table foo add clustering index (a), add clustering index (b); alter table foo add clustering index (a), add clustering index (b);
......
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