summaryrefslogtreecommitdiff
path: root/mysql-test/r/rowid_order_innodb.result
diff options
context:
space:
mode:
authorVasil Dimov <vasil.dimov@oracle.com>2010-08-17 09:25:08 +0300
committerVasil Dimov <vasil.dimov@oracle.com>2010-08-17 09:25:08 +0300
commitf0ba35c617945b0b767ce152d7ce0a91124bd13f (patch)
tree42ecb89ce3ff355e65c4a92d0d47e3be1f44d212 /mysql-test/r/rowid_order_innodb.result
parentaed93f872745f6b46b24dc2948a13074d1f368ea (diff)
downloadmariadb-git-f0ba35c617945b0b767ce152d7ce0a91124bd13f.tar.gz
Adjust rowid_order_innodb.result
This is a followup to vasil.dimov@oracle.com-20100816142329-yimenbuktd416z1a which improved the sampling algorithm.
Diffstat (limited to 'mysql-test/r/rowid_order_innodb.result')
-rw-r--r--mysql-test/r/rowid_order_innodb.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/rowid_order_innodb.result b/mysql-test/r/rowid_order_innodb.result
index e0796cd7ab5..dc339304041 100644
--- a/mysql-test/r/rowid_order_innodb.result
+++ b/mysql-test/r/rowid_order_innodb.result
@@ -15,7 +15,7 @@ insert into t1 values (-5, 1, 1),
(10, 1, 1);
explain select * from t1 force index(key1, key2) where key1 < 3 or key2 < 3;
id select_type table type possible_keys key key_len ref rows Extra
-1 SIMPLE t1 index_merge key1,key2 key1,key2 5,5 NULL 4 Using sort_union(key1,key2); Using where
+1 SIMPLE t1 index_merge key1,key2 key1,key2 5,5 NULL 5 Using sort_union(key1,key2); Using where
select * from t1 force index(key1, key2) where key1 < 3 or key2 < 3;
pk1 key1 key2
-100 1 1