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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen, Otto Kekäläinen, James Page
  • Date: 2014-03-02 01:38:26 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140302013826-z3afnfteqo86pccd
Tags: 5.5.36-1
[ Otto Kekäläinen ]
* New upstream release.
* Updated Danish debconf translation (Closes: #739750).
* d/control: Added explicit Conflicts/Replaces for mysql-5.6 packages
  (Closes: #739841).
* d/control: Update for use of virtual-* packages for switching to/from
  MySQL alternatives.

[ James Page ]
* d/control: Drop Nicholas from Uploaders, MIA (Closes: #739360).
* d/control: Add libjemalloc-dev to BD's.

Show diffs side-by-side

added added

removed removed

Lines of Context:
671
671
D800DF84        F0908E84
672
672
DBC0DC00        F4808080
673
673
DROP TABLE IF EXISTS t1;
 
674
#
 
675
# BUG#16691598 - ORDER BY LOWER(COLUMN) PRODUCES
 
676
#                OUT-OF-ORDER RESULTS
 
677
#
 
678
CREATE TABLE  t1 SELECT ('a a') as n;
 
679
INSERT INTO t1 VALUES('a b');
 
680
SELECT * FROM t1 ORDER BY LOWER(n) ASC;
 
681
n
 
682
a a
 
683
a b
 
684
SELECT * FROM t1 ORDER BY LOWER(n) DESC;
 
685
n
 
686
a b
 
687
a a
 
688
DROP TABLE t1;
674
689
select @@collation_connection;
675
690
@@collation_connection
676
691
utf16_bin