summaryrefslogtreecommitdiff
path: root/mysql-test/r/select_pkeycache.result
diff options
context:
space:
mode:
authorIgor Babaev <igor@askmonty.org>2011-01-15 23:39:51 -0800
committerIgor Babaev <igor@askmonty.org>2011-01-15 23:39:51 -0800
commitc0d6079d1a489a91045e43e14e43025deb3e081c (patch)
tree2cf26b2fc0624cb24c64c8bfb9dc426dc1b059d9 /mysql-test/r/select_pkeycache.result
parente32efc013ae32609761431da4bf848ea5059d548 (diff)
downloadmariadb-git-c0d6079d1a489a91045e43e14e43025deb3e081c.tar.gz
Corrected test case for bug 698882 to make it platform independent
Diffstat (limited to 'mysql-test/r/select_pkeycache.result')
-rw-r--r--mysql-test/r/select_pkeycache.result60
1 files changed, 30 insertions, 30 deletions
diff --git a/mysql-test/r/select_pkeycache.result b/mysql-test/r/select_pkeycache.result
index 23e4fa75ffb..0de259574f6 100644
--- a/mysql-test/r/select_pkeycache.result
+++ b/mysql-test/r/select_pkeycache.result
@@ -4916,65 +4916,65 @@ 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;
a1 b1 a2 b2 a3 b3
-2 xx 2 y 2 zz
-2 xx 2 y 2 zzzz
-2 xx 2 y 2 zzz
-2 xx 2 yy 2 zz
-2 xx 2 yy 2 zzz
-1 xxx 1 yy 1 z
-1 xxx 1 yy 1 zz
-1 xxx 1 yy 1 zz
-1 xxx 1 yy 1 z
+1 xxx 1 y 1 z
1 xxx 1 y 1 z
1 xxx 1 y 1 zz
1 xxx 1 y 1 zz
1 xxx 1 y 1 zzz
1 xxx 1 y 1 zzz
-1 xxx 1 y 1 z
+1 xxx 1 yy 1 z
+1 xxx 1 yy 1 z
+1 xxx 1 yy 1 zz
+1 xxx 1 yy 1 zz
1 xxx 1 yyy 1 z
1 xxx 1 yyy 1 z
-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;
-a1 b1 a2 b2 a3 b3
2 xx 2 y 2 zz
-2 xx 2 y 2 zzzz
2 xx 2 y 2 zzz
+2 xx 2 y 2 zzzz
2 xx 2 yy 2 zz
2 xx 2 yy 2 zzz
-1 xxx 1 yy 1 z
-1 xxx 1 yy 1 zz
-1 xxx 1 yy 1 zz
-1 xxx 1 yy 1 z
+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;
+a1 b1 a2 b2 a3 b3
+1 xxx 1 y 1 z
1 xxx 1 y 1 z
1 xxx 1 y 1 zz
1 xxx 1 y 1 zz
1 xxx 1 y 1 zzz
1 xxx 1 y 1 zzz
-1 xxx 1 y 1 z
+1 xxx 1 yy 1 z
+1 xxx 1 yy 1 z
+1 xxx 1 yy 1 zz
+1 xxx 1 yy 1 zz
1 xxx 1 yyy 1 z
1 xxx 1 yyy 1 z
-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;
-a1 b1 a2 b2 a3 b3
2 xx 2 y 2 zz
-2 xx 2 y 2 zzzz
2 xx 2 y 2 zzz
+2 xx 2 y 2 zzzz
2 xx 2 yy 2 zz
2 xx 2 yy 2 zzz
-1 xxx 1 yy 1 z
-1 xxx 1 yy 1 zz
-1 xxx 1 yy 1 zz
-1 xxx 1 yy 1 z
+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;
+a1 b1 a2 b2 a3 b3
+1 xxx 1 y 1 z
1 xxx 1 y 1 z
1 xxx 1 y 1 zz
1 xxx 1 y 1 zz
1 xxx 1 y 1 zzz
1 xxx 1 y 1 zzz
-1 xxx 1 y 1 z
+1 xxx 1 yy 1 z
+1 xxx 1 yy 1 z
+1 xxx 1 yy 1 zz
+1 xxx 1 yy 1 zz
1 xxx 1 yyy 1 z
1 xxx 1 yyy 1 z
+2 xx 2 y 2 zz
+2 xx 2 y 2 zzz
+2 xx 2 y 2 zzzz
+2 xx 2 yy 2 zz
+2 xx 2 yy 2 zzz
SET SESSION optimizer_switch=DEFAULT;
DROP TABLE t1,t2,t3;
End of 5.1 tests