~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/regression/r/622465.result

  • Committer: Olaf van der Spek
  • Date: 2011-08-04 08:13:04 UTC
  • mfrom: (2384 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2385.
  • Revision ID: olafvdspek@gmail.com-20110804081304-rlejjpvoos17bjdf
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
Table   Create Table
7
7
t3      CREATE TABLE `t3` (
8
8
  `id` INT NOT NULL,
9
 
  PRIMARY KEY (`id`),
 
9
  PRIMARY KEY (`id`) USING BTREE,
10
10
  CONSTRAINT `t3_ibfk_1` FOREIGN KEY (`id`) REFERENCES `t1` (`id`)
11
11
) ENGINE=InnoDB COLLATE = utf8_general_ci
12
12
DROP TABLE t2, t3, t1;