~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/innodb.result

  • Committer: Brian Aker
  • Date: 2009-07-31 23:20:14 UTC
  • mto: This revision was merged to the branch mainline in revision 1108.
  • Revision ID: brian@gaz-20090731232014-amd6192q1n8wade0
Heap is now tmp only table

Show diffs side-by-side

added added

removed removed

Lines of Context:
825
825
insert into mysqltest.t1 values(1);
826
826
create TEMPORARY table mysqltest.t2 (a int not null) engine= myisam;
827
827
insert into mysqltest.t2 values(1);
828
 
create table mysqltest.t3 (a int not null) engine= heap;
 
828
create temporary table mysqltest.t3 (a int not null) engine= heap;
829
829
insert into mysqltest.t3 values(1);
830
830
commit;
831
831
drop database mysqltest;