diff options
author | unknown <sanja@askmonty.org> | 2011-07-15 11:36:36 +0300 |
---|---|---|
committer | unknown <sanja@askmonty.org> | 2011-07-15 11:36:36 +0300 |
commit | af284b55f0206d1b921692fa10a6374745d1d2eb (patch) | |
tree | 1e89c7bf52a648d295cfbdd892af931ed26314ef /mysql-test/r/explain.result | |
parent | bf2844980300376262de43ae198d7aedfe9fae8e (diff) | |
download | mariadb-git-af284b55f0206d1b921692fa10a6374745d1d2eb.tar.gz |
Make subquery cache off by default.
mysql-test/r/subselect_scache.result:
Test with subquery cache on.
mysql-test/t/subselect_scache.test:
Test with subquery cache on.
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 33dc2ca9060..7bfb090f659 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 <expr_cache><NULL>((select 1 from `test`.`t2` where (`test`.`t2`.`d` = NULL))) AS `(SELECT 1 FROM t2 WHERE d = c)` from `test`.`t1` +Note 1003 select (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.. |