summaryrefslogtreecommitdiff
path: root/mysql-test/r/explain.result
diff options
context:
space:
mode:
authorIgor Babaev <igor@askmonty.org>2011-07-21 15:55:08 -0700
committerIgor Babaev <igor@askmonty.org>2011-07-21 15:55:08 -0700
commit2092436457414f93061715dc7b45dbbe28f1e111 (patch)
treebe58f17044c6d6121cce2020268c289620026bec /mysql-test/r/explain.result
parent813aaac51d2aaf0c582cbcd869fd48b948b90d66 (diff)
parent63abf00a62313107884f0b304d2c53de73f4eacd (diff)
downloadmariadb-git-2092436457414f93061715dc7b45dbbe28f1e111.tar.gz
Merge.
Diffstat (limited to 'mysql-test/r/explain.result')
-rw-r--r--mysql-test/r/explain.result5
1 files changed, 3 insertions, 2 deletions
diff --git a/mysql-test/r/explain.result b/mysql-test/r/explain.result
index 1c55ff4edb5..30d56e0f8d7 100644
--- a/mysql-test/r/explain.result
+++ b/mysql-test/r/explain.result
@@ -312,7 +312,8 @@ INSERT INTO t2 VALUES (8);
EXPLAIN EXTENDED
SELECT * FROM ( SELECT t1.a FROM t1,t2 WHERE t2.a = t1.a ) AS t;
id select_type table type possible_keys key key_len ref rows filtered Extra
-1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables
+1 PRIMARY <derived2> system NULL NULL NULL NULL 0 0.00 const row not found
+2 DERIVED NULL NULL NULL NULL NULL NULL NULL NULL no matching row in const table
Warnings:
-Note 1003 select NULL AS `a` from `test`.`t1` join `test`.`t2` where 0
+Note 1003 select NULL AS `a` from (select NULL AS `a` from `test`.`t1` join `test`.`t2` where 0) `t`
DROP TABLE t1,t2;