~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/innodb.test

  • Committer: Brian Aker
  • Date: 2009-12-01 23:52:10 UTC
  • mfrom: (1235.1.4 push)
  • Revision ID: brian@gaz-20091201235210-rb720ykhz8e06fda
Merge Brian + Monty. This has the HEAP -> MEMORY change in it, so some
breakage for wrong table name is expected.

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 temporary table mysqltest.t3 (a int not null) engine= heap;
 
536
create temporary table mysqltest.t3 (a int not null) engine= MEMORY;
537
537
insert into mysqltest.t3 values(1);
538
538
commit;
539
539
drop database mysqltest;