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

« back to all changes in this revision

Viewing changes to mysql-test/r/ctype_eucjpms.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:
9809
9809
eucjpms_japanese_ci     61
9810
9810
eucjpms_japanese_ci     6120
9811
9811
drop table t1;
 
9812
#
 
9813
# MDEV-5453 Assertion `src' fails in my_strnxfrm_unicode on GROUP BY MID(..) WITH ROLLUP
 
9814
#
 
9815
SELECT @@collation_connection;
 
9816
@@collation_connection
 
9817
eucjpms_japanese_ci
 
9818
CREATE TABLE t1 (i INT) ENGINE=MyISAM;
 
9819
INSERT INTO t1 VALUES (1),(2);
 
9820
SELECT * FROM t1 GROUP BY MID(CURRENT_USER,0) WITH ROLLUP;
 
9821
i
 
9822
1
 
9823
1
 
9824
SELECT * FROM t1 GROUP BY MID('test',0) WITH ROLLUP;
 
9825
i
 
9826
1
 
9827
1
 
9828
DROP TABLE t1;
9812
9829
CREATE TABLE t1 AS
9813
9830
SELECT 10 AS a, REPEAT('a',20) AS b, REPEAT('a',8) AS c, REPEAT('a',8) AS d;
9814
9831
ALTER TABLE t1 ADD PRIMARY KEY(a), ADD KEY(b);
9836
9853
eucjpms_bin     61
9837
9854
eucjpms_bin     6120
9838
9855
drop table t1;
 
9856
#
 
9857
# MDEV-5453 Assertion `src' fails in my_strnxfrm_unicode on GROUP BY MID(..) WITH ROLLUP
 
9858
#
 
9859
SELECT @@collation_connection;
 
9860
@@collation_connection
 
9861
eucjpms_bin
 
9862
CREATE TABLE t1 (i INT) ENGINE=MyISAM;
 
9863
INSERT INTO t1 VALUES (1),(2);
 
9864
SELECT * FROM t1 GROUP BY MID(CURRENT_USER,0) WITH ROLLUP;
 
9865
i
 
9866
1
 
9867
1
 
9868
SELECT * FROM t1 GROUP BY MID('test',0) WITH ROLLUP;
 
9869
i
 
9870
1
 
9871
1
 
9872
DROP TABLE t1;
9839
9873
CREATE TABLE t1 AS
9840
9874
SELECT 10 AS a, REPEAT('a',20) AS b, REPEAT('a',8) AS c, REPEAT('a',8) AS d;
9841
9875
ALTER TABLE t1 ADD PRIMARY KEY(a), ADD KEY(b);