1
# Embedded server doesn't support external clients
2
--source include/not_embedded.inc
3
--source include/have_innodb.inc
4
--source include/have_archive.inc
7
drop table if exists t1, t2, t3, t4, t5, t6;
10
create table t1 (id int(8), name varchar(32));
11
create table t2 (id int(8), name varchar(32)) ENGINE="MyISAM";
12
create table t3 (id int(8), name varchar(32)) ENGINE="MEMORY";
13
create table t4 (id int(8), name varchar(32)) ENGINE="HEAP";
14
create table t5 (id int(8), name varchar(32)) ENGINE="ARCHIVE";
15
create table t6 (id int(8), name varchar(32)) ENGINE="InnoDB";
17
insert into t1 values (1, 'first value');
18
insert into t1 values (2, 'first value');
19
insert into t1 values (3, 'first value');
20
insert into t1 values (4, 'first value');
21
insert into t1 values (5, 'first value');
23
insert into t2 values (1, 'first value');
24
insert into t2 values (2, 'first value');
25
insert into t2 values (3, 'first value');
26
insert into t2 values (4, 'first value');
27
insert into t2 values (5, 'first value');
29
insert into t3 values (1, 'first value');
30
insert into t3 values (2, 'first value');
31
insert into t3 values (3, 'first value');
32
insert into t3 values (4, 'first value');
33
insert into t3 values (5, 'first value');
35
insert into t4 values (1, 'first value');
36
insert into t4 values (2, 'first value');
37
insert into t4 values (3, 'first value');
38
insert into t4 values (4, 'first value');
39
insert into t4 values (5, 'first value');
41
insert into t5 values (1, 'first value');
42
insert into t5 values (2, 'first value');
43
insert into t5 values (3, 'first value');
44
insert into t5 values (4, 'first value');
45
insert into t5 values (5, 'first value');
47
insert into t6 values (1, 'first value');
48
insert into t6 values (2, 'first value');
49
insert into t6 values (3, 'first value');
50
insert into t6 values (4, 'first value');
51
insert into t6 values (5, 'first value');
60
--exec $MYSQL_DUMP --skip-comments --delayed-insert --insert-ignore --databases test
61
--exec $MYSQL_DUMP --skip-comments --delayed-insert --databases test