diff options
author | monty@donna.mysql.com <> | 2000-12-29 16:06:10 +0200 |
---|---|---|
committer | monty@donna.mysql.com <> | 2000-12-29 16:06:10 +0200 |
commit | 07b1f0dccdf7f58dd79448e293eff85383f450e1 (patch) | |
tree | 53ef6da34dcfaf79e0e133177cccfb9bb63a9637 /mysql-test/t/key_diff.test | |
parent | 38cd62e82a8a2fe50cd74c15ef040bb5dc1e1f8b (diff) | |
download | mariadb-git-07b1f0dccdf7f58dd79448e293eff85383f450e1.tar.gz |
Fixed --no-defaults in mysqltest
Diffstat (limited to 'mysql-test/t/key_diff.test')
-rw-r--r-- | mysql-test/t/key_diff.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/key_diff.test b/mysql-test/t/key_diff.test index d35644ae192..60afb5f81a4 100644 --- a/mysql-test/t/key_diff.test +++ b/mysql-test/t/key_diff.test @@ -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; |