~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to tests/r/innodb_mysql.result

  • Committer: Padraig O'Sullivan
  • Date: 2010-03-15 14:05:26 UTC
  • mfrom: (1237.9.99 staging)
  • Revision ID: osullivan.padraig@gmail.com-20100315140526-opbgwdwn6tfecdkq
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1153
1153
create table t1(a char(10) not null, unique key aa(a(1)),
1154
1154
b char(4) not null, unique key bb(b(4))) engine=innodb;
1155
1155
desc t1;
1156
 
Field   Type    Null    Key     Default Extra
1157
 
a       varchar(10)     NO      UNI     NULL    
1158
 
b       varchar(4)      NO      PRI     NULL    
 
1156
Field   Type    Null    Default Default_is_NULL On_Update
 
1157
a       VARCHAR FALSE           FALSE   
 
1158
b       VARCHAR FALSE           FALSE   
1159
1159
show create table t1;
1160
1160
Table   Create Table
1161
1161
t1      CREATE TABLE `t1` (