~jaypipes/drizzle/refactor-trx-log-applier

« back to all changes in this revision

Viewing changes to tests/r/create.result

  • Committer: Jay Pipes
  • Date: 2010-03-05 18:24:28 UTC
  • mfrom: (1273.1.51 staging)
  • Revision ID: jpipes@serialcoder-20100305182428-9m16fszbs3mvdhe0
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
create temporary table t1 (ordid int not null auto_increment, ord  varchar(50) not null, primary key (ord,ordid)) engine=MEMORY;
37
37
ERROR 42000: Incorrect table definition; there can be only one auto column and it must be defined as a key
38
38
create table not_existing_database.test (a int);
39
 
ERROR 42000: Unknown database 'not_existing_database'
 
39
ERROR HY000: Can't create table 'not_existing_database.test' (errno: 2)
40
40
create table `a/a` (a int);
41
41
show create table `a/a`;
42
42
Table   Create Table
357
357
create table t3 like mysqltest.t3;
358
358
ERROR 42S01: Table 't3' already exists
359
359
create table non_existing_database.t1 like t1;
360
 
ERROR 42000: Unknown database 'non_existing_database'
 
360
ERROR HY000: Can't create table 'non_existing_database.t1' (errno: 2)
361
361
create table t3 like non_existing_table;
362
362
ERROR 42S02: Table 'test.non_existing_table' doesn't exist
363
363
create temporary table t3 like t1;