~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/constraints.result

  • Committer: Jay Pipes
  • Date: 2009-02-28 17:49:22 UTC
  • mto: (910.2.6 mordred-noatomics)
  • mto: This revision was merged to the branch mainline in revision 908.
  • Revision ID: jpipes@serialcoder-20090228174922-jczgt4d0662fqmnf
Merging in old r902 temporal changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
show create table t1;
22
22
Table   Create Table
23
23
t1      CREATE TABLE `t1` (
24
 
  `a` INT DEFAULT NULL,
 
24
  `a` int DEFAULT NULL,
25
25
  UNIQUE KEY `constraint_1` (`a`),
26
26
  UNIQUE KEY `key_1` (`a`),
27
27
  UNIQUE KEY `key_2` (`a`)
28
 
) ENGINE=DEFAULT COLLATE = utf8_general_ci
 
28
) ENGINE=InnoDB
29
29
drop table t1;