mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
Fixed --no-defaults in mysqltest
This commit is contained in:
@@ -14,6 +14,6 @@ INSERT INTO t1 VALUES ('A','B'),('b','A'),('C','c'),('D','E'),('a','a');
|
||||
select * from t1,t1 as t2;
|
||||
explain select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;
|
||||
#select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;
|
||||
select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B order by t1.a;
|
||||
select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B order by binary t1.a,t2.a;
|
||||
select * from t1 where a='a';
|
||||
drop table t1;
|
||||
|
||||
Reference in New Issue
Block a user