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');
17
select * from t1,t1 as t2;
18
explain select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;
19
#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 order by binary t1.a,t2.a;
21
select * from t1 where a='a';