~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/information_schema_inno.test

  • Committer: Brian Aker
  • Date: 2008-10-02 19:18:43 UTC
  • mto: (438.4.1 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 435.
  • Revision ID: brian@tangent.org-20081002191843-tw3nnufik8qwf9rz
Removed UNSIGNED from parser.

Show diffs side-by-side

added added

removed removed

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