List:Commits« Previous MessageNext Message »
From:gluh Date:December 13 2007 7:06pm
Subject:bk commit into 6.0 tree (gluh:1.2764)
View as plain text  
Below is the list of changes that have just been committed into a local
6.0 repository of gluh. When gluh does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2007-12-13 22:06:47+04:00, gluh@stripped +1 -0
  updated result file

  mysql-test/r/range.result@stripped, 2007-12-13 22:06:45+04:00, gluh@stripped +2 -2
    updated result file

diff -Nrup a/mysql-test/r/range.result b/mysql-test/r/range.result
--- a/mysql-test/r/range.result	2007-12-13 16:59:12 +04:00
+++ b/mysql-test/r/range.result	2007-12-13 22:06:45 +04:00
@@ -1151,7 +1151,7 @@ INSERT INTO t1 VALUES
 This must use range access:
 explain select * from t1 where dateval >= '2007-01-01 00:00:00' and dateval <= '2007-01-02 23:59:59';
 id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
-1	SIMPLE	t1	range	dateval	dateval	4	NULL	2	Using where
+1	SIMPLE	t1	range	dateval	dateval	4	NULL	2	Using index condition; Using MRR
 drop table t1;
 create table t1 (a int);
 insert into t1 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
@@ -1165,7 +1165,7 @@ Z
 In following EXPLAIN the access method should be ref, #rows~=500 (and not 2)
 explain select * from t2 where a=1000 and b<11;
 id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
-1	SIMPLE	t2	ref	a	a	5	const	502	Using where
+1	SIMPLE	t2	ref	a	a	5	const	502	Using index condition
 drop table t1, t2;
 End of 5.1 tests
 CREATE TABLE t1 (c1 DECIMAL(10,0),INDEX(c1));
Thread
bk commit into 6.0 tree (gluh:1.2764)gluh13 Dec