~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/constraints.result

  • Committer: Mark Atwood
  • Date: 2012-01-04 16:59:32 UTC
  • mfrom: (2478.2.3 real-key-use-catalog)
  • Revision ID: me@mark.atwood.name-20120104165932-cm0xqs4by0u3p4cy
mergeĀ lp:~stewart/drizzle/key-use-catalog

Show diffs side-by-side

added added

removed removed

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