~drizzle-trunk/drizzle/development

814.1.1 by Jay Pipes
Fix for Bug 314502 "show create table crashes with multi-byte character in enum description"
1
DROP TABLE IF EXISTS t1;
2
CREATE TABLE t1 (a enum('aaaa', '킱'));
3
SHOW CREATE TABLE t1;
4
Table	Create Table
5
t1	CREATE TABLE `t1` (
6
  `a` enum('aaaa','킱')
7
) ENGINE=InnoDB