~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/information_schema_inno.result

  • Committer: Brian Aker
  • Date: 2009-01-07 01:08:34 UTC
  • Revision ID: brian@tangent.org-20090107010834-0nn57psqwj0qfddc
Fix information_schema_chmod test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
create database `db-1`;
60
60
use `db-1`;
61
61
create table `t-2` (
62
 
id int(10) unsigned not null auto_increment,
 
62
id int not null auto_increment,
63
63
primary key (id)
64
64
) engine=innodb;
65
65
create table `t-1` (
66
 
id int(10) unsigned not null auto_increment,
67
 
idtype int(10) unsigned not null,
 
66
id int not null auto_increment,
 
67
idtype int not null,
68
68
primary key (id),
69
69
key fk_t1_1 (idtype),
70
70
constraint fk_t1_1 foreign key (idtype) references `t-2` (id)