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

« back to all changes in this revision

Viewing changes to mysql-test/r/ctype_utf32.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:
582
582
utf32_general_ci        00000061
583
583
utf32_general_ci        0000006100000020
584
584
drop table t1;
 
585
#
 
586
# MDEV-5453 Assertion `src' fails in my_strnxfrm_unicode on GROUP BY MID(..) WITH ROLLUP
 
587
#
 
588
SELECT @@collation_connection;
 
589
@@collation_connection
 
590
utf32_general_ci
 
591
CREATE TABLE t1 (i INT) ENGINE=MyISAM;
 
592
INSERT INTO t1 VALUES (1),(2);
 
593
SELECT * FROM t1 GROUP BY MID(CURRENT_USER,0) WITH ROLLUP;
 
594
i
 
595
1
 
596
1
 
597
SELECT * FROM t1 GROUP BY MID('test',0) WITH ROLLUP;
 
598
i
 
599
1
 
600
1
 
601
DROP TABLE t1;
585
602
select @@collation_connection;
586
603
@@collation_connection
587
604
utf32_general_ci
612
629
utf32_bin       0000006100000020
613
630
drop table t1;
614
631
#
 
632
# MDEV-5453 Assertion `src' fails in my_strnxfrm_unicode on GROUP BY MID(..) WITH ROLLUP
 
633
#
 
634
SELECT @@collation_connection;
 
635
@@collation_connection
 
636
utf32_bin
 
637
CREATE TABLE t1 (i INT) ENGINE=MyISAM;
 
638
INSERT INTO t1 VALUES (1),(2);
 
639
SELECT * FROM t1 GROUP BY MID(CURRENT_USER,0) WITH ROLLUP;
 
640
i
 
641
1
 
642
1
 
643
SELECT * FROM t1 GROUP BY MID('test',0) WITH ROLLUP;
 
644
i
 
645
1
 
646
1
 
647
DROP TABLE t1;
 
648
#
615
649
# Bug#55980 Character sets: supplementary character _bin ordering is wrong
616
650
#
617
651
CREATE TABLE t1 AS SELECT REPEAT('a',1) AS a LIMIT 0;