~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen, Otto Kekäläinen, James Page
  • Date: 2014-03-02 01:38:26 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140302013826-z3afnfteqo86pccd
Tags: 5.5.36-1
[ Otto Kekäläinen ]
* New upstream release.
* Updated Danish debconf translation (Closes: #739750).
* d/control: Added explicit Conflicts/Replaces for mysql-5.6 packages
  (Closes: #739841).
* d/control: Update for use of virtual-* packages for switching to/from
  MySQL alternatives.

[ James Page ]
* d/control: Drop Nicholas from Uploaders, MIA (Closes: #739360).
* d/control: Add libjemalloc-dev to BD's.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1109
1109
);
1110
1110
i1
1111
1111
DROP TABLE t1,t2,t3;
 
1112
#
 
1113
# MDEV-5582: Plugin 'MEMORY' has ref_count=1 after shutdown with materialization+semijoin
 
1114
#
 
1115
CREATE TABLE t1 (a INT) engine=innodb;
 
1116
INSERT INTO t1 VALUES (8),(9);
 
1117
CREATE TABLE t2 (b INT) engine=innodb;
 
1118
INSERT INTO t2 VALUES (2),(3);
 
1119
CREATE TABLE t3 (c INT, INDEX(c)) engine=innodb;
 
1120
INSERT INTO t2 VALUES (4),(5);
 
1121
explain
 
1122
SELECT * FROM t1 WHERE 9 IN ( SELECT b FROM t2 WHERE 1 IN ( SELECT MIN(c) FROM t3 ) );
 
1123
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
 
1124
1       PRIMARY NULL    NULL    NULL    NULL    NULL    NULL    NULL    Impossible WHERE
 
1125
3       MATERIALIZED    NULL    NULL    NULL    NULL    NULL    NULL    NULL    No matching min/max row
 
1126
SELECT * FROM t1 WHERE 9 IN ( SELECT b FROM t2 WHERE 1 IN ( SELECT MIN(c) FROM t3 ) );
 
1127
a
 
1128
DROP TABLE t1,t2,t3;
1112
1129
DROP TABLE IF EXISTS t1,t2,t3,t4;
1113
1130
#
1114
1131
# MDEV-4782: Valgrind warnings (Conditional jump or move depends on uninitialised value) with InnoDB, semijoin