summaryrefslogtreecommitdiff
path: root/mysql-test/main/ctype_ucs2_query_cache.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/ctype_ucs2_query_cache.result')
-rw-r--r--mysql-test/main/ctype_ucs2_query_cache.result26
1 files changed, 26 insertions, 0 deletions
diff --git a/mysql-test/main/ctype_ucs2_query_cache.result b/mysql-test/main/ctype_ucs2_query_cache.result
new file mode 100644
index 00000000000..eba7f2fb0fc
--- /dev/null
+++ b/mysql-test/main/ctype_ucs2_query_cache.result
@@ -0,0 +1,26 @@
+call mtr.add_suppression("'ucs2' can not be used as client character set");
+#
+# Start of 5.5 tests
+#
+#
+# Bug#MDEV-4518 Server crashes in is_white_space when it's run
+# with query cache, charset ucs2 and collation ucs2_unicode_ci
+#
+CREATE TABLE t1 (a INT);
+INSERT INTO t1 VALUES (1),(2),(3),(4);
+SELECT * FROM t1;
+a
+1
+2
+3
+4
+SELECT * FROM t1;
+a
+1
+2
+3
+4
+DROP TABLE t1;
+#
+# End of 5.5 tests
+#