~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create.result

  • Committer: Brian Aker
  • Date: 2010-03-26 01:22:04 UTC
  • mto: This revision was merged to the branch mainline in revision 1411.
  • Revision ID: brian@gaz-20100326012204-chqh9lcnme5hpqtb
Fixes failure related to Heap's hack on deletion. Also cleans up error
message (I made one more specific).

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 HY000: Can't create table 'not_existing_database.test' (errno: 2)
 
39
ERROR 42000: Unknown database 'not_existing_database'
40
40
create table `a/a` (a int);
41
41
show create table `a/a`;
42
42
Table   Create Table
356
356
create table t3 like mysqltest.t3;
357
357
ERROR 42S01: Table 't3' already exists
358
358
create table non_existing_database.t1 like t1;
359
 
ERROR HY000: Can't create table 'non_existing_database.t1' (errno: 2)
 
359
ERROR 42000: Unknown database 'non_existing_database'
360
360
create table t3 like non_existing_table;
361
361
ERROR 42S02: Table 'test.non_existing_table' doesn't exist
362
362
create temporary table t3 like t1;