~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2009-01-06 19:10:37 UTC
  • Revision ID: brian@tangent.org-20090106191037-dj9ruwa1om717ypz
Cleanup around UTf8 code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `test` /*!40100 DEFAULT CHARACTER SET utf8 */;
71
71
 
72
72
USE `test`;
 
73
DROP TABLE IF EXISTS `t1`;
 
74
CREATE TABLE `t1` (
 
75
  `id` int,
 
76
  `name` varchar(32)
 
77
) ENGINE=InnoDB;
 
78
 
 
79
/*!40000 ALTER TABLE `t1` DISABLE KEYS */;
 
80
INSERT  IGNORE INTO `t1` VALUES ('1','first value'),('2','first value'),('3','first value'),('4','first value'),('5','first value');
 
81
/*!40000 ALTER TABLE `t1` ENABLE KEYS */;
 
82
DROP TABLE IF EXISTS `t2`;
 
83
CREATE TABLE `t2` (
 
84
  `id` int,
 
85
  `name` varchar(32)
 
86
) ENGINE=MyISAM;
 
87
 
 
88
/*!40000 ALTER TABLE `t2` DISABLE KEYS */;
 
89
INSERT  DELAYED IGNORE INTO `t2` VALUES ('1','first value'),('2','first value'),('3','first value'),('4','first value'),('5','first value');
 
90
/*!40000 ALTER TABLE `t2` ENABLE KEYS */;
 
91
DROP TABLE IF EXISTS `t3`;
 
92
CREATE TABLE `t3` (
 
93
  `id` int,
 
94
  `name` varchar(32)
 
95
) ENGINE=MEMORY;
 
96
 
 
97
/*!40000 ALTER TABLE `t3` DISABLE KEYS */;
 
98
INSERT  DELAYED IGNORE INTO `t3` VALUES ('1','first value'),('2','first value'),('3','first value'),('4','first value'),('5','first value');
 
99
/*!40000 ALTER TABLE `t3` ENABLE KEYS */;
 
100
DROP TABLE IF EXISTS `t4`;
 
101
CREATE TABLE `t4` (
 
102
  `id` int,
 
103
  `name` varchar(32)
 
104
) ENGINE=MEMORY;
 
105
 
 
106
/*!40000 ALTER TABLE `t4` DISABLE KEYS */;
 
107
INSERT  DELAYED IGNORE INTO `t4` VALUES ('1','first value'),('2','first value'),('3','first value'),('4','first value'),('5','first value');
 
108
/*!40000 ALTER TABLE `t4` ENABLE KEYS */;
 
109
DROP TABLE IF EXISTS `t6`;
 
110
CREATE TABLE `t6` (
 
111
  `id` int,
 
112
  `name` varchar(32)
 
113
) ENGINE=InnoDB;
 
114
 
 
115
/*!40000 ALTER TABLE `t6` DISABLE KEYS */;
 
116
INSERT  IGNORE INTO `t6` VALUES ('1','first value'),('2','first value'),('3','first value'),('4','first value'),('5','first value');
 
117
/*!40000 ALTER TABLE `t6` ENABLE KEYS */;
73
118
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
74
119
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
75
120
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
78
123
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `test` /*!40100 DEFAULT CHARACTER SET utf8 */;
79
124
 
80
125
USE `test`;
 
126
DROP TABLE IF EXISTS `t1`;
 
127
CREATE TABLE `t1` (
 
128
  `id` int,
 
129
  `name` varchar(32)
 
130
) ENGINE=InnoDB;
 
131
 
 
132
/*!40000 ALTER TABLE `t1` DISABLE KEYS */;
 
133
INSERT INTO `t1` VALUES ('1','first value'),('2','first value'),('3','first value'),('4','first value'),('5','first value');
 
134
/*!40000 ALTER TABLE `t1` ENABLE KEYS */;
 
135
DROP TABLE IF EXISTS `t2`;
 
136
CREATE TABLE `t2` (
 
137
  `id` int,
 
138
  `name` varchar(32)
 
139
) ENGINE=MyISAM;
 
140
 
 
141
/*!40000 ALTER TABLE `t2` DISABLE KEYS */;
 
142
INSERT  DELAYED INTO `t2` VALUES ('1','first value'),('2','first value'),('3','first value'),('4','first value'),('5','first value');
 
143
/*!40000 ALTER TABLE `t2` ENABLE KEYS */;
 
144
DROP TABLE IF EXISTS `t3`;
 
145
CREATE TABLE `t3` (
 
146
  `id` int,
 
147
  `name` varchar(32)
 
148
) ENGINE=MEMORY;
 
149
 
 
150
/*!40000 ALTER TABLE `t3` DISABLE KEYS */;
 
151
INSERT  DELAYED INTO `t3` VALUES ('1','first value'),('2','first value'),('3','first value'),('4','first value'),('5','first value');
 
152
/*!40000 ALTER TABLE `t3` ENABLE KEYS */;
 
153
DROP TABLE IF EXISTS `t4`;
 
154
CREATE TABLE `t4` (
 
155
  `id` int,
 
156
  `name` varchar(32)
 
157
) ENGINE=MEMORY;
 
158
 
 
159
/*!40000 ALTER TABLE `t4` DISABLE KEYS */;
 
160
INSERT  DELAYED INTO `t4` VALUES ('1','first value'),('2','first value'),('3','first value'),('4','first value'),('5','first value');
 
161
/*!40000 ALTER TABLE `t4` ENABLE KEYS */;
 
162
DROP TABLE IF EXISTS `t6`;
 
163
CREATE TABLE `t6` (
 
164
  `id` int,
 
165
  `name` varchar(32)
 
166
) ENGINE=InnoDB;
 
167
 
 
168
/*!40000 ALTER TABLE `t6` DISABLE KEYS */;
 
169
INSERT INTO `t6` VALUES ('1','first value'),('2','first value'),('3','first value'),('4','first value'),('5','first value');
 
170
/*!40000 ALTER TABLE `t6` ENABLE KEYS */;
81
171
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
82
172
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
83
173
drop table t1;