~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` (
873.2.35 by Monty Taylor
Update tests based on how Toru's latest patch changes create table statements.
6
  `a` enum('aaaa','킱') DEFAULT NULL
942.3.1 by Vladimir Kolesnikov
test generalizations
7
) ENGINE=DEFAULT