~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/mysqldump-max.result

  • Committer: Monty Taylor
  • Date: 2008-09-14 22:10:23 UTC
  • mto: This revision was merged to the branch mainline in revision 388.
  • Revision ID: monty@inaugust.com-20080914221023-otz8vuui590zp5yf
Got rid of libsqlcommon and some surious defines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
drop table if exists t1, t2, t3, t4, t5, t6;
2
 
create table t1 (id int, name varchar(32));
3
 
create table t2 (id int, name varchar(32)) ENGINE="MyISAM";
4
 
create table t3 (id int, name varchar(32)) ENGINE="MEMORY";
5
 
create table t4 (id int, name varchar(32)) ENGINE="HEAP";
6
 
create table t6 (id int, name varchar(32)) ENGINE="InnoDB";
7
 
insert into t1 values (1, 'first value');
8
 
insert into t1 values (2, 'first value');
9
 
insert into t1 values (3, 'first value');
10
 
insert into t1 values (4, 'first value');
11
 
insert into t1 values (5, 'first value');
12
 
insert into t2 values (1, 'first value');
13
 
insert into t2 values (2, 'first value');
14
 
insert into t2 values (3, 'first value');
15
 
insert into t2 values (4, 'first value');
16
 
insert into t2 values (5, 'first value');
17
 
insert into t3 values (1, 'first value');
18
 
insert into t3 values (2, 'first value');
19
 
insert into t3 values (3, 'first value');
20
 
insert into t3 values (4, 'first value');
21
 
insert into t3 values (5, 'first value');
22
 
insert into t4 values (1, 'first value');
23
 
insert into t4 values (2, 'first value');
24
 
insert into t4 values (3, 'first value');
25
 
insert into t4 values (4, 'first value');
26
 
insert into t4 values (5, 'first value');
27
 
insert into t6 values (1, 'first value');
28
 
insert into t6 values (2, 'first value');
29
 
insert into t6 values (3, 'first value');
30
 
insert into t6 values (4, 'first value');
31
 
insert into t6 values (5, 'first value');
32
 
select * from t1;
33
 
id      name
34
 
1       first value
35
 
2       first value
36
 
3       first value
37
 
4       first value
38
 
5       first value
39
 
select * from t2;
40
 
id      name
41
 
1       first value
42
 
2       first value
43
 
3       first value
44
 
4       first value
45
 
5       first value
46
 
select * from t3;
47
 
id      name
48
 
1       first value
49
 
2       first value
50
 
3       first value
51
 
4       first value
52
 
5       first value
53
 
select * from t4;
54
 
id      name
55
 
1       first value
56
 
2       first value
57
 
3       first value
58
 
4       first value
59
 
5       first value
60
 
select * from t6;
61
 
id      name
62
 
1       first value
63
 
2       first value
64
 
3       first value
65
 
4       first value
66
 
5       first value
67
 
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
68
 
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
69
 
 
70
 
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `test` /*!40100 DEFAULT CHARACTER SET utf8 */;
71
 
 
72
 
USE `test`;
73
 
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
74
 
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
75
 
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
76
 
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
77
 
 
78
 
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `test` /*!40100 DEFAULT CHARACTER SET utf8 */;
79
 
 
80
 
USE `test`;
81
 
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
82
 
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
83
 
drop table t1;
84
 
drop table t2;
85
 
drop table t3;
86
 
drop table t4;
87
 
drop table t6;