~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/mysqldump-max.test

  • Committer: Padraig O'Sullivan
  • Date: 2009-07-30 02:39:13 UTC
  • mto: (1115.3.11 captain)
  • mto: This revision was merged to the branch mainline in revision 1121.
  • Revision ID: osullivan.padraig@gmail.com-20090730023913-o2zuocp32l6btnc2
Removing references to MY_BITMAP throughout the code base and updating calls
to MyBitmap in various places to use the new interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
create table t1 (id int, name varchar(32));
9
9
create table t2 (id int, name varchar(32)) ENGINE="ARCHIVE";
10
 
create temporary table t3 (id int, name varchar(32)) ENGINE="MEMORY";
11
 
create temporary table t4 (id int, name varchar(32)) ENGINE="MEMORY";
 
10
create table t3 (id int, name varchar(32)) ENGINE="MEMORY";
 
11
create table t4 (id int, name varchar(32)) ENGINE="HEAP";
12
12
# create table t5 (id int, name varchar(32)) ENGINE="ARCHIVE";
13
13
create table t6 (id int, name varchar(32)) ENGINE="InnoDB";
14
14