summaryrefslogtreecommitdiff
path: root/mysql-test/main/ctype_ucs2_query_cache.result
blob: eba7f2fb0fc8db7587696cecbed8c83abc4a26e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
#