~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/innodb.result

  • Committer: Brian Aker
  • Date: 2009-08-03 15:50:04 UTC
  • mfrom: (1106.3.2 heap)
  • Revision ID: brian@gaz-20090803155004-tq6ec51i68ay1aye
Merge of Brian

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;