1#
2# Bug #23296299 / #81457 "handle_fatal_signal (sig=11) in my_tosort_utf32"
3# fixed in 5.5.52.
4# Certain internal character-handling functions could fail to handle a
5# too-large character and cause a server exit.
6#
7--source include/have_utf32.inc
8
9SET collation_connection = utf32_general_ci;
10CREATE TEMPORARY TABLE t1 AS SELECT 'This is temp. t' A;
11SELECT COUNT(*) FROM t1 WHERE a = AES_ENCRYPT('b', 0);
12