2
# Check on condition on different length keys.
5
drop table if exists t1;
15
INSERT INTO t1 VALUES ('A','B'),('b','A'),('C','c'),('D','E'),('a','a');
18
select * from t1 CROSS JOIN t1 as t2;
19
explain select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;
20
#select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;
21
select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B order by binary t1.a,t2.a;
22
select * from t1 where a='a';