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

« back to all changes in this revision

Viewing changes to plugin/pbxt/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
SET SESSION storage_engine=pbxt;
 
2
CREATE TABLE t1 (a int primary key);
 
3
SHOW CREATE TABLE t1;
 
4
Table   Create Table
 
5
t1      CREATE TABLE `t1` (
 
6
  `a` INT NOT NULL,
 
7
  PRIMARY KEY (`a`)
 
8
) ENGINE=PBXT COLLATE = utf8_general_ci
 
9
DROP TABLE t1;
 
10
CREATE TABLE t2 (a int primary key, b int unique, c varchar(100) unique);
 
11
SHOW CREATE TABLE t2;
 
12
Table   Create Table
 
13
t2      CREATE TABLE `t2` (
 
14
  `a` INT NOT NULL,
 
15
  `b` INT DEFAULT NULL,
 
16
  `c` VARCHAR(100) COLLATE utf8_general_ci DEFAULT NULL,
 
17
  PRIMARY KEY (`a`),
 
18
  UNIQUE KEY `b` (`b`),
 
19
  UNIQUE KEY `c` (`c`)
 
20
) ENGINE=PBXT COLLATE = utf8_general_ci
 
21
DROP TABLE t2;