Commit 8382070d authored by Yoni Fogel's avatar Yoni Fogel

refs #6086 Update query_plan.result to take in updated results. (Verified to be correct manually)

git-svn-id: file:///svn/mysql/tests/mysql-test@54296 c7de825b-a66e-492c-adef-691d508d4ae1
parent 755a68fe
......@@ -7,7 +7,7 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range b b 5 NULL NULL; Using where
explain select * from t1 where c > 2;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range c c 5 NULL NULL; Using where
1 SIMPLE t1 ALL c NULL NULL NULL NULL; Using where
explain select * from t1 where a > 4;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range PRIMARY PRIMARY 4 NULL NULL; Using where
......@@ -19,8 +19,8 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range b b 5 NULL NULL; Using where
explain select a from t1 where b > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range b b 5 NULL NULL; Using where; Using index
1 SIMPLE t1 index b b 5 NULL NULL; Using where; Using index
explain select a from t1 where c > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range c c 5 NULL NULL; Using where; Using index
1 SIMPLE t1 index c c 5 NULL NULL; Using where; Using index
drop table t1;
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