~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/innodb.test

  • 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:
533
533
insert into mysqltest.t1 values(1);
534
534
create TEMPORARY table mysqltest.t2 (a int not null) engine= myisam;
535
535
insert into mysqltest.t2 values(1);
536
 
create table mysqltest.t3 (a int not null) engine= heap;
 
536
create temporary table mysqltest.t3 (a int not null) engine= heap;
537
537
insert into mysqltest.t3 values(1);
538
538
commit;
539
539
drop database mysqltest;