summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/innodb_mysql.result
diff options
context:
space:
mode:
authorSergey Petrunya <psergey@askmonty.org>2013-08-05 20:57:48 +0400
committerSergey Petrunya <psergey@askmonty.org>2013-08-05 20:57:48 +0400
commitc98cd2c8161af772087376247e42a1ab89802097 (patch)
tree1b0c64da51c07a2ff4e2c29128b8144641c7b14d /mysql-test/suite/innodb/r/innodb_mysql.result
parent04684b7709f55a5a9de9226e834bcfbed05ee5c0 (diff)
downloadmariadb-git-c98cd2c8161af772087376247e42a1ab89802097.tar.gz
Update test results after fix for MDEV-4687
Diffstat (limited to 'mysql-test/suite/innodb/r/innodb_mysql.result')
-rw-r--r--mysql-test/suite/innodb/r/innodb_mysql.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/innodb/r/innodb_mysql.result b/mysql-test/suite/innodb/r/innodb_mysql.result
index b2df98bbfa6..56bc86968b3 100644
--- a/mysql-test/suite/innodb/r/innodb_mysql.result
+++ b/mysql-test/suite/innodb/r/innodb_mysql.result
@@ -361,8 +361,8 @@ EXPLAIN
SELECT COUNT(*) FROM t2 LEFT JOIN t1 ON t2.fkey = t1.id
WHERE t1.name LIKE 'A%' OR FALSE;
id select_type table type possible_keys key key_len ref rows Extra
-1 SIMPLE t2 index NULL fkey 5 NULL 5 Using index
-1 SIMPLE t1 eq_ref PRIMARY PRIMARY 4 test.t2.fkey 1 Using where
+1 SIMPLE t1 index PRIMARY,name name 23 NULL 3 Using where; Using index
+1 SIMPLE t2 ref fkey fkey 5 test.t1.id 1 Using index
DROP TABLE t1,t2;
CREATE TABLE t1 (
id int NOT NULL,