summaryrefslogtreecommitdiff
path: root/mysql-test/r/ctype_latin1_de.result
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mnogosearch.org>2013-12-17 17:28:48 +0400
committerAlexander Barkov <bar@mnogosearch.org>2013-12-17 17:28:48 +0400
commit9f4dd86c2ee02e0ec46272c9c05db1ddb26b8db6 (patch)
treefaae50896a871230af1df0347f5e0c5edacb824c /mysql-test/r/ctype_latin1_de.result
parent71f4a24d0691cacfbb315b5242ddf718b3c078cd (diff)
parent768751c786b32823d80c12966e74a12de42b75f6 (diff)
downloadmariadb-git-9f4dd86c2ee02e0ec46272c9c05db1ddb26b8db6.tar.gz
Merge 10.0-base->10.0
Diffstat (limited to 'mysql-test/r/ctype_latin1_de.result')
-rw-r--r--mysql-test/r/ctype_latin1_de.result17
1 files changed, 17 insertions, 0 deletions
diff --git a/mysql-test/r/ctype_latin1_de.result b/mysql-test/r/ctype_latin1_de.result
index 54cc1a6e025..ceb0a65304b 100644
--- a/mysql-test/r/ctype_latin1_de.result
+++ b/mysql-test/r/ctype_latin1_de.result
@@ -326,6 +326,23 @@ latin1_german2_ci 6109
latin1_german2_ci 61
latin1_german2_ci 6120
drop table t1;
+#
+# MDEV-5453 Assertion `src' fails in my_strnxfrm_unicode on GROUP BY MID(..) WITH ROLLUP
+#
+SELECT @@collation_connection;
+@@collation_connection
+latin1_german2_ci
+CREATE TABLE t1 (i INT) ENGINE=MyISAM;
+INSERT INTO t1 VALUES (1),(2);
+SELECT * FROM t1 GROUP BY MID(CURRENT_USER,0) WITH ROLLUP;
+i
+1
+1
+SELECT * FROM t1 GROUP BY MID('test',0) WITH ROLLUP;
+i
+1
+1
+DROP TABLE t1;
"BEGIN ctype_german.inc"
drop table if exists t1;
create table t1 as select repeat(' ', 64) as s1;