~clint-fewbar/drizzle/regex-policy-cache-limiter

« back to all changes in this revision

Viewing changes to plugin/pbxt/tests/r/basic_create_table.result

  • Committer: Clint Byrum
  • Date: 2012-03-15 18:05:43 UTC
  • mfrom: (2224.1.302 workspace)
  • Revision ID: clint@ubuntu.com-20120315180543-9jxxm4q10k3np2ws
merging with latest trunk

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
 
CREATE TABLE t1 (a int primary key);
10
 
ERROR 42S01: Table 'test.t1' already exists
11
 
CREATE TABLE t2 (a int primary key, b varchar(20), c bigint);
12
 
DROP TABLE t1, t2;