~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/test-suite-dir/embedded_innodb/tests/r/basic_create_with_index.result

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE t1 (a int primary key);
 
2
SHOW CREATE TABLE t1;
 
3
Table   Create Table
 
4
t1      CREATE TABLE `t1` (
 
5
  `a` INT NOT NULL,
 
6
  PRIMARY KEY (`a`) USING BTREE
 
7
) ENGINE=InnoDB COLLATE = utf8_general_ci
 
8
DROP TABLE t1;
 
9
CREATE TABLE t2 (a int primary key, b int unique, c varchar(100) unique);
 
10
SHOW CREATE TABLE t2;
 
11
Table   Create Table
 
12
t2      CREATE TABLE `t2` (
 
13
  `a` INT NOT NULL,
 
14
  `b` INT DEFAULT NULL,
 
15
  `c` VARCHAR(100) COLLATE utf8_general_ci DEFAULT NULL,
 
16
  PRIMARY KEY (`a`) USING BTREE,
 
17
  UNIQUE KEY `b` (`b`) USING BTREE,
 
18
  UNIQUE KEY `c` (`c`) USING BTREE
 
19
) ENGINE=InnoDB COLLATE = utf8_general_ci
 
20
DROP TABLE t2;