~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 `чем` (
1743.5.2 by LinuxJedi
Alter many test cases for the new SHOW CREATE TABLE output
5
  `a` INT DEFAULT NULL COMMENT 'чем'
1638.10.87 by Stewart Smith
fix SHOW CREATE TABLE tests for explicit COLLATE in CREATE TABLE
6
) ENGINE=InnoDB COLLATE = utf8_general_ci
1638.6.1 by Stewart Smith
add test for bug600088: multibyte comments not shown correctly in SHOW CREATE TABLE
7
drop table `чем`;