summaryrefslogtreecommitdiff
path: root/mysql-test/main/ctype_utf8_uca.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/ctype_utf8_uca.result')
-rw-r--r--mysql-test/main/ctype_utf8_uca.result18
1 files changed, 16 insertions, 2 deletions
diff --git a/mysql-test/main/ctype_utf8_uca.result b/mysql-test/main/ctype_utf8_uca.result
index a82860ff5df..700d4c40193 100644
--- a/mysql-test/main/ctype_utf8_uca.result
+++ b/mysql-test/main/ctype_utf8_uca.result
@@ -588,7 +588,7 @@ DROP TABLE t1;
# End of 10.2 tests
#
#
-# Start of 10.9 tests
+# Start of 10.10 tests
#
#
# MDEV-27009 Add UCA-14.0.0 collations
@@ -1343,5 +1343,19 @@ def COLLATION_NAME rec.COLLATION_NAME 253 192 28 Y 0 0 576
rec.COLLATION_NAME
uca1400_croatian_nopad_as_cs
#
-# End of 10.9 tests
+# MDEV-29776 collation_connection and db_collation are too short in mysql.proc and mysql.event
+#
+SET NAMES 'utf8mb3' COLLATE 'utf8mb3_uca1400_swedish_nopad_ai_ci';
+CREATE FUNCTION f1() RETURNS INT RETURN 1;
+SELECT length(collation_connection), collation_connection
+FROM mysql.proc WHERE db='test' AND name='f1';
+length(collation_connection) collation_connection
+35 utf8mb3_uca1400_swedish_nopad_ai_ci
+SELECT f1();
+f1()
+1
+DROP FUNCTION f1;
+SET NAMES utf8mb3;
+#
+# End of 10.10 tests
#