~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/show_create_table_multibyte.result

add test for bug600088: multibyte comments not shown correctly in SHOW CREATE TABLE 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 `чем`;