~matttbe/ubuntu/quantal/mysql-5.5/lp1013171

« back to all changes in this revision

Viewing changes to mysql-test/t/ctype_ucs.test

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-11 23:34:14 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120611233414-mu6ybxiajgcxqztj
Tags: 5.5.25-0ubuntu1
* New upstream release (LP: #1011371, LP: #986892)
* d/rules: change get-orig-source to pull from a working mirror.
* d/control: Build with default compiler instead of gcc 4.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
760
760
SET NAMES latin1;
761
761
 
762
762
--echo #
 
763
--echo # Bug #13832953  MY_STRNXFRM_UNICODE: ASSERTION `SRC' FAILED
 
764
--echo #
 
765
CREATE TABLE t1 (c1 SET('','') CHARACTER SET ucs2);
 
766
INSERT INTO t1 VALUES ('');
 
767
SELECT COALESCE(c1) FROM t1 ORDER BY 1;
 
768
DROP TABLE t1;
 
769
 
 
770
 
 
771
--echo #
763
772
--echo # End of 5.5 tests
764
773
--echo #