summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorMichael Widenius <monty@mysql.com>2010-08-11 01:04:46 +0300
committerMichael Widenius <monty@mysql.com>2010-08-11 01:04:46 +0300
commit99b79db5dca6909456a40d859298ba3992b145da (patch)
tree5144cf8f645c01c403a72e14e5087b991fecef21 /mysql-test
parentf458432f6869a329d4f0db2c3ff26accee5148a8 (diff)
parente6cf286b5dcebc78332cdf05d6e20d9ae39d1875 (diff)
downloadmariadb-git-99b79db5dca6909456a40d859298ba3992b145da.tar.gz
Merge with 5.1
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/suite/maria/r/maria.result2
-rw-r--r--mysql-test/suite/pbxt/r/range.result8
-rw-r--r--mysql-test/suite/pbxt/t/range.test11
3 files changed, 12 insertions, 9 deletions
diff --git a/mysql-test/suite/maria/r/maria.result b/mysql-test/suite/maria/r/maria.result
index 7616f5dbff4..a56ae6ac401 100644
--- a/mysql-test/suite/maria/r/maria.result
+++ b/mysql-test/suite/maria/r/maria.result
@@ -2139,7 +2139,7 @@ Data records: 0 Deleted blocks: 0
Block_size: 8192
Recordlength: 99
-table description:
+Table description:
Key Start Len Index Type
1 2 30 multip. varchar
2 33 30 multip. char NULL
diff --git a/mysql-test/suite/pbxt/r/range.result b/mysql-test/suite/pbxt/r/range.result
index 4d5e0c4ab64..2439489581a 100644
--- a/mysql-test/suite/pbxt/r/range.result
+++ b/mysql-test/suite/pbxt/r/range.result
@@ -420,19 +420,19 @@ analyze table t1,t2;
Table Op Msg_type Msg_text
test.t1 analyze status OK
test.t2 analyze status OK
-explain select * from t1, t2 where t1.uid=t2.uid AND t1.uid > 0;
+explain select straight_join * from t1, t2 where t1.uid=t2.uid AND t1.uid > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range uid_index uid_index 4 NULL 1 Using where
1 SIMPLE t2 ref uid_index uid_index 4 test.t1.uid 1
-explain select * from t1, t2 where t1.uid=t2.uid AND t2.uid > 0;
+explain select straight_join * from t1, t2 where t1.uid=t2.uid AND t2.uid > 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range uid_index uid_index 4 NULL 1 Using where
1 SIMPLE t2 ref uid_index uid_index 4 test.t1.uid 1
-explain select * from t1, t2 where t1.uid=t2.uid AND t1.uid != 0;
+explain select straight_join * from t1, t2 where t1.uid=t2.uid AND t1.uid != 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range uid_index uid_index 4 NULL 2 Using where
1 SIMPLE t2 ref uid_index uid_index 4 test.t1.uid 1
-explain select * from t1, t2 where t1.uid=t2.uid AND t2.uid != 0;
+explain select straight_join * from t1, t2 where t1.uid=t2.uid AND t2.uid != 0;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range uid_index uid_index 4 NULL 2 Using where
1 SIMPLE t2 ref uid_index uid_index 4 test.t1.uid 1
diff --git a/mysql-test/suite/pbxt/t/range.test b/mysql-test/suite/pbxt/t/range.test
index 8615c76888d..2e4e2b7da12 100644
--- a/mysql-test/suite/pbxt/t/range.test
+++ b/mysql-test/suite/pbxt/t/range.test
@@ -380,10 +380,13 @@ select count(*) from t2;
analyze table t1,t2;
-explain select * from t1, t2 where t1.uid=t2.uid AND t1.uid > 0;
-explain select * from t1, t2 where t1.uid=t2.uid AND t2.uid > 0;
-explain select * from t1, t2 where t1.uid=t2.uid AND t1.uid != 0;
-explain select * from t1, t2 where t1.uid=t2.uid AND t2.uid != 0;
+# This part doesn't make sense for pbxt as the result may vary becasue
+# records_in_range() gives same results for t1 and t2.
+# Added straight_join to get predictable results
+explain select straight_join * from t1, t2 where t1.uid=t2.uid AND t1.uid > 0;
+explain select straight_join * from t1, t2 where t1.uid=t2.uid AND t2.uid > 0;
+explain select straight_join * from t1, t2 where t1.uid=t2.uid AND t1.uid != 0;
+explain select straight_join * from t1, t2 where t1.uid=t2.uid AND t2.uid != 0;
select * from t1, t2 where t1.uid=t2.uid AND t1.uid > 0;
select * from t1, t2 where t1.uid=t2.uid AND t1.uid != 0;