2
# Test for SHOW CREATE TABLE with multi-byte characters
3
# in various schema fields and identifiers.
7
# Bug #314502 - "show create table crashes with multi-byte character in enum description"
11
DROP TABLE IF EXISTS t1;
13
# 킱 is a 3-byte character in UTF8
14
CREATE TABLE t1 (a enum('aaaa', '킱'));