diff options
author | unknown <sanja@askmonty.org> | 2011-10-05 18:18:00 +0300 |
---|---|---|
committer | unknown <sanja@askmonty.org> | 2011-10-05 18:18:00 +0300 |
commit | 54caeee5d6bc06be4cc451aef49ee0a4f7655ce2 (patch) | |
tree | 6c73d0fa9a55cd2f205b2fb58cc4c4f8325f45f7 /mysql-test/r/explain.result | |
parent | f40f0ff679471948a6366ddfad9377b83abdf345 (diff) | |
download | mariadb-git-54caeee5d6bc06be4cc451aef49ee0a4f7655ce2.tar.gz |
Making subquery cache on by default.
Diffstat (limited to 'mysql-test/r/explain.result')
-rw-r--r-- | mysql-test/r/explain.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/explain.result b/mysql-test/r/explain.result index d5e648aa583..588440abb44 100644 --- a/mysql-test/r/explain.result +++ b/mysql-test/r/explain.result @@ -228,7 +228,7 @@ id select_type table type possible_keys key key_len ref rows filtered Extra 2 DEPENDENT SUBQUERY t2 ALL NULL NULL NULL NULL 2 100.00 Using where Warnings: Note 1276 Field or reference 'test.t1.c' of SELECT #2 was resolved in SELECT #1 -Note 1003 select (select 1 from `test`.`t2` where (`test`.`t2`.`d` = NULL)) AS `(SELECT 1 FROM t2 WHERE d = c)` from `test`.`t1` +Note 1003 select <expr_cache><NULL>((select 1 from `test`.`t2` where (`test`.`t2`.`d` = NULL))) AS `(SELECT 1 FROM t2 WHERE d = c)` from `test`.`t1` DROP TABLE t1, t2; # # Bug #48419: another explain crash.. |