~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2008-09-15 17:24:04 UTC
  • Revision ID: monty@inaugust.com-20080915172404-ygh6hiyu0q7qpa9x
Removed strndup calls.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
drop table if exists t1, t2, t3, t4, t5, t6;
6
6
--enable_warnings
7
7
 
8
 
create table t1 (id int, name varchar(32));
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
 
# create table t5 (id int, name varchar(32)) ENGINE="ARCHIVE";
13
 
create table t6 (id int, name varchar(32)) ENGINE="InnoDB";
 
8
create table t1 (id int(8), name varchar(32));
 
9
create table t2 (id int(8), name varchar(32)) ENGINE="MyISAM";
 
10
create table t3 (id int(8), name varchar(32)) ENGINE="MEMORY";
 
11
create table t4 (id int(8), name varchar(32)) ENGINE="HEAP";
 
12
create table t5 (id int(8), name varchar(32)) ENGINE="ARCHIVE";
 
13
create table t6 (id int(8), name varchar(32)) ENGINE="InnoDB";
14
14
 
15
15
insert into t1 values (1, 'first value');
16
16
insert into t1 values (2, 'first value');
36
36
insert into t4 values (4, 'first value');
37
37
insert into t4 values (5, 'first value');
38
38
 
39
 
#insert into t5 values (1, 'first value');
40
 
#insert into t5 values (2, 'first value');
41
 
#insert into t5 values (3, 'first value');
42
 
#insert into t5 values (4, 'first value');
43
 
#insert into t5 values (5, 'first value');
 
39
insert into t5 values (1, 'first value');
 
40
insert into t5 values (2, 'first value');
 
41
insert into t5 values (3, 'first value');
 
42
insert into t5 values (4, 'first value');
 
43
insert into t5 values (5, 'first value');
44
44
 
45
45
insert into t6 values (1, 'first value');
46
46
insert into t6 values (2, 'first value');
52
52
select * from t2; 
53
53
select * from t3; 
54
54
select * from t4; 
55
 
#select * from t5; 
 
55
select * from t5; 
56
56
select * from t6; 
57
57
 
58
58
--exec $DRIZZLE_DUMP --skip-comments --delayed-insert --insert-ignore --databases test
62
62
drop table t2; 
63
63
drop table t3; 
64
64
drop table t4; 
65
 
#drop table t5; 
 
65
drop table t5; 
66
66
drop table t6;