~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/constraints.result

  • Committer: Brian Aker
  • Date: 2010-02-07 01:33:54 UTC
  • Revision ID: brian@gaz-20100207013354-d2pg1n68u5c09pgo
Remove giant include header to its own file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
alter table t1 add constraint constraint_2 unique key_2(a);
21
21
show create table t1;
22
22
Table   Create Table
23
 
t1      CREATE TABLE "t1" (
24
 
  "a" int(11),
25
 
  UNIQUE KEY "constraint_1" ("a"),
26
 
  UNIQUE KEY "key_1" ("a"),
27
 
  UNIQUE KEY "key_2" ("a")
28
 
) ENGINE=MyISAM DEFAULT CHARSET=latin1
 
23
t1      CREATE TABLE `t1` (
 
24
  `a` int DEFAULT NULL,
 
25
  UNIQUE KEY `constraint_1` (`a`),
 
26
  UNIQUE KEY `key_1` (`a`),
 
27
  UNIQUE KEY `key_2` (`a`)
 
28
) ENGINE=InnoDB
29
29
drop table t1;