~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
--source include/have_innodb.inc
--source include/have_archive.inc

--disable_warnings
drop table if exists t1, t2, t3, t4, t5, t6;
--enable_warnings

create table t1 (id int, name varchar(32));
create table t2 (id int, name varchar(32)) ENGINE="ARCHIVE";
create temporary table t3 (id int, name varchar(32)) ENGINE="MEMORY";
create temporary table t4 (id int, name varchar(32)) ENGINE="MEMORY";
# create table t5 (id int, name varchar(32)) ENGINE="ARCHIVE";
create table t6 (id int, name varchar(32)) ENGINE="InnoDB";

insert into t1 values (1, 'first value');
insert into t1 values (2, 'first value');
insert into t1 values (3, 'first value');
insert into t1 values (4, 'first value');
insert into t1 values (5, 'first value');

insert into t2 values (1, 'first value');
insert into t2 values (2, 'first value');
insert into t2 values (3, 'first value');
insert into t2 values (4, 'first value');
insert into t2 values (5, 'first value');

insert into t3 values (1, 'first value');
insert into t3 values (2, 'first value');
insert into t3 values (3, 'first value');
insert into t3 values (4, 'first value');
insert into t3 values (5, 'first value');

insert into t4 values (1, 'first value');
insert into t4 values (2, 'first value');
insert into t4 values (3, 'first value');
insert into t4 values (4, 'first value');
insert into t4 values (5, 'first value');

#insert into t5 values (1, 'first value');
#insert into t5 values (2, 'first value');
#insert into t5 values (3, 'first value');
#insert into t5 values (4, 'first value');
#insert into t5 values (5, 'first value');

insert into t6 values (1, 'first value');
insert into t6 values (2, 'first value');
insert into t6 values (3, 'first value');
insert into t6 values (4, 'first value');
insert into t6 values (5, 'first value');

select * from t1; 
select * from t2; 
select * from t3; 
select * from t4; 
#select * from t5; 
select * from t6; 

--exec $DRIZZLE_DUMP --skip-comments --delayed-insert --insert-ignore --databases test
--exec $DRIZZLE_DUMP --skip-comments --delayed-insert --databases test

drop table t1; 
drop table t2; 
drop table t3; 
drop table t4; 
#drop table t5; 
drop table t6;