~drizzle-developers/ubuntu/natty/drizzle/natty

« back to all changes in this revision

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

Merged in latest source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SET SESSION storage_engine=pbxt;
1
2
CREATE TABLE t1 (a int primary key);
2
3
SHOW CREATE TABLE t1;
3
4
Table   Create Table
4
5
t1      CREATE TABLE `t1` (
5
6
  `a` INT NOT NULL,
6
7
  PRIMARY KEY (`a`)
7
 
) ENGINE=InnoDB COLLATE = utf8_general_ci
 
8
) ENGINE=PBXT COLLATE = utf8_general_ci
8
9
CREATE TABLE t1 (a int primary key);
9
10
ERROR 42S01: Table 'test.t1' already exists
10
11
CREATE TABLE t2 (a int primary key, b varchar(20), c bigint);