~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create.result

  • Committer: Brian Aker
  • Date: 2011-01-18 07:21:16 UTC
  • mfrom: (2079.3.3 session-fix)
  • Revision ID: brian@tangent.org-20110118072116-nuflltzguzhq9rgg
Merge in update so that test-run.pl runs all of test/suite and fix for
create table like and FK.

Show diffs side-by-side

added added

removed removed

Lines of Context:
362
362
select * from t2;
363
363
id      name
364
364
create table t3 like t1;
365
 
ERROR 42S01: Table 't3' already exists
 
365
ERROR 42S01: Table 'test.t3' already exists
366
366
create table t3 like mysqltest.t3;
367
 
ERROR 42S01: Table 't3' already exists
 
367
ERROR 42S01: Table 'test.t3' already exists
368
368
create table non_existing_database.t1 like t1;
369
369
ERROR 42000: Unknown schema 'non_existing_database'
370
 
create table t3 like non_existing_table;
371
 
ERROR 42S02: Table 'test.non_existing_table' doesn't exist
 
370
create table t4 like non_existing_table;
 
371
ERROR HY000: Unknown table 'test.non_existing_table'
372
372
create temporary table t3 like t1;
373
 
ERROR 42S01: Table 't3' already exists
 
373
ERROR 42S01: Table 'test.#t3' already exists
374
374
drop table t1, t2, t3;
375
375
drop database mysqltest;
376
376
SET SESSION storage_engine="MEMORY";