Commit 2ba37f3f authored by Rich Prohaska's avatar Rich Prohaska

#3007 fix the 2968 mysql tests refs[t:3007]

git-svn-id: file:///svn/mysql/tests/mysql-test@25492 c7de825b-a66e-492c-adef-691d508d4ae1
parent 7ebdf635
......@@ -1043,3 +1043,4 @@ explain select straight_join * from s,t where s.b = t.b;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE s index b b 5 NULL 1000
1 SIMPLE t ref b b 5 test.s.b 11 Using where
drop table s,t;
......@@ -1113,3 +1113,4 @@ explain select straight_join * from s,t where s.b = t.b;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE s index b_2,b b_2 5 NULL 1000
1 SIMPLE t ref b_2,b b_2 5 test.s.b 11 Using where
drop table s,t;
......@@ -1117,3 +1117,4 @@ explain select straight_join s.a,t.a from s,t where s.b = t.b;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE s index b,b_3 b_3 5 NULL 1000
1 SIMPLE t ref b,b_3 b_3 5 test.s.b 11 Using where
drop table s,t;
......@@ -1099,3 +1099,4 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE s index b,b_2 b_2 5 NULL 1000
1 SIMPLE t ref b,b_2 b_2 5 test.s.b 11 Using where
1 SIMPLE u ref c,c_2 c_2 5 test.s.c 11 Using where
drop table s,t,u;
......@@ -40,6 +40,5 @@ show create table s;
show create table t;
explain select straight_join * from s,t where s.b = t.b;
#cleanup
drop table s,t;
......@@ -61,5 +61,5 @@ show create table s;
show create table t;
explain select straight_join * from s,t where s.b = t.b;
# cleanup
drop table s,t;
......@@ -64,4 +64,6 @@ show create table s;
show create table t;
explain select straight_join s.a,t.a from s,t where s.b = t.b;
# cleanup
drop table s,t;
......@@ -59,5 +59,7 @@ show create table t;
show create table u;
explain select straight_join * from s,t,u where s.b = t.b and s.c = u.c;
# cleanup
drop table s,t,u;
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