diff options
author | Igor Babaev <igor@askmonty.org> | 2011-01-15 23:39:51 -0800 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2011-01-15 23:39:51 -0800 |
commit | c0d6079d1a489a91045e43e14e43025deb3e081c (patch) | |
tree | 2cf26b2fc0624cb24c64c8bfb9dc426dc1b059d9 /mysql-test/t/select.test | |
parent | e32efc013ae32609761431da4bf848ea5059d548 (diff) | |
download | mariadb-git-c0d6079d1a489a91045e43e14e43025deb3e081c.tar.gz |
Corrected test case for bug 698882 to make it platform independent
Diffstat (limited to 'mysql-test/t/select.test')
-rw-r--r-- | mysql-test/t/select.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/select.test b/mysql-test/t/select.test index de567dbf777..017e69c8a1a 100644 --- a/mysql-test/t/select.test +++ b/mysql-test/t/select.test @@ -4150,12 +4150,15 @@ EXPLAIN SELECT * from t1,t2,t3 WHERE t3.a3=t1.a1 AND t2.a2=t1.a1; EXPLAIN SELECT * FROM t1,t2,t3 WHERE t2.a2=t1.a1 AND t3.a3=t1.a1; EXPLAIN SELECT * FROM t1,t2,t3 WHERE t2.a2=t1.a1 AND t3.a3=t2.a2; +--sorted_result SELECT * from t1,t2,t3 WHERE t3.a3=t1.a1 AND t2.a2=t1.a1 AND LENGTH(CONCAT(CONCAT(t1.b1,t2.b2),t3.b3)) <= 7; +--sorted_result SELECT * FROM t1,t2,t3 WHERE t2.a2=t1.a1 AND t3.a3=t1.a1 AND LENGTH(CONCAT(CONCAT(t1.b1,t2.b2),t3.b3)) <= 7; +--sorted_result SELECT * FROM t1,t2,t3 WHERE t2.a2=t1.a1 AND t3.a3=t2.a2 AND LENGTH(CONCAT(CONCAT(t1.b1,t2.b2),t3.b3)) <= 7; |