From d78bd41f554240bbf80b517b62e0556288e908c0 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 10 Feb 2005 23:47:57 -0800 Subject: [PATCH] select.result: Adjusted results of the test case for bug #7520 for 4.1. mysql-test/r/select.result: Adjusted results of the test case for bug #7520 for 4.1. --- mysql-test/r/select.result | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mysql-test/r/select.result b/mysql-test/r/select.result index 607cd11f089..70ac33964ad 100644 --- a/mysql-test/r/select.result +++ b/mysql-test/r/select.result @@ -2392,11 +2392,11 @@ CREATE TABLE t2 ( a BLOB, INDEX (a(20)) ); INSERT INTO t1 VALUES ('one'),('two'),('three'),('four'),('five'); INSERT INTO t2 VALUES ('one'),('two'),('three'),('four'),('five'); EXPLAIN SELECT * FROM t1 LEFT JOIN t2 USE INDEX (a) ON t1.a=t2.a; -table type possible_keys key key_len ref rows Extra -t1 ALL NULL NULL NULL NULL 5 -t2 ref a a 23 t1.a 5 +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t1 ALL NULL NULL NULL NULL 5 +1 SIMPLE t2 ref a a 23 test.t1.a 2 EXPLAIN SELECT * FROM t1 LEFT JOIN t2 FORCE INDEX (a) ON t1.a=t2.a; -table type possible_keys key key_len ref rows Extra -t1 ALL NULL NULL NULL NULL 5 -t2 ref a a 23 t1.a 5 +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t1 ALL NULL NULL NULL NULL 5 +1 SIMPLE t2 ref a a 23 test.t1.a 2 DROP TABLE t1, t2;