~drizzle-trunk/drizzle/development

1638.6.1 by Stewart Smith
add test for bug600088: multibyte comments not shown correctly in SHOW CREATE TABLE
1
create table `чем` (a int comment 'чем');
2
show create table `чем`;
3
Table	Create Table
4
чем	CREATE TABLE `чем` (
5
  `a` int DEFAULT NULL COMMENT 'чем'
6
) ENGINE=InnoDB
7
drop table `чем`;