~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/information_schema_inno.test

  • 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:
1
1
-- source include/testdb_only.inc
2
2
--disable_warnings
3
3
DROP TABLE IF EXISTS t1,t2,t3;
4
4
--enable_warnings
60
59
create database `db-1`;
61
60
use `db-1`;
62
61
create table `t-2` (
63
 
  id int(10) not null auto_increment,
 
62
  id int not null auto_increment,
64
63
  primary key (id)
65
64
) engine=innodb;
66
65
 
67
66
create table `t-1` (
68
 
  id int(10) not null auto_increment,
69
 
  idtype int(10) not null,
 
67
  id int not null auto_increment,
 
68
  idtype int not null,
70
69
  primary key (id),
71
70
  key fk_t1_1 (idtype),
72
71
  constraint fk_t1_1 foreign key (idtype) references `t-2` (id)