1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Make explain_json.test pass on case-insensitive FS.

This commit is contained in:
Sergei Petrunia
2014-11-28 16:46:05 +03:00
parent d5fbfb9a93
commit 3a5e080d4d
2 changed files with 9 additions and 9 deletions

View File

@@ -63,10 +63,10 @@ drop table t1;
--echo # Join buffering
--echo #
create table t1 (a int, b int);
insert into t1 select A.a+10*B.a, A.a+10*B.a from t0 A, t0 B;
insert into t1 select tbl1.a+10*tbl2.a, tbl1.a+10*tbl2.a from t0 tbl1, t0 tbl2;
explain format=json
select * from t1 A, t1 B where A.a=B.a and A.b < 3 and B.b < 5;
select * from t1 tbl1, t1 tbl2 where tbl1.a=tbl2.a and tbl1.b < 3 and tbl2.b < 5;
drop table t1;