~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: devananda
  • Date: 2009-07-01 17:38:47 UTC
  • mto: (1093.1.7 captain)
  • mto: This revision was merged to the branch mainline in revision 1095.
  • Revision ID: devananda.vdv@gmail.com-20090701173847-3n3mbtessg5ff35e
refactored function/benchmark into plugin/benchmark

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
--enable_warnings
7
7
 
8
8
create table t1 (id int, name varchar(32));
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";
 
9
create table t2 (id int, name varchar(32)) ENGINE="MyISAM";
 
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
 
55
55
#select * from t5; 
56
56
select * from t6; 
57
57
 
58
 
--exec $DRIZZLE_DUMP --skip-comments --insert-ignore --databases test
59
 
--exec $DRIZZLE_DUMP --skip-comments --databases test
 
58
--exec $DRIZZLE_DUMP --skip-comments --delayed-insert --insert-ignore --databases test
 
59
--exec $DRIZZLE_DUMP --skip-comments --delayed-insert --databases test
60
60
 
61
61
drop table t1; 
62
62
drop table t2;