diff options
author | monty@mashka.mysql.fi <> | 2002-12-14 17:49:01 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2002-12-14 17:49:01 +0200 |
commit | d783e184369acf2cf40dc40b9d9cbd9db6c5189e (patch) | |
tree | 83ced56eeeb8e8fc8c70477eb454d5e43fb8cb56 /mysql-test/r/derived.result | |
parent | ab70ad7c1ea73fa1764ddbb1177a796ef38ea654 (diff) | |
parent | d49167bae5cfd3419261e29558bc17d2d36ad94d (diff) | |
download | mariadb-git-d783e184369acf2cf40dc40b9d9cbd9db6c5189e.tar.gz |
merge
Diffstat (limited to 'mysql-test/r/derived.result')
-rw-r--r-- | mysql-test/r/derived.result | 2 |
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; |