~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create.result

  • Committer: Brian Aker
  • Date: 2010-02-23 21:18:15 UTC
  • mto: (1273.13.97 build)
  • mto: This revision was merged to the branch mainline in revision 1309.
  • Revision ID: brian@gaz-20100223211815-ckwo3eun67ikzu1e
This restores temporary tables back to being viewable via show/select.

Show diffs side-by-side

added added

removed removed

Lines of Context:
353
353
select * from t2;
354
354
id      name
355
355
create table t3 like t1;
 
356
ERROR 42S01: Table 't3' already exists
356
357
create table t3 like mysqltest.t3;
357
358
ERROR 42S01: Table 't3' already exists
358
359
create table non_existing_database.t1 like t1;
362
363
create temporary table t3 like t1;
363
364
ERROR 42S01: Table 't3' already exists
364
365
drop table t1, t2, t3;
365
 
drop table t3;
366
366
drop database mysqltest;
367
367
SET SESSION storage_engine="MEMORY";
368
368
SELECT @@storage_engine;