~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): James Page, Otto Kekäläinen
  • Date: 2014-02-17 16:51:52 UTC
  • mfrom: (2.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140217165152-k315d3175g865kkx
Tags: 5.5.35-1
[ Otto Kekäläinen ]
* New upstream release, fixing the following security issues:
  - Buffer overflow in client/mysql.cc (Closes: #737597).
    - CVE-2014-0001
  - http://www.oracle.com/technetwork/topics/security/cpujan2014-1972949.html
    - CVE-2013-5891
    - CVE-2013-5908
    - CVE-2014-0386
    - CVE-2014-0393
    - CVE-2014-0401
    - CVE-2014-0402
    - CVE-2014-0412
    - CVE-2014-0420
    - CVE-2014-0437
* Upstream https://mariadb.atlassian.net/browse/MDEV-4902
  fixes compatibility with Bison 3.0 (Closes: #733002)
* Updated Russian debconf translation (Closes: #734426)
* Updated Japanese debconf translation (Closes: #735284)
* Updated French debconf translation (Closes: #736480)
* Renamed SONAME properly (Closes: #732967)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1094
1094
3724
1095
1095
set optimizer_prune_level=@tmp_951283;
1096
1096
DROP TABLE t1,t2;
 
1097
#
 
1098
# Bug mdev-5135: crash on semijoin with nested outer joins
 
1099
#
 
1100
CREATE TABLE t1 (i1 int) ENGINE=MyISAM;
 
1101
INSERT INTO t1 VALUES (1),(2);
 
1102
CREATE TABLE t2 (i2 int, INDEX(i2)) ENGINE=MyISAM;
 
1103
CREATE TABLE t3 (i3 int, c varchar(1), INDEX(i3), INDEX(c)) ENGINE=MyISAM;
 
1104
INSERT INTO t3 VALUES (3,'x'),(4,'y');
 
1105
SELECT * FROM t1 WHERE ( 1, 1 ) IN ( 
 
1106
SELECT i2, i2 FROM t2 LEFT OUTER JOIN ( 
 
1107
t3 AS t3a INNER JOIN t3 AS t3b ON ( t3a.i3 = t3b.i3 ) 
 
1108
) ON ( t3a.c = t3b.c ) 
 
1109
);
 
1110
i1
 
1111
DROP TABLE t1,t2,t3;
1097
1112
DROP TABLE IF EXISTS t1,t2,t3,t4;
1098
1113
#
1099
1114
# MDEV-4782: Valgrind warnings (Conditional jump or move depends on uninitialised value) with InnoDB, semijoin