~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/join_outer_innodb.test

  • Committer: brian
  • Date: 2008-07-03 12:39:14 UTC
  • Revision ID: brian@localhost.localdomain-20080703123914-lry82qf74f6cbyzs
Disabling myisam tools until incomming link patch from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
# Test for bug #17164: ORed FALSE blocked conversion of outer join into join
9
9
10
10
 
11
 
CREATE TABLE t1 (id int NOT NULL PRIMARY KEY, name varchar(20),
 
11
CREATE TABLE t1 (id int(11) NOT NULL PRIMARY KEY, name varchar(20),
12
12
                 INDEX (name)) ENGINE=InnoDB;
13
 
CREATE TABLE t2 (id int NOT NULL PRIMARY KEY, fkey int,
 
13
CREATE TABLE t2 (id int(11) NOT NULL PRIMARY KEY, fkey int(11),
14
14
                 FOREIGN KEY (fkey) REFERENCES t2(id)) ENGINE=InnoDB;
15
15
INSERT INTO t1 VALUES (1,'A1'),(2,'A2'),(3,'B');
16
16
INSERT INTO t2 VALUES (1,1),(2,2),(3,2),(4,3),(5,3);