~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2009-03-30 18:13:06 UTC
  • mfrom: (968.1.1 lib-merge)
  • Revision ID: brian@tangent.org-20090330181306-hzodbge1b0v57puh
Merge of Eric's libdrizzle work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
) ENGINE=InnoDB;
78
78
 
79
79
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');
 
80
INSERT  IGNORE INTO `t1` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
81
81
ALTER TABLE `t1` ENABLE KEYS;
82
82
DROP TABLE IF EXISTS `t2`;
83
83
CREATE TABLE `t2` (
86
86
) ENGINE=MyISAM;
87
87
 
88
88
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');
 
89
INSERT  DELAYED IGNORE INTO `t2` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
90
90
ALTER TABLE `t2` ENABLE KEYS;
91
91
DROP TABLE IF EXISTS `t3`;
92
92
CREATE TABLE `t3` (
95
95
) ENGINE=MEMORY;
96
96
 
97
97
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');
 
98
INSERT  DELAYED IGNORE INTO `t3` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
99
99
ALTER TABLE `t3` ENABLE KEYS;
100
100
DROP TABLE IF EXISTS `t4`;
101
101
CREATE TABLE `t4` (
104
104
) ENGINE=MEMORY;
105
105
 
106
106
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');
 
107
INSERT  DELAYED IGNORE INTO `t4` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
108
108
ALTER TABLE `t4` ENABLE KEYS;
109
109
DROP TABLE IF EXISTS `t6`;
110
110
CREATE TABLE `t6` (
113
113
) ENGINE=InnoDB;
114
114
 
115
115
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');
 
116
INSERT  IGNORE INTO `t6` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
117
117
ALTER TABLE `t6` ENABLE KEYS;
118
118
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
119
119
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
130
130
) ENGINE=InnoDB;
131
131
 
132
132
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');
 
133
INSERT INTO `t1` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
134
134
ALTER TABLE `t1` ENABLE KEYS;
135
135
DROP TABLE IF EXISTS `t2`;
136
136
CREATE TABLE `t2` (
139
139
) ENGINE=MyISAM;
140
140
 
141
141
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');
 
142
INSERT  DELAYED INTO `t2` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
143
143
ALTER TABLE `t2` ENABLE KEYS;
144
144
DROP TABLE IF EXISTS `t3`;
145
145
CREATE TABLE `t3` (
148
148
) ENGINE=MEMORY;
149
149
 
150
150
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');
 
151
INSERT  DELAYED INTO `t3` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
152
152
ALTER TABLE `t3` ENABLE KEYS;
153
153
DROP TABLE IF EXISTS `t4`;
154
154
CREATE TABLE `t4` (
157
157
) ENGINE=MEMORY;
158
158
 
159
159
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');
 
160
INSERT  DELAYED INTO `t4` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
161
161
ALTER TABLE `t4` ENABLE KEYS;
162
162
DROP TABLE IF EXISTS `t6`;
163
163
CREATE TABLE `t6` (
166
166
) ENGINE=InnoDB;
167
167
 
168
168
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');
 
169
INSERT INTO `t6` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
170
170
ALTER TABLE `t6` ENABLE KEYS;
171
171
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
172
172
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;