~ubuntu-branches/ubuntu/utopic/mariadb-5.5/utopic-security

« back to all changes in this revision

Viewing changes to mysql-test/r/subselect_no_scache.result

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2014-04-17 20:55:22 UTC
  • mfrom: (2.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20140417205522-wof4l36nxhlkn89m
* New upstream release, fixing the following security issues:
  * Corresponding MariaDB CVEs for Oracle SPU April 2014 (Closes: #745330)
    - CVE-2014-0384 
    - CVE-2014-2419 
    - CVE-2014-2430 
    - CVE-2014-2431 
    - CVE-2014-2432 
    - CVE-2014-2436 
    - CVE-2014-2438 
    - CVE-2014-2440
* Re-enabled TokuDB with "if arch amd64" in d/rules
* Applied patch to log init output better
  (Closes https://mariadb.atlassian.net/browse/MDEV-5957)

Show diffs side-by-side

added added

removed removed

Lines of Context:
7013
7013
2       SUBQUERY        t1      index   a       a       5       NULL    2       Using where; Using index
7014
7014
2       SUBQUERY        t2      ref     b       b       5       test.t1.a       2       Using index
7015
7015
DROP TABLE t1,t2;
 
7016
#
 
7017
# MDEV-5991: crash in Item_field::used_tables
 
7018
#
 
7019
create table t1 (c int);
 
7020
select exists(select 1 from t1 group by `c` in (select `c` from t1));
 
7021
exists(select 1 from t1 group by `c` in (select `c` from t1))
 
7022
0
 
7023
drop table t1;
7016
7024
set optimizer_switch=default;
7017
7025
select @@optimizer_switch like '%subquery_cache=on%';
7018
7026
@@optimizer_switch like '%subquery_cache=on%'