summaryrefslogtreecommitdiff
path: root/mysql-test/r/derived.result
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2002-12-14 17:49:01 +0200
committermonty@mashka.mysql.fi <>2002-12-14 17:49:01 +0200
commitd783e184369acf2cf40dc40b9d9cbd9db6c5189e (patch)
tree83ced56eeeb8e8fc8c70477eb454d5e43fb8cb56 /mysql-test/r/derived.result
parentab70ad7c1ea73fa1764ddbb1177a796ef38ea654 (diff)
parentd49167bae5cfd3419261e29558bc17d2d36ad94d (diff)
downloadmariadb-git-d783e184369acf2cf40dc40b9d9cbd9db6c5189e.tar.gz
merge
Diffstat (limited to 'mysql-test/r/derived.result')
-rw-r--r--mysql-test/r/derived.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/derived.result b/mysql-test/r/derived.result
index 94977b4f2f0..03e00b206b2 100644
--- a/mysql-test/r/derived.result
+++ b/mysql-test/r/derived.result
@@ -114,7 +114,7 @@ a t
20 20
explain select count(*) from t1 as tt1, (select * from t1) as tt2;
id select_type table type possible_keys key key_len ref rows Extra
-1 PRIMARY Select tables optimized away
+1 PRIMARY NULL NULL NULL NULL NULL NULL NULL Select tables optimized away
2 DERIVED tt1 index NULL a 4 NULL 10000 Using index
drop table if exists t1;
SELECT * FROM (SELECT (SELECT * FROM (SELECT 1 as a) as a )) as b;