~james-page/ubuntu/precise/mysql-5.5/misc-fixes

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-06-11 07:34:33 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120611073433-l9za2ni4ipp848y3
Tags: 5.5.24-0ubuntu0.12.04.1
* SECURITY UPDATE: Update to 5.5.24 to fix security issues (LP: #1011371)
  - http://dev.mysql.com/doc/refman/5.5/en/news-5-5-24.html

Show diffs side-by-side

added added

removed removed

Lines of Context:
4107
4107
SET sql_mode=default;
4108
4108
SET NAMES latin1;
4109
4109
#
 
4110
# Bug #13832953         MY_STRNXFRM_UNICODE: ASSERTION `SRC' FAILED
 
4111
#
 
4112
CREATE TABLE t1 (c1 SET('','') CHARACTER SET ucs2);
 
4113
Warnings:
 
4114
Note    1291    Column 'c1' has duplicated value '' in SET
 
4115
INSERT INTO t1 VALUES ('');
 
4116
SELECT COALESCE(c1) FROM t1 ORDER BY 1;
 
4117
COALESCE(c1)
 
4118
 
 
4119
DROP TABLE t1;
 
4120
#
4110
4121
# End of 5.5 tests
4111
4122
#