1call mtr.add_suppression("'ucs2' can not be used as client character set");
2#
3# Start of 5.5 tests
4#
5#
6# Bug#MDEV-4518 Server crashes in is_white_space when it's run
7# with query cache, charset ucs2 and collation ucs2_unicode_ci
8#
9CREATE TABLE t1 (a INT);
10INSERT INTO t1 VALUES (1),(2),(3),(4);
11SELECT * FROM t1;
12a
131
142
153
164
17SELECT * FROM t1;
18a
191
202
213
224
23DROP TABLE t1;
24#
25# End of 5.5 tests
26#
27