summaryrefslogtreecommitdiff
path: root/mysql-test/t/explain_json.test
diff options
context:
space:
mode:
authorSergei Petrunia <psergey@askmonty.org>2014-11-28 16:46:05 +0300
committerSergei Petrunia <psergey@askmonty.org>2014-11-28 16:46:05 +0300
commit3a5e080d4dbe58675e6324eaa807bc2c7aa8795d (patch)
tree04eafbf46206af8bc6a5f65466cac11c0dd94645 /mysql-test/t/explain_json.test
parentd5fbfb9a93704ebe4b1df37f74850a7464140991 (diff)
downloadmariadb-git-3a5e080d4dbe58675e6324eaa807bc2c7aa8795d.tar.gz
Make explain_json.test pass on case-insensitive FS.
Diffstat (limited to 'mysql-test/t/explain_json.test')
-rw-r--r--mysql-test/t/explain_json.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/explain_json.test b/mysql-test/t/explain_json.test
index 6a58796ab13..3917ce40b1e 100644
--- a/mysql-test/t/explain_json.test
+++ b/mysql-test/t/explain_json.test
@@ -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;