~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

« back to all changes in this revision

Viewing changes to tests/r/drizzledump.result

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
ImportĀ upstreamĀ versionĀ 2010.03.1347

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE IF EXISTS t1, `"t"1`, t1aa, t2, t2aa, t3;
 
2
drop database if exists mysqldump_test_db;
 
3
drop database if exists db1;
 
4
drop database if exists db2;
 
5
CREATE TABLE t1(a int, key (a)) key_block_size=1024;
 
6
Warnings:
 
7
Warning 1478    InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
 
8
Warning 1478    InnoDB: KEY_BLOCK_SIZE requires innodb_file_format > Antelope.
 
9
Warning 1478    InnoDB: ignoring KEY_BLOCK_SIZE=1024.
 
10
INSERT INTO t1 VALUES (1), (2);
 
11
<?xml version="1.0"?>
 
12
<drizzledump xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 
13
<database name="test">
 
14
        <table_structure name="t1">
 
15
                <field Field="a" Type="INTEGER" Null="TRUE" Default="" Default_is_NULL="TRUE" On_Update="" />
 
16
                <key Table="t1" Unique="FALSE" Key_name="a" Seq_in_index="1" Column_name="a" />
 
17
        </table_structure>
 
18
        <table_data name="t1">
 
19
        <row>
 
20
                <field name="a">1</field>
 
21
        </row>
 
22
        <row>
 
23
                <field name="a">2</field>
 
24
        </row>
 
25
        </table_data>
 
26
</database>
 
27
</drizzledump>
 
28
DROP TABLE t1;
 
29
#
 
30
# Bug #2005
 
31
#
 
32
CREATE TABLE t1 (a decimal(64, 20));
 
33
INSERT INTO t1 VALUES ("1234567890123456789012345678901234567890"),
 
34
("0987654321098765432109876543210987654321");
 
35
CREATE TABLE `t1` (
 
36
  `a` decimal(64,20) DEFAULT NULL
 
37
) ENGINE=InnoDB;
 
38
INSERT INTO `t1` VALUES ('1234567890123456789012345678901234567890.00000000000000000000'),('987654321098765432109876543210987654321.00000000000000000000');
 
39
DROP TABLE t1;
 
40
#
 
41
# Bug #1707
 
42
#
 
43
CREATE TABLE t1 (`a"b"` char(2));
 
44
INSERT INTO t1 VALUES ("1\""), ("\"2");
 
45
<?xml version="1.0"?>
 
46
<drizzledump xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 
47
<database name="test">
 
48
        <table_structure name="t1">
 
49
                <field Field="a&quot;b&quot;" Type="VARCHAR" Null="TRUE" Default="" Default_is_NULL="TRUE" On_Update="" />
 
50
        </table_structure>
 
51
        <table_data name="t1">
 
52
        <row>
 
53
                <field name="a&quot;b&quot;">1&quot;</field>
 
54
        </row>
 
55
        <row>
 
56
                <field name="a&quot;b&quot;">&quot;2</field>
 
57
        </row>
 
58
        </table_data>
 
59
</database>
 
60
</drizzledump>
 
61
DROP TABLE t1;
 
62
#
 
63
# Bug #2634
 
64
#
 
65
CREATE TABLE t1 (a int);
 
66
INSERT INTO t1 VALUES (1), (2);
 
67
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
68
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
69
DROP TABLE IF EXISTS `t1`;
 
70
CREATE TABLE `t1` (
 
71
  `a` int DEFAULT NULL
 
72
) ENGINE=InnoDB;
 
73
 
 
74
ALTER TABLE `t1` DISABLE KEYS;
 
75
INSERT INTO `t1` VALUES (1),(2);
 
76
ALTER TABLE `t1` ENABLE KEYS;
 
77
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
78
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
79
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
80
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
81
DROP TABLE IF EXISTS `t1`;
 
82
CREATE TABLE `t1` (
 
83
  `a` int DEFAULT NULL
 
84
) ENGINE=InnoDB;
 
85
 
 
86
ALTER TABLE `t1` DISABLE KEYS;
 
87
INSERT INTO `t1` VALUES (1),(2);
 
88
ALTER TABLE `t1` ENABLE KEYS;
 
89
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
90
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
91
DROP TABLE t1;
 
92
#
 
93
# Bug #2592 'mysqldump doesn't quote "tricky" names correctly'
 
94
#
 
95
create table ```a` (i int);
 
96
CREATE TABLE ```a` (
 
97
  `i` int DEFAULT NULL
 
98
) ENGINE=InnoDB;
 
99
drop table ```a`;
 
100
#
 
101
# Bug #2705 'mysqldump --tab extra output'
 
102
#
 
103
create table t1(a int);
 
104
insert into t1 values (1),(2),(3);
 
105
DROP TABLE IF EXISTS `t1`;
 
106
CREATE TABLE `t1` (
 
107
  `a` int DEFAULT NULL
 
108
) ENGINE=InnoDB;
 
109
 
 
110
1
 
111
2
 
112
3
 
113
drop table t1;
 
114
#
 
115
# Bug #6101: create database problem
 
116
#
 
117
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
118
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
119
 
 
120
CREATE DATABASE IF NOT EXISTS `test`;
 
121
 
 
122
USE `test`;
 
123
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
124
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
125
create database mysqldump_test_db collate utf8_esperanto_ci;
 
126
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
127
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
128
 
 
129
CREATE DATABASE IF NOT EXISTS `mysqldump_test_db` COLLATE = utf8_esperanto_ci;
 
130
 
 
131
USE `mysqldump_test_db`;
 
132
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
133
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
134
drop database mysqldump_test_db;
 
135
#
 
136
# Bug #7020
 
137
# Check that we don't dump in UTF8 in compatible mode by default,
 
138
# but use the default compiled values, or the values given in
 
139
# --default-character-set=xxx. However, we should dump in UTF8
 
140
# if it is explicitely set.
 
141
#
 
142
# WL #2319: Exclude Tables from dump
 
143
#
 
144
CREATE TABLE t1 (a int);
 
145
CREATE TABLE t2 (a int);
 
146
INSERT INTO t1 VALUES (1),(2),(3);
 
147
INSERT INTO t2 VALUES (4),(5),(6);
 
148
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
149
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
150
DROP TABLE IF EXISTS `t2`;
 
151
CREATE TABLE `t2` (
 
152
  `a` int DEFAULT NULL
 
153
) ENGINE=InnoDB;
 
154
 
 
155
ALTER TABLE `t2` DISABLE KEYS;
 
156
INSERT INTO `t2` VALUES (4),(5),(6);
 
157
ALTER TABLE `t2` ENABLE KEYS;
 
158
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
159
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
160
DROP TABLE t1;
 
161
DROP TABLE t2;
 
162
#
 
163
#  Bug  #8830
 
164
#
 
165
CREATE TABLE t1 (`b` blob);
 
166
INSERT INTO `t1` VALUES (0x602010000280100005E71A);
 
167
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
168
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
169
DROP TABLE IF EXISTS `t1`;
 
170
CREATE TABLE `t1` (
 
171
  `b` blob
 
172
) ENGINE=InnoDB;
 
173
 
 
174
ALTER TABLE `t1` DISABLE KEYS;
 
175
INSERT INTO `t1` VALUES (0x602010000280100005E71A);
 
176
ALTER TABLE `t1` ENABLE KEYS;
 
177
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
178
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
179
DROP TABLE t1;
 
180
#
 
181
# Test for --insert-ignore
 
182
#
 
183
CREATE TABLE t1 (a int);
 
184
INSERT INTO t1 VALUES (1),(2),(3);
 
185
INSERT INTO t1 VALUES (4),(5),(6);
 
186
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
187
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
188
DROP TABLE IF EXISTS `t1`;
 
189
CREATE TABLE `t1` (
 
190
  `a` int DEFAULT NULL
 
191
) ENGINE=InnoDB;
 
192
 
 
193
ALTER TABLE `t1` DISABLE KEYS;
 
194
INSERT  IGNORE INTO `t1` VALUES (1),(2),(3),(4),(5),(6);
 
195
ALTER TABLE `t1` ENABLE KEYS;
 
196
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
197
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
198
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
199
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
200
DROP TABLE IF EXISTS `t1`;
 
201
CREATE TABLE `t1` (
 
202
  `a` int DEFAULT NULL
 
203
) ENGINE=InnoDB;
 
204
 
 
205
ALTER TABLE `t1` DISABLE KEYS;
 
206
INSERT  IGNORE INTO `t1` VALUES (1),(2),(3),(4),(5),(6);
 
207
ALTER TABLE `t1` ENABLE KEYS;
 
208
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
209
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
210
DROP TABLE t1;
 
211
#
 
212
# Bug #10286: mysqldump -c crashes on table that has many fields with long
 
213
# names
 
214
 
215
create table t1 (
 
216
F_c4ca4238a0b923820dcc509a6f75849b int,
 
217
F_c81e728d9d4c2f636f067f89cc14862c int,
 
218
F_eccbc87e4b5ce2fe28308fd9f2a7baf3 int,
 
219
F_a87ff679a2f3e71d9181a67b7542122c int,
 
220
F_e4da3b7fbbce2345d7772b0674a318d5 int,
 
221
F_1679091c5a880faf6fb5e6087eb1b2dc int,
 
222
F_8f14e45fceea167a5a36dedd4bea2543 int,
 
223
F_c9f0f895fb98ab9159f51fd0297e236d int,
 
224
F_45c48cce2e2d7fbdea1afc51c7c6ad26 int,
 
225
F_d3d9446802a44259755d38e6d163e820 int,
 
226
F_6512bd43d9caa6e02c990b0a82652dca int,
 
227
F_c20ad4d76fe97759aa27a0c99bff6710 int,
 
228
F_c51ce410c124a10e0db5e4b97fc2af39 int,
 
229
F_aab3238922bcc25a6f606eb525ffdc56 int,
 
230
F_9bf31c7ff062936a96d3c8bd1f8f2ff3 int,
 
231
F_c74d97b01eae257e44aa9d5bade97baf int,
 
232
F_70efdf2ec9b086079795c442636b55fb int,
 
233
F_6f4922f45568161a8cdf4ad2299f6d23 int,
 
234
F_1f0e3dad99908345f7439f8ffabdffc4 int,
 
235
F_98f13708210194c475687be6106a3b84 int,
 
236
F_3c59dc048e8850243be8079a5c74d079 int,
 
237
F_b6d767d2f8ed5d21a44b0e5886680cb9 int,
 
238
F_37693cfc748049e45d87b8c7d8b9aacd int,
 
239
F_1ff1de774005f8da13f42943881c655f int,
 
240
F_8e296a067a37563370ded05f5a3bf3ec int,
 
241
F_4e732ced3463d06de0ca9a15b6153677 int,
 
242
F_02e74f10e0327ad868d138f2b4fdd6f0 int,
 
243
F_33e75ff09dd601bbe69f351039152189 int,
 
244
F_6ea9ab1baa0efb9e19094440c317e21b int,
 
245
F_34173cb38f07f89ddbebc2ac9128303f int,
 
246
F_c16a5320fa475530d9583c34fd356ef5 int,
 
247
F_6364d3f0f495b6ab9dcf8d3b5c6e0b01 int,
 
248
F_182be0c5cdcd5072bb1864cdee4d3d6e int,
 
249
F_e369853df766fa44e1ed0ff613f563bd int,
 
250
F_1c383cd30b7c298ab50293adfecb7b18 int,
 
251
F_19ca14e7ea6328a42e0eb13d585e4c22 int,
 
252
F_a5bfc9e07964f8dddeb95fc584cd965d int,
 
253
F_a5771bce93e200c36f7cd9dfd0e5deaa int,
 
254
F_d67d8ab4f4c10bf22aa353e27879133c int,
 
255
F_d645920e395fedad7bbbed0eca3fe2e0 int,
 
256
F_3416a75f4cea9109507cacd8e2f2aefc int,
 
257
F_a1d0c6e83f027327d8461063f4ac58a6 int,
 
258
F_17e62166fc8586dfa4d1bc0e1742c08b int,
 
259
F_f7177163c833dff4b38fc8d2872f1ec6 int,
 
260
F_6c8349cc7260ae62e3b1396831a8398f int,
 
261
F_d9d4f495e875a2e075a1a4a6e1b9770f int,
 
262
F_67c6a1e7ce56d3d6fa748ab6d9af3fd7 int,
 
263
F_642e92efb79421734881b53e1e1b18b6 int,
 
264
F_f457c545a9ded88f18ecee47145a72c0 int,
 
265
F_c0c7c76d30bd3dcaefc96f40275bdc0a int,
 
266
F_2838023a778dfaecdc212708f721b788 int,
 
267
F_9a1158154dfa42caddbd0694a4e9bdc8 int,
 
268
F_d82c8d1619ad8176d665453cfb2e55f0 int,
 
269
F_a684eceee76fc522773286a895bc8436 int,
 
270
F_b53b3a3d6ab90ce0268229151c9bde11 int,
 
271
F_9f61408e3afb633e50cdf1b20de6f466 int,
 
272
F_72b32a1f754ba1c09b3695e0cb6cde7f int,
 
273
F_66f041e16a60928b05a7e228a89c3799 int,
 
274
F_093f65e080a295f8076b1c5722a46aa2 int,
 
275
F_072b030ba126b2f4b2374f342be9ed44 int,
 
276
F_7f39f8317fbdb1988ef4c628eba02591 int,
 
277
F_44f683a84163b3523afe57c2e008bc8c int,
 
278
F_03afdbd66e7929b125f8597834fa83a4 int,
 
279
F_ea5d2f1c4608232e07d3aa3d998e5135 int,
 
280
F_fc490ca45c00b1249bbe3554a4fdf6fb int,
 
281
F_3295c76acbf4caaed33c36b1b5fc2cb1 int,
 
282
F_735b90b4568125ed6c3f678819b6e058 int,
 
283
F_a3f390d88e4c41f2747bfa2f1b5f87db int,
 
284
F_14bfa6bb14875e45bba028a21ed38046 int,
 
285
F_7cbbc409ec990f19c78c75bd1e06f215 int,
 
286
F_e2c420d928d4bf8ce0ff2ec19b371514 int,
 
287
F_32bb90e8976aab5298d5da10fe66f21d int,
 
288
F_d2ddea18f00665ce8623e36bd4e3c7c5 int,
 
289
F_ad61ab143223efbc24c7d2583be69251 int,
 
290
F_d09bf41544a3365a46c9077ebb5e35c3 int,
 
291
F_fbd7939d674997cdb4692d34de8633c4 int,
 
292
F_28dd2c7955ce926456240b2ff0100bde int,
 
293
F_35f4a8d465e6e1edc05f3d8ab658c551 int,
 
294
F_d1fe173d08e959397adf34b1d77e88d7 int,
 
295
F_f033ab37c30201f73f142449d037028d int,
 
296
F_43ec517d68b6edd3015b3edc9a11367b int,
 
297
F_9778d5d219c5080b9a6a17bef029331c int,
 
298
F_fe9fc289c3ff0af142b6d3bead98a923 int,
 
299
F_68d30a9594728bc39aa24be94b319d21 int,
 
300
F_3ef815416f775098fe977004015c6193 int,
 
301
F_93db85ed909c13838ff95ccfa94cebd9 int,
 
302
F_c7e1249ffc03eb9ded908c236bd1996d int,
 
303
F_2a38a4a9316c49e5a833517c45d31070 int,
 
304
F_7647966b7343c29048673252e490f736 int,
 
305
F_8613985ec49eb8f757ae6439e879bb2a int,
 
306
F_54229abfcfa5649e7003b83dd4755294 int,
 
307
F_92cc227532d17e56e07902b254dfad10 int,
 
308
F_98dce83da57b0395e163467c9dae521b int,
 
309
F_f4b9ec30ad9f68f89b29639786cb62ef int,
 
310
F_812b4ba287f5ee0bc9d43bbf5bbe87fb int,
 
311
F_26657d5ff9020d2abefe558796b99584 int,
 
312
F_e2ef524fbf3d9fe611d5a8e90fefdc9c int,
 
313
F_ed3d2c21991e3bef5e069713af9fa6ca int,
 
314
F_ac627ab1ccbdb62ec96e702f07f6425b int,
 
315
F_f899139df5e1059396431415e770c6dd int,
 
316
F_38b3eff8baf56627478ec76a704e9b52 int,
 
317
F_ec8956637a99787bd197eacd77acce5e int,
 
318
F_6974ce5ac660610b44d9b9fed0ff9548 int,
 
319
F_c9e1074f5b3f9fc8ea15d152add07294 int,
 
320
F_65b9eea6e1cc6bb9f0cd2a47751a186f int,
 
321
F_f0935e4cd5920aa6c7c996a5ee53a70f int,
 
322
F_a97da629b098b75c294dffdc3e463904 int,
 
323
F_a3c65c2974270fd093ee8a9bf8ae7d0b int,
 
324
F_2723d092b63885e0d7c260cc007e8b9d int,
 
325
F_5f93f983524def3dca464469d2cf9f3e int,
 
326
F_698d51a19d8a121ce581499d7b701668 int,
 
327
F_7f6ffaa6bb0b408017b62254211691b5 int,
 
328
F_73278a4a86960eeb576a8fd4c9ec6997 int,
 
329
F_5fd0b37cd7dbbb00f97ba6ce92bf5add int,
 
330
F_2b44928ae11fb9384c4cf38708677c48 int,
 
331
F_c45147dee729311ef5b5c3003946c48f int,
 
332
F_eb160de1de89d9058fcb0b968dbbbd68 int,
 
333
F_5ef059938ba799aaa845e1c2e8a762bd int,
 
334
F_07e1cd7dca89a1678042477183b7ac3f int,
 
335
F_da4fb5c6e93e74d3df8527599fa62642 int,
 
336
F_4c56ff4ce4aaf9573aa5dff913df997a int,
 
337
F_a0a080f42e6f13b3a2df133f073095dd int,
 
338
F_202cb962ac59075b964b07152d234b70 int,
 
339
F_c8ffe9a587b126f152ed3d89a146b445 int,
 
340
F_3def184ad8f4755ff269862ea77393dd int,
 
341
F_069059b7ef840f0c74a814ec9237b6ec int,
 
342
F_ec5decca5ed3d6b8079e2e7e7bacc9f2 int,
 
343
F_76dc611d6ebaafc66cc0879c71b5db5c int,
 
344
F_d1f491a404d6854880943e5c3cd9ca25 int,
 
345
F_9b8619251a19057cff70779273e95aa6 int,
 
346
F_1afa34a7f984eeabdbb0a7d494132ee5 int,
 
347
F_65ded5353c5ee48d0b7d48c591b8f430 int,
 
348
F_9fc3d7152ba9336a670e36d0ed79bc43 int,
 
349
F_02522a2b2726fb0a03bb19f2d8d9524d int,
 
350
F_7f1de29e6da19d22b51c68001e7e0e54 int,
 
351
F_42a0e188f5033bc65bf8d78622277c4e int,
 
352
F_3988c7f88ebcb58c6ce932b957b6f332 int,
 
353
F_013d407166ec4fa56eb1e1f8cbe183b9 int,
 
354
F_e00da03b685a0dd18fb6a08af0923de0 int,
 
355
F_1385974ed5904a438616ff7bdb3f7439 int,
 
356
F_0f28b5d49b3020afeecd95b4009adf4c int,
 
357
F_a8baa56554f96369ab93e4f3bb068c22 int,
 
358
F_903ce9225fca3e988c2af215d4e544d3 int,
 
359
F_0a09c8844ba8f0936c20bd791130d6b6 int,
 
360
F_2b24d495052a8ce66358eb576b8912c8 int,
 
361
F_a5e00132373a7031000fd987a3c9f87b int,
 
362
F_8d5e957f297893487bd98fa830fa6413 int,
 
363
F_47d1e990583c9c67424d369f3414728e int,
 
364
F_f2217062e9a397a1dca429e7d70bc6ca int,
 
365
F_7ef605fc8dba5425d6965fbd4c8fbe1f int,
 
366
F_a8f15eda80c50adb0e71943adc8015cf int,
 
367
F_37a749d808e46495a8da1e5352d03cae int,
 
368
F_b3e3e393c77e35a4a3f3cbd1e429b5dc int,
 
369
F_1d7f7abc18fcb43975065399b0d1e48e int,
 
370
F_2a79ea27c279e471f4d180b08d62b00a int,
 
371
F_1c9ac0159c94d8d0cbedc973445af2da int,
 
372
F_6c4b761a28b734fe93831e3fb400ce87 int,
 
373
F_06409663226af2f3114485aa4e0a23b4 int,
 
374
F_140f6969d5213fd0ece03148e62e461e int,
 
375
F_b73ce398c39f506af761d2277d853a92 int,
 
376
F_bd4c9ab730f5513206b999ec0d90d1fb int,
 
377
F_82aa4b0af34c2313a562076992e50aa3 int,
 
378
F_0777d5c17d4066b82ab86dff8a46af6f int,
 
379
F_fa7cdfad1a5aaf8370ebeda47a1ff1c3 int,
 
380
F_9766527f2b5d3e95d4a733fcfb77bd7e int,
 
381
F_7e7757b1e12abcb736ab9a754ffb617a int,
 
382
F_5878a7ab84fb43402106c575658472fa int,
 
383
F_006f52e9102a8d3be2fe5614f42ba989 int,
 
384
F_3636638817772e42b59d74cff571fbb3 int,
 
385
F_149e9677a5989fd342ae44213df68868 int,
 
386
F_a4a042cf4fd6bfb47701cbc8a1653ada int,
 
387
F_1ff8a7b5dc7a7d1f0ed65aaa29c04b1e int,
 
388
F_f7e6c85504ce6e82442c770f7c8606f0 int,
 
389
F_bf8229696f7a3bb4700cfddef19fa23f int,
 
390
F_82161242827b703e6acf9c726942a1e4 int,
 
391
F_38af86134b65d0f10fe33d30dd76442e int,
 
392
F_96da2f590cd7246bbde0051047b0d6f7 int,
 
393
F_8f85517967795eeef66c225f7883bdcb int,
 
394
F_8f53295a73878494e9bc8dd6c3c7104f int,
 
395
F_045117b0e0a11a242b9765e79cbf113f int,
 
396
F_fc221309746013ac554571fbd180e1c8 int,
 
397
F_4c5bde74a8f110656874902f07378009 int,
 
398
F_cedebb6e872f539bef8c3f919874e9d7 int,
 
399
F_6cdd60ea0045eb7a6ec44c54d29ed402 int,
 
400
F_eecca5b6365d9607ee5a9d336962c534 int,
 
401
F_9872ed9fc22fc182d371c3e9ed316094 int,
 
402
F_31fefc0e570cb3860f2a6d4b38c6490d int,
 
403
F_9dcb88e0137649590b755372b040afad int,
 
404
F_a2557a7b2e94197ff767970b67041697 int,
 
405
F_cfecdb276f634854f3ef915e2e980c31 int,
 
406
F_0aa1883c6411f7873cb83dacb17b0afc int,
 
407
F_58a2fc6ed39fd083f55d4182bf88826d int,
 
408
F_bd686fd640be98efaae0091fa301e613 int,
 
409
F_a597e50502f5ff68e3e25b9114205d4a int,
 
410
F_0336dcbab05b9d5ad24f4333c7658a0e int,
 
411
F_084b6fbb10729ed4da8c3d3f5a3ae7c9 int,
 
412
F_85d8ce590ad8981ca2c8286f79f59954 int,
 
413
F_0e65972dce68dad4d52d063967f0a705 int,
 
414
F_84d9ee44e457ddef7f2c4f25dc8fa865 int,
 
415
F_3644a684f98ea8fe223c713b77189a77 int,
 
416
F_757b505cfd34c64c85ca5b5690ee5293 int,
 
417
F_854d6fae5ee42911677c739ee1734486 int,
 
418
F_e2c0be24560d78c5e599c2a9c9d0bbd2 int,
 
419
F_274ad4786c3abca69fa097b85867d9a4 int,
 
420
F_eae27d77ca20db309e056e3d2dcd7d69 int,
 
421
F_7eabe3a1649ffa2b3ff8c02ebfd5659f int,
 
422
F_69adc1e107f7f7d035d7baf04342e1ca int,
 
423
F_091d584fced301b442654dd8c23b3fc9 int,
 
424
F_b1d10e7bafa4421218a51b1e1f1b0ba2 int,
 
425
F_6f3ef77ac0e3619e98159e9b6febf557 int,
 
426
F_eb163727917cbba1eea208541a643e74 int,
 
427
F_1534b76d325a8f591b52d302e7181331 int,
 
428
F_979d472a84804b9f647bc185a877a8b5 int,
 
429
F_ca46c1b9512a7a8315fa3c5a946e8265 int,
 
430
F_3b8a614226a953a8cd9526fca6fe9ba5 int,
 
431
F_45fbc6d3e05ebd93369ce542e8f2322d int,
 
432
F_63dc7ed1010d3c3b8269faf0ba7491d4 int,
 
433
F_e96ed478dab8595a7dbda4cbcbee168f int,
 
434
F_c0e190d8267e36708f955d7ab048990d int,
 
435
F_ec8ce6abb3e952a85b8551ba726a1227 int,
 
436
F_060ad92489947d410d897474079c1477 int,
 
437
F_bcbe3365e6ac95ea2c0343a2395834dd int,
 
438
F_115f89503138416a242f40fb7d7f338e int,
 
439
F_13fe9d84310e77f13a6d184dbf1232f3 int,
 
440
F_d1c38a09acc34845c6be3a127a5aacaf int,
 
441
F_9cfdf10e8fc047a44b08ed031e1f0ed1 int,
 
442
F_705f2172834666788607efbfca35afb3 int,
 
443
F_74db120f0a8e5646ef5a30154e9f6deb int,
 
444
F_57aeee35c98205091e18d1140e9f38cf int,
 
445
F_6da9003b743b65f4c0ccd295cc484e57 int,
 
446
F_9b04d152845ec0a378394003c96da594 int,
 
447
F_be83ab3ecd0db773eb2dc1b0a17836a1 int,
 
448
F_e165421110ba03099a1c0393373c5b43 int,
 
449
F_289dff07669d7a23de0ef88d2f7129e7 int,
 
450
F_577ef1154f3240ad5b9b413aa7346a1e int,
 
451
F_01161aaa0b6d1345dd8fe4e481144d84 int,
 
452
F_539fd53b59e3bb12d203f45a912eeaf2 int,
 
453
F_ac1dd209cbcc5e5d1c6e28598e8cbbe8 int,
 
454
F_555d6702c950ecb729a966504af0a635 int,
 
455
F_335f5352088d7d9bf74191e006d8e24c int,
 
456
F_f340f1b1f65b6df5b5e3f94d95b11daf int,
 
457
F_e4a6222cdb5b34375400904f03d8e6a5 int,
 
458
F_cb70ab375662576bd1ac5aaf16b3fca4 int,
 
459
F_9188905e74c28e489b44e954ec0b9bca int,
 
460
F_0266e33d3f546cb5436a10798e657d97 int,
 
461
F_38db3aed920cf82ab059bfccbd02be6a int,
 
462
F_3cec07e9ba5f5bb252d13f5f431e4bbb int,
 
463
F_621bf66ddb7c962aa0d22ac97d69b793 int,
 
464
F_077e29b11be80ab57e1a2ecabb7da330 int,
 
465
F_6c9882bbac1c7093bd25041881277658 int,
 
466
F_19f3cd308f1455b3fa09a282e0d496f4 int,
 
467
F_03c6b06952c750899bb03d998e631860 int,
 
468
F_c24cd76e1ce41366a4bbe8a49b02a028 int,
 
469
F_c52f1bd66cc19d05628bd8bf27af3ad6 int,
 
470
F_fe131d7f5a6b38b23cc967316c13dae2 int,
 
471
F_f718499c1c8cef6730f9fd03c8125cab int,
 
472
F_d96409bf894217686ba124d7356686c9 int,
 
473
F_502e4a16930e414107ee22b6198c578f int,
 
474
F_cfa0860e83a4c3a763a7e62d825349f7 int,
 
475
F_a4f23670e1833f3fdb077ca70bbd5d66 int,
 
476
F_b1a59b315fc9a3002ce38bbe070ec3f5 int,
 
477
F_36660e59856b4de58a219bcf4e27eba3 int,
 
478
F_8c19f571e251e61cb8dd3612f26d5ecf int,
 
479
F_d6baf65e0b240ce177cf70da146c8dc8 int,
 
480
F_e56954b4f6347e897f954495eab16a88 int,
 
481
F_f7664060cc52bc6f3d620bcedc94a4b6 int,
 
482
F_eda80a3d5b344bc40f3bc04f65b7a357 int,
 
483
F_8f121ce07d74717e0b1f21d122e04521 int,
 
484
F_06138bc5af6023646ede0e1f7c1eac75 int,
 
485
F_39059724f73a9969845dfe4146c5660e int,
 
486
F_7f100b7b36092fb9b06dfb4fac360931 int,
 
487
F_7a614fd06c325499f1680b9896beedeb int,
 
488
F_4734ba6f3de83d861c3176a6273cac6d int,
 
489
F_d947bf06a885db0d477d707121934ff8 int,
 
490
F_63923f49e5241343aa7acb6a06a751e7 int,
 
491
F_db8e1af0cb3aca1ae2d0018624204529 int,
 
492
F_20f07591c6fcb220ffe637cda29bb3f6 int,
 
493
F_07cdfd23373b17c6b337251c22b7ea57 int,
 
494
F_d395771085aab05244a4fb8fd91bf4ee int,
 
495
F_92c8c96e4c37100777c7190b76d28233 int,
 
496
F_e3796ae838835da0b6f6ea37bcf8bcb7 int,
 
497
F_6a9aeddfc689c1d0e3b9ccc3ab651bc5 int,
 
498
F_0f49c89d1e7298bb9930789c8ed59d48 int,
 
499
F_46ba9f2a6976570b0353203ec4474217 int,
 
500
F_0e01938fc48a2cfb5f2217fbfb00722d int,
 
501
F_16a5cdae362b8d27a1d8f8c7b78b4330 int,
 
502
F_918317b57931b6b7a7d29490fe5ec9f9 int,
 
503
F_48aedb8880cab8c45637abc7493ecddd int,
 
504
F_839ab46820b524afda05122893c2fe8e int,
 
505
F_f90f2aca5c640289d0a29417bcb63a37 int,
 
506
F_9c838d2e45b2ad1094d42f4ef36764f6 int,
 
507
F_1700002963a49da13542e0726b7bb758 int,
 
508
F_53c3bce66e43be4f209556518c2fcb54 int,
 
509
F_6883966fd8f918a4aa29be29d2c386fb int,
 
510
F_49182f81e6a13cf5eaa496d51fea6406 int,
 
511
F_d296c101daa88a51f6ca8cfc1ac79b50 int,
 
512
F_9fd81843ad7f202f26c1a174c7357585 int,
 
513
F_26e359e83860db1d11b6acca57d8ea88 int,
 
514
F_ef0d3930a7b6c95bd2b32ed45989c61f int,
 
515
F_94f6d7e04a4d452035300f18b984988c int,
 
516
F_34ed066df378efacc9b924ec161e7639 int,
 
517
F_577bcc914f9e55d5e4e4f82f9f00e7d4 int,
 
518
F_11b9842e0a271ff252c1903e7132cd68 int,
 
519
F_37bc2f75bf1bcfe8450a1a41c200364c int,
 
520
F_496e05e1aea0a9c4655800e8a7b9ea28 int,
 
521
F_b2eb7349035754953b57a32e2841bda5 int,
 
522
F_8e98d81f8217304975ccb23337bb5761 int,
 
523
F_a8c88a0055f636e4a163a5e3d16adab7 int,
 
524
F_eddea82ad2755b24c4e168c5fc2ebd40 int,
 
525
F_06eb61b839a0cefee4967c67ccb099dc int,
 
526
F_9dfcd5e558dfa04aaf37f137a1d9d3e5 int,
 
527
F_950a4152c2b4aa3ad78bdd6b366cc179 int,
 
528
F_158f3069a435b314a80bdcb024f8e422 int,
 
529
F_758874998f5bd0c393da094e1967a72b int,
 
530
F_ad13a2a07ca4b7642959dc0c4c740ab6 int,
 
531
F_3fe94a002317b5f9259f82690aeea4cd int,
 
532
F_5b8add2a5d98b1a652ea7fd72d942dac int,
 
533
F_432aca3a1e345e339f35a30c8f65edce int,
 
534
F_8d3bba7425e7c98c50f52ca1b52d3735 int,
 
535
F_320722549d1751cf3f247855f937b982 int,
 
536
F_caf1a3dfb505ffed0d024130f58c5cfa int,
 
537
F_5737c6ec2e0716f3d8a7a5c4e0de0d9a int,
 
538
F_bc6dc48b743dc5d013b1abaebd2faed2 int,
 
539
F_f2fc990265c712c49d51a18a32b39f0c int,
 
540
F_89f0fd5c927d466d6ec9a21b9ac34ffa int,
 
541
F_a666587afda6e89aec274a3657558a27 int,
 
542
F_b83aac23b9528732c23cc7352950e880 int,
 
543
F_cd00692c3bfe59267d5ecfac5310286c int,
 
544
F_6faa8040da20ef399b63a72d0e4ab575 int,
 
545
F_fe73f687e5bc5280214e0486b273a5f9 int);
 
546
insert into t1 (F_8d3bba7425e7c98c50f52ca1b52d3735) values (1);
 
547
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
548
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
549
DROP TABLE IF EXISTS `t1`;
 
550
CREATE TABLE `t1` (
 
551
  `F_c4ca4238a0b923820dcc509a6f75849b` int DEFAULT NULL,
 
552
  `F_c81e728d9d4c2f636f067f89cc14862c` int DEFAULT NULL,
 
553
  `F_eccbc87e4b5ce2fe28308fd9f2a7baf3` int DEFAULT NULL,
 
554
  `F_a87ff679a2f3e71d9181a67b7542122c` int DEFAULT NULL,
 
555
  `F_e4da3b7fbbce2345d7772b0674a318d5` int DEFAULT NULL,
 
556
  `F_1679091c5a880faf6fb5e6087eb1b2dc` int DEFAULT NULL,
 
557
  `F_8f14e45fceea167a5a36dedd4bea2543` int DEFAULT NULL,
 
558
  `F_c9f0f895fb98ab9159f51fd0297e236d` int DEFAULT NULL,
 
559
  `F_45c48cce2e2d7fbdea1afc51c7c6ad26` int DEFAULT NULL,
 
560
  `F_d3d9446802a44259755d38e6d163e820` int DEFAULT NULL,
 
561
  `F_6512bd43d9caa6e02c990b0a82652dca` int DEFAULT NULL,
 
562
  `F_c20ad4d76fe97759aa27a0c99bff6710` int DEFAULT NULL,
 
563
  `F_c51ce410c124a10e0db5e4b97fc2af39` int DEFAULT NULL,
 
564
  `F_aab3238922bcc25a6f606eb525ffdc56` int DEFAULT NULL,
 
565
  `F_9bf31c7ff062936a96d3c8bd1f8f2ff3` int DEFAULT NULL,
 
566
  `F_c74d97b01eae257e44aa9d5bade97baf` int DEFAULT NULL,
 
567
  `F_70efdf2ec9b086079795c442636b55fb` int DEFAULT NULL,
 
568
  `F_6f4922f45568161a8cdf4ad2299f6d23` int DEFAULT NULL,
 
569
  `F_1f0e3dad99908345f7439f8ffabdffc4` int DEFAULT NULL,
 
570
  `F_98f13708210194c475687be6106a3b84` int DEFAULT NULL,
 
571
  `F_3c59dc048e8850243be8079a5c74d079` int DEFAULT NULL,
 
572
  `F_b6d767d2f8ed5d21a44b0e5886680cb9` int DEFAULT NULL,
 
573
  `F_37693cfc748049e45d87b8c7d8b9aacd` int DEFAULT NULL,
 
574
  `F_1ff1de774005f8da13f42943881c655f` int DEFAULT NULL,
 
575
  `F_8e296a067a37563370ded05f5a3bf3ec` int DEFAULT NULL,
 
576
  `F_4e732ced3463d06de0ca9a15b6153677` int DEFAULT NULL,
 
577
  `F_02e74f10e0327ad868d138f2b4fdd6f0` int DEFAULT NULL,
 
578
  `F_33e75ff09dd601bbe69f351039152189` int DEFAULT NULL,
 
579
  `F_6ea9ab1baa0efb9e19094440c317e21b` int DEFAULT NULL,
 
580
  `F_34173cb38f07f89ddbebc2ac9128303f` int DEFAULT NULL,
 
581
  `F_c16a5320fa475530d9583c34fd356ef5` int DEFAULT NULL,
 
582
  `F_6364d3f0f495b6ab9dcf8d3b5c6e0b01` int DEFAULT NULL,
 
583
  `F_182be0c5cdcd5072bb1864cdee4d3d6e` int DEFAULT NULL,
 
584
  `F_e369853df766fa44e1ed0ff613f563bd` int DEFAULT NULL,
 
585
  `F_1c383cd30b7c298ab50293adfecb7b18` int DEFAULT NULL,
 
586
  `F_19ca14e7ea6328a42e0eb13d585e4c22` int DEFAULT NULL,
 
587
  `F_a5bfc9e07964f8dddeb95fc584cd965d` int DEFAULT NULL,
 
588
  `F_a5771bce93e200c36f7cd9dfd0e5deaa` int DEFAULT NULL,
 
589
  `F_d67d8ab4f4c10bf22aa353e27879133c` int DEFAULT NULL,
 
590
  `F_d645920e395fedad7bbbed0eca3fe2e0` int DEFAULT NULL,
 
591
  `F_3416a75f4cea9109507cacd8e2f2aefc` int DEFAULT NULL,
 
592
  `F_a1d0c6e83f027327d8461063f4ac58a6` int DEFAULT NULL,
 
593
  `F_17e62166fc8586dfa4d1bc0e1742c08b` int DEFAULT NULL,
 
594
  `F_f7177163c833dff4b38fc8d2872f1ec6` int DEFAULT NULL,
 
595
  `F_6c8349cc7260ae62e3b1396831a8398f` int DEFAULT NULL,
 
596
  `F_d9d4f495e875a2e075a1a4a6e1b9770f` int DEFAULT NULL,
 
597
  `F_67c6a1e7ce56d3d6fa748ab6d9af3fd7` int DEFAULT NULL,
 
598
  `F_642e92efb79421734881b53e1e1b18b6` int DEFAULT NULL,
 
599
  `F_f457c545a9ded88f18ecee47145a72c0` int DEFAULT NULL,
 
600
  `F_c0c7c76d30bd3dcaefc96f40275bdc0a` int DEFAULT NULL,
 
601
  `F_2838023a778dfaecdc212708f721b788` int DEFAULT NULL,
 
602
  `F_9a1158154dfa42caddbd0694a4e9bdc8` int DEFAULT NULL,
 
603
  `F_d82c8d1619ad8176d665453cfb2e55f0` int DEFAULT NULL,
 
604
  `F_a684eceee76fc522773286a895bc8436` int DEFAULT NULL,
 
605
  `F_b53b3a3d6ab90ce0268229151c9bde11` int DEFAULT NULL,
 
606
  `F_9f61408e3afb633e50cdf1b20de6f466` int DEFAULT NULL,
 
607
  `F_72b32a1f754ba1c09b3695e0cb6cde7f` int DEFAULT NULL,
 
608
  `F_66f041e16a60928b05a7e228a89c3799` int DEFAULT NULL,
 
609
  `F_093f65e080a295f8076b1c5722a46aa2` int DEFAULT NULL,
 
610
  `F_072b030ba126b2f4b2374f342be9ed44` int DEFAULT NULL,
 
611
  `F_7f39f8317fbdb1988ef4c628eba02591` int DEFAULT NULL,
 
612
  `F_44f683a84163b3523afe57c2e008bc8c` int DEFAULT NULL,
 
613
  `F_03afdbd66e7929b125f8597834fa83a4` int DEFAULT NULL,
 
614
  `F_ea5d2f1c4608232e07d3aa3d998e5135` int DEFAULT NULL,
 
615
  `F_fc490ca45c00b1249bbe3554a4fdf6fb` int DEFAULT NULL,
 
616
  `F_3295c76acbf4caaed33c36b1b5fc2cb1` int DEFAULT NULL,
 
617
  `F_735b90b4568125ed6c3f678819b6e058` int DEFAULT NULL,
 
618
  `F_a3f390d88e4c41f2747bfa2f1b5f87db` int DEFAULT NULL,
 
619
  `F_14bfa6bb14875e45bba028a21ed38046` int DEFAULT NULL,
 
620
  `F_7cbbc409ec990f19c78c75bd1e06f215` int DEFAULT NULL,
 
621
  `F_e2c420d928d4bf8ce0ff2ec19b371514` int DEFAULT NULL,
 
622
  `F_32bb90e8976aab5298d5da10fe66f21d` int DEFAULT NULL,
 
623
  `F_d2ddea18f00665ce8623e36bd4e3c7c5` int DEFAULT NULL,
 
624
  `F_ad61ab143223efbc24c7d2583be69251` int DEFAULT NULL,
 
625
  `F_d09bf41544a3365a46c9077ebb5e35c3` int DEFAULT NULL,
 
626
  `F_fbd7939d674997cdb4692d34de8633c4` int DEFAULT NULL,
 
627
  `F_28dd2c7955ce926456240b2ff0100bde` int DEFAULT NULL,
 
628
  `F_35f4a8d465e6e1edc05f3d8ab658c551` int DEFAULT NULL,
 
629
  `F_d1fe173d08e959397adf34b1d77e88d7` int DEFAULT NULL,
 
630
  `F_f033ab37c30201f73f142449d037028d` int DEFAULT NULL,
 
631
  `F_43ec517d68b6edd3015b3edc9a11367b` int DEFAULT NULL,
 
632
  `F_9778d5d219c5080b9a6a17bef029331c` int DEFAULT NULL,
 
633
  `F_fe9fc289c3ff0af142b6d3bead98a923` int DEFAULT NULL,
 
634
  `F_68d30a9594728bc39aa24be94b319d21` int DEFAULT NULL,
 
635
  `F_3ef815416f775098fe977004015c6193` int DEFAULT NULL,
 
636
  `F_93db85ed909c13838ff95ccfa94cebd9` int DEFAULT NULL,
 
637
  `F_c7e1249ffc03eb9ded908c236bd1996d` int DEFAULT NULL,
 
638
  `F_2a38a4a9316c49e5a833517c45d31070` int DEFAULT NULL,
 
639
  `F_7647966b7343c29048673252e490f736` int DEFAULT NULL,
 
640
  `F_8613985ec49eb8f757ae6439e879bb2a` int DEFAULT NULL,
 
641
  `F_54229abfcfa5649e7003b83dd4755294` int DEFAULT NULL,
 
642
  `F_92cc227532d17e56e07902b254dfad10` int DEFAULT NULL,
 
643
  `F_98dce83da57b0395e163467c9dae521b` int DEFAULT NULL,
 
644
  `F_f4b9ec30ad9f68f89b29639786cb62ef` int DEFAULT NULL,
 
645
  `F_812b4ba287f5ee0bc9d43bbf5bbe87fb` int DEFAULT NULL,
 
646
  `F_26657d5ff9020d2abefe558796b99584` int DEFAULT NULL,
 
647
  `F_e2ef524fbf3d9fe611d5a8e90fefdc9c` int DEFAULT NULL,
 
648
  `F_ed3d2c21991e3bef5e069713af9fa6ca` int DEFAULT NULL,
 
649
  `F_ac627ab1ccbdb62ec96e702f07f6425b` int DEFAULT NULL,
 
650
  `F_f899139df5e1059396431415e770c6dd` int DEFAULT NULL,
 
651
  `F_38b3eff8baf56627478ec76a704e9b52` int DEFAULT NULL,
 
652
  `F_ec8956637a99787bd197eacd77acce5e` int DEFAULT NULL,
 
653
  `F_6974ce5ac660610b44d9b9fed0ff9548` int DEFAULT NULL,
 
654
  `F_c9e1074f5b3f9fc8ea15d152add07294` int DEFAULT NULL,
 
655
  `F_65b9eea6e1cc6bb9f0cd2a47751a186f` int DEFAULT NULL,
 
656
  `F_f0935e4cd5920aa6c7c996a5ee53a70f` int DEFAULT NULL,
 
657
  `F_a97da629b098b75c294dffdc3e463904` int DEFAULT NULL,
 
658
  `F_a3c65c2974270fd093ee8a9bf8ae7d0b` int DEFAULT NULL,
 
659
  `F_2723d092b63885e0d7c260cc007e8b9d` int DEFAULT NULL,
 
660
  `F_5f93f983524def3dca464469d2cf9f3e` int DEFAULT NULL,
 
661
  `F_698d51a19d8a121ce581499d7b701668` int DEFAULT NULL,
 
662
  `F_7f6ffaa6bb0b408017b62254211691b5` int DEFAULT NULL,
 
663
  `F_73278a4a86960eeb576a8fd4c9ec6997` int DEFAULT NULL,
 
664
  `F_5fd0b37cd7dbbb00f97ba6ce92bf5add` int DEFAULT NULL,
 
665
  `F_2b44928ae11fb9384c4cf38708677c48` int DEFAULT NULL,
 
666
  `F_c45147dee729311ef5b5c3003946c48f` int DEFAULT NULL,
 
667
  `F_eb160de1de89d9058fcb0b968dbbbd68` int DEFAULT NULL,
 
668
  `F_5ef059938ba799aaa845e1c2e8a762bd` int DEFAULT NULL,
 
669
  `F_07e1cd7dca89a1678042477183b7ac3f` int DEFAULT NULL,
 
670
  `F_da4fb5c6e93e74d3df8527599fa62642` int DEFAULT NULL,
 
671
  `F_4c56ff4ce4aaf9573aa5dff913df997a` int DEFAULT NULL,
 
672
  `F_a0a080f42e6f13b3a2df133f073095dd` int DEFAULT NULL,
 
673
  `F_202cb962ac59075b964b07152d234b70` int DEFAULT NULL,
 
674
  `F_c8ffe9a587b126f152ed3d89a146b445` int DEFAULT NULL,
 
675
  `F_3def184ad8f4755ff269862ea77393dd` int DEFAULT NULL,
 
676
  `F_069059b7ef840f0c74a814ec9237b6ec` int DEFAULT NULL,
 
677
  `F_ec5decca5ed3d6b8079e2e7e7bacc9f2` int DEFAULT NULL,
 
678
  `F_76dc611d6ebaafc66cc0879c71b5db5c` int DEFAULT NULL,
 
679
  `F_d1f491a404d6854880943e5c3cd9ca25` int DEFAULT NULL,
 
680
  `F_9b8619251a19057cff70779273e95aa6` int DEFAULT NULL,
 
681
  `F_1afa34a7f984eeabdbb0a7d494132ee5` int DEFAULT NULL,
 
682
  `F_65ded5353c5ee48d0b7d48c591b8f430` int DEFAULT NULL,
 
683
  `F_9fc3d7152ba9336a670e36d0ed79bc43` int DEFAULT NULL,
 
684
  `F_02522a2b2726fb0a03bb19f2d8d9524d` int DEFAULT NULL,
 
685
  `F_7f1de29e6da19d22b51c68001e7e0e54` int DEFAULT NULL,
 
686
  `F_42a0e188f5033bc65bf8d78622277c4e` int DEFAULT NULL,
 
687
  `F_3988c7f88ebcb58c6ce932b957b6f332` int DEFAULT NULL,
 
688
  `F_013d407166ec4fa56eb1e1f8cbe183b9` int DEFAULT NULL,
 
689
  `F_e00da03b685a0dd18fb6a08af0923de0` int DEFAULT NULL,
 
690
  `F_1385974ed5904a438616ff7bdb3f7439` int DEFAULT NULL,
 
691
  `F_0f28b5d49b3020afeecd95b4009adf4c` int DEFAULT NULL,
 
692
  `F_a8baa56554f96369ab93e4f3bb068c22` int DEFAULT NULL,
 
693
  `F_903ce9225fca3e988c2af215d4e544d3` int DEFAULT NULL,
 
694
  `F_0a09c8844ba8f0936c20bd791130d6b6` int DEFAULT NULL,
 
695
  `F_2b24d495052a8ce66358eb576b8912c8` int DEFAULT NULL,
 
696
  `F_a5e00132373a7031000fd987a3c9f87b` int DEFAULT NULL,
 
697
  `F_8d5e957f297893487bd98fa830fa6413` int DEFAULT NULL,
 
698
  `F_47d1e990583c9c67424d369f3414728e` int DEFAULT NULL,
 
699
  `F_f2217062e9a397a1dca429e7d70bc6ca` int DEFAULT NULL,
 
700
  `F_7ef605fc8dba5425d6965fbd4c8fbe1f` int DEFAULT NULL,
 
701
  `F_a8f15eda80c50adb0e71943adc8015cf` int DEFAULT NULL,
 
702
  `F_37a749d808e46495a8da1e5352d03cae` int DEFAULT NULL,
 
703
  `F_b3e3e393c77e35a4a3f3cbd1e429b5dc` int DEFAULT NULL,
 
704
  `F_1d7f7abc18fcb43975065399b0d1e48e` int DEFAULT NULL,
 
705
  `F_2a79ea27c279e471f4d180b08d62b00a` int DEFAULT NULL,
 
706
  `F_1c9ac0159c94d8d0cbedc973445af2da` int DEFAULT NULL,
 
707
  `F_6c4b761a28b734fe93831e3fb400ce87` int DEFAULT NULL,
 
708
  `F_06409663226af2f3114485aa4e0a23b4` int DEFAULT NULL,
 
709
  `F_140f6969d5213fd0ece03148e62e461e` int DEFAULT NULL,
 
710
  `F_b73ce398c39f506af761d2277d853a92` int DEFAULT NULL,
 
711
  `F_bd4c9ab730f5513206b999ec0d90d1fb` int DEFAULT NULL,
 
712
  `F_82aa4b0af34c2313a562076992e50aa3` int DEFAULT NULL,
 
713
  `F_0777d5c17d4066b82ab86dff8a46af6f` int DEFAULT NULL,
 
714
  `F_fa7cdfad1a5aaf8370ebeda47a1ff1c3` int DEFAULT NULL,
 
715
  `F_9766527f2b5d3e95d4a733fcfb77bd7e` int DEFAULT NULL,
 
716
  `F_7e7757b1e12abcb736ab9a754ffb617a` int DEFAULT NULL,
 
717
  `F_5878a7ab84fb43402106c575658472fa` int DEFAULT NULL,
 
718
  `F_006f52e9102a8d3be2fe5614f42ba989` int DEFAULT NULL,
 
719
  `F_3636638817772e42b59d74cff571fbb3` int DEFAULT NULL,
 
720
  `F_149e9677a5989fd342ae44213df68868` int DEFAULT NULL,
 
721
  `F_a4a042cf4fd6bfb47701cbc8a1653ada` int DEFAULT NULL,
 
722
  `F_1ff8a7b5dc7a7d1f0ed65aaa29c04b1e` int DEFAULT NULL,
 
723
  `F_f7e6c85504ce6e82442c770f7c8606f0` int DEFAULT NULL,
 
724
  `F_bf8229696f7a3bb4700cfddef19fa23f` int DEFAULT NULL,
 
725
  `F_82161242827b703e6acf9c726942a1e4` int DEFAULT NULL,
 
726
  `F_38af86134b65d0f10fe33d30dd76442e` int DEFAULT NULL,
 
727
  `F_96da2f590cd7246bbde0051047b0d6f7` int DEFAULT NULL,
 
728
  `F_8f85517967795eeef66c225f7883bdcb` int DEFAULT NULL,
 
729
  `F_8f53295a73878494e9bc8dd6c3c7104f` int DEFAULT NULL,
 
730
  `F_045117b0e0a11a242b9765e79cbf113f` int DEFAULT NULL,
 
731
  `F_fc221309746013ac554571fbd180e1c8` int DEFAULT NULL,
 
732
  `F_4c5bde74a8f110656874902f07378009` int DEFAULT NULL,
 
733
  `F_cedebb6e872f539bef8c3f919874e9d7` int DEFAULT NULL,
 
734
  `F_6cdd60ea0045eb7a6ec44c54d29ed402` int DEFAULT NULL,
 
735
  `F_eecca5b6365d9607ee5a9d336962c534` int DEFAULT NULL,
 
736
  `F_9872ed9fc22fc182d371c3e9ed316094` int DEFAULT NULL,
 
737
  `F_31fefc0e570cb3860f2a6d4b38c6490d` int DEFAULT NULL,
 
738
  `F_9dcb88e0137649590b755372b040afad` int DEFAULT NULL,
 
739
  `F_a2557a7b2e94197ff767970b67041697` int DEFAULT NULL,
 
740
  `F_cfecdb276f634854f3ef915e2e980c31` int DEFAULT NULL,
 
741
  `F_0aa1883c6411f7873cb83dacb17b0afc` int DEFAULT NULL,
 
742
  `F_58a2fc6ed39fd083f55d4182bf88826d` int DEFAULT NULL,
 
743
  `F_bd686fd640be98efaae0091fa301e613` int DEFAULT NULL,
 
744
  `F_a597e50502f5ff68e3e25b9114205d4a` int DEFAULT NULL,
 
745
  `F_0336dcbab05b9d5ad24f4333c7658a0e` int DEFAULT NULL,
 
746
  `F_084b6fbb10729ed4da8c3d3f5a3ae7c9` int DEFAULT NULL,
 
747
  `F_85d8ce590ad8981ca2c8286f79f59954` int DEFAULT NULL,
 
748
  `F_0e65972dce68dad4d52d063967f0a705` int DEFAULT NULL,
 
749
  `F_84d9ee44e457ddef7f2c4f25dc8fa865` int DEFAULT NULL,
 
750
  `F_3644a684f98ea8fe223c713b77189a77` int DEFAULT NULL,
 
751
  `F_757b505cfd34c64c85ca5b5690ee5293` int DEFAULT NULL,
 
752
  `F_854d6fae5ee42911677c739ee1734486` int DEFAULT NULL,
 
753
  `F_e2c0be24560d78c5e599c2a9c9d0bbd2` int DEFAULT NULL,
 
754
  `F_274ad4786c3abca69fa097b85867d9a4` int DEFAULT NULL,
 
755
  `F_eae27d77ca20db309e056e3d2dcd7d69` int DEFAULT NULL,
 
756
  `F_7eabe3a1649ffa2b3ff8c02ebfd5659f` int DEFAULT NULL,
 
757
  `F_69adc1e107f7f7d035d7baf04342e1ca` int DEFAULT NULL,
 
758
  `F_091d584fced301b442654dd8c23b3fc9` int DEFAULT NULL,
 
759
  `F_b1d10e7bafa4421218a51b1e1f1b0ba2` int DEFAULT NULL,
 
760
  `F_6f3ef77ac0e3619e98159e9b6febf557` int DEFAULT NULL,
 
761
  `F_eb163727917cbba1eea208541a643e74` int DEFAULT NULL,
 
762
  `F_1534b76d325a8f591b52d302e7181331` int DEFAULT NULL,
 
763
  `F_979d472a84804b9f647bc185a877a8b5` int DEFAULT NULL,
 
764
  `F_ca46c1b9512a7a8315fa3c5a946e8265` int DEFAULT NULL,
 
765
  `F_3b8a614226a953a8cd9526fca6fe9ba5` int DEFAULT NULL,
 
766
  `F_45fbc6d3e05ebd93369ce542e8f2322d` int DEFAULT NULL,
 
767
  `F_63dc7ed1010d3c3b8269faf0ba7491d4` int DEFAULT NULL,
 
768
  `F_e96ed478dab8595a7dbda4cbcbee168f` int DEFAULT NULL,
 
769
  `F_c0e190d8267e36708f955d7ab048990d` int DEFAULT NULL,
 
770
  `F_ec8ce6abb3e952a85b8551ba726a1227` int DEFAULT NULL,
 
771
  `F_060ad92489947d410d897474079c1477` int DEFAULT NULL,
 
772
  `F_bcbe3365e6ac95ea2c0343a2395834dd` int DEFAULT NULL,
 
773
  `F_115f89503138416a242f40fb7d7f338e` int DEFAULT NULL,
 
774
  `F_13fe9d84310e77f13a6d184dbf1232f3` int DEFAULT NULL,
 
775
  `F_d1c38a09acc34845c6be3a127a5aacaf` int DEFAULT NULL,
 
776
  `F_9cfdf10e8fc047a44b08ed031e1f0ed1` int DEFAULT NULL,
 
777
  `F_705f2172834666788607efbfca35afb3` int DEFAULT NULL,
 
778
  `F_74db120f0a8e5646ef5a30154e9f6deb` int DEFAULT NULL,
 
779
  `F_57aeee35c98205091e18d1140e9f38cf` int DEFAULT NULL,
 
780
  `F_6da9003b743b65f4c0ccd295cc484e57` int DEFAULT NULL,
 
781
  `F_9b04d152845ec0a378394003c96da594` int DEFAULT NULL,
 
782
  `F_be83ab3ecd0db773eb2dc1b0a17836a1` int DEFAULT NULL,
 
783
  `F_e165421110ba03099a1c0393373c5b43` int DEFAULT NULL,
 
784
  `F_289dff07669d7a23de0ef88d2f7129e7` int DEFAULT NULL,
 
785
  `F_577ef1154f3240ad5b9b413aa7346a1e` int DEFAULT NULL,
 
786
  `F_01161aaa0b6d1345dd8fe4e481144d84` int DEFAULT NULL,
 
787
  `F_539fd53b59e3bb12d203f45a912eeaf2` int DEFAULT NULL,
 
788
  `F_ac1dd209cbcc5e5d1c6e28598e8cbbe8` int DEFAULT NULL,
 
789
  `F_555d6702c950ecb729a966504af0a635` int DEFAULT NULL,
 
790
  `F_335f5352088d7d9bf74191e006d8e24c` int DEFAULT NULL,
 
791
  `F_f340f1b1f65b6df5b5e3f94d95b11daf` int DEFAULT NULL,
 
792
  `F_e4a6222cdb5b34375400904f03d8e6a5` int DEFAULT NULL,
 
793
  `F_cb70ab375662576bd1ac5aaf16b3fca4` int DEFAULT NULL,
 
794
  `F_9188905e74c28e489b44e954ec0b9bca` int DEFAULT NULL,
 
795
  `F_0266e33d3f546cb5436a10798e657d97` int DEFAULT NULL,
 
796
  `F_38db3aed920cf82ab059bfccbd02be6a` int DEFAULT NULL,
 
797
  `F_3cec07e9ba5f5bb252d13f5f431e4bbb` int DEFAULT NULL,
 
798
  `F_621bf66ddb7c962aa0d22ac97d69b793` int DEFAULT NULL,
 
799
  `F_077e29b11be80ab57e1a2ecabb7da330` int DEFAULT NULL,
 
800
  `F_6c9882bbac1c7093bd25041881277658` int DEFAULT NULL,
 
801
  `F_19f3cd308f1455b3fa09a282e0d496f4` int DEFAULT NULL,
 
802
  `F_03c6b06952c750899bb03d998e631860` int DEFAULT NULL,
 
803
  `F_c24cd76e1ce41366a4bbe8a49b02a028` int DEFAULT NULL,
 
804
  `F_c52f1bd66cc19d05628bd8bf27af3ad6` int DEFAULT NULL,
 
805
  `F_fe131d7f5a6b38b23cc967316c13dae2` int DEFAULT NULL,
 
806
  `F_f718499c1c8cef6730f9fd03c8125cab` int DEFAULT NULL,
 
807
  `F_d96409bf894217686ba124d7356686c9` int DEFAULT NULL,
 
808
  `F_502e4a16930e414107ee22b6198c578f` int DEFAULT NULL,
 
809
  `F_cfa0860e83a4c3a763a7e62d825349f7` int DEFAULT NULL,
 
810
  `F_a4f23670e1833f3fdb077ca70bbd5d66` int DEFAULT NULL,
 
811
  `F_b1a59b315fc9a3002ce38bbe070ec3f5` int DEFAULT NULL,
 
812
  `F_36660e59856b4de58a219bcf4e27eba3` int DEFAULT NULL,
 
813
  `F_8c19f571e251e61cb8dd3612f26d5ecf` int DEFAULT NULL,
 
814
  `F_d6baf65e0b240ce177cf70da146c8dc8` int DEFAULT NULL,
 
815
  `F_e56954b4f6347e897f954495eab16a88` int DEFAULT NULL,
 
816
  `F_f7664060cc52bc6f3d620bcedc94a4b6` int DEFAULT NULL,
 
817
  `F_eda80a3d5b344bc40f3bc04f65b7a357` int DEFAULT NULL,
 
818
  `F_8f121ce07d74717e0b1f21d122e04521` int DEFAULT NULL,
 
819
  `F_06138bc5af6023646ede0e1f7c1eac75` int DEFAULT NULL,
 
820
  `F_39059724f73a9969845dfe4146c5660e` int DEFAULT NULL,
 
821
  `F_7f100b7b36092fb9b06dfb4fac360931` int DEFAULT NULL,
 
822
  `F_7a614fd06c325499f1680b9896beedeb` int DEFAULT NULL,
 
823
  `F_4734ba6f3de83d861c3176a6273cac6d` int DEFAULT NULL,
 
824
  `F_d947bf06a885db0d477d707121934ff8` int DEFAULT NULL,
 
825
  `F_63923f49e5241343aa7acb6a06a751e7` int DEFAULT NULL,
 
826
  `F_db8e1af0cb3aca1ae2d0018624204529` int DEFAULT NULL,
 
827
  `F_20f07591c6fcb220ffe637cda29bb3f6` int DEFAULT NULL,
 
828
  `F_07cdfd23373b17c6b337251c22b7ea57` int DEFAULT NULL,
 
829
  `F_d395771085aab05244a4fb8fd91bf4ee` int DEFAULT NULL,
 
830
  `F_92c8c96e4c37100777c7190b76d28233` int DEFAULT NULL,
 
831
  `F_e3796ae838835da0b6f6ea37bcf8bcb7` int DEFAULT NULL,
 
832
  `F_6a9aeddfc689c1d0e3b9ccc3ab651bc5` int DEFAULT NULL,
 
833
  `F_0f49c89d1e7298bb9930789c8ed59d48` int DEFAULT NULL,
 
834
  `F_46ba9f2a6976570b0353203ec4474217` int DEFAULT NULL,
 
835
  `F_0e01938fc48a2cfb5f2217fbfb00722d` int DEFAULT NULL,
 
836
  `F_16a5cdae362b8d27a1d8f8c7b78b4330` int DEFAULT NULL,
 
837
  `F_918317b57931b6b7a7d29490fe5ec9f9` int DEFAULT NULL,
 
838
  `F_48aedb8880cab8c45637abc7493ecddd` int DEFAULT NULL,
 
839
  `F_839ab46820b524afda05122893c2fe8e` int DEFAULT NULL,
 
840
  `F_f90f2aca5c640289d0a29417bcb63a37` int DEFAULT NULL,
 
841
  `F_9c838d2e45b2ad1094d42f4ef36764f6` int DEFAULT NULL,
 
842
  `F_1700002963a49da13542e0726b7bb758` int DEFAULT NULL,
 
843
  `F_53c3bce66e43be4f209556518c2fcb54` int DEFAULT NULL,
 
844
  `F_6883966fd8f918a4aa29be29d2c386fb` int DEFAULT NULL,
 
845
  `F_49182f81e6a13cf5eaa496d51fea6406` int DEFAULT NULL,
 
846
  `F_d296c101daa88a51f6ca8cfc1ac79b50` int DEFAULT NULL,
 
847
  `F_9fd81843ad7f202f26c1a174c7357585` int DEFAULT NULL,
 
848
  `F_26e359e83860db1d11b6acca57d8ea88` int DEFAULT NULL,
 
849
  `F_ef0d3930a7b6c95bd2b32ed45989c61f` int DEFAULT NULL,
 
850
  `F_94f6d7e04a4d452035300f18b984988c` int DEFAULT NULL,
 
851
  `F_34ed066df378efacc9b924ec161e7639` int DEFAULT NULL,
 
852
  `F_577bcc914f9e55d5e4e4f82f9f00e7d4` int DEFAULT NULL,
 
853
  `F_11b9842e0a271ff252c1903e7132cd68` int DEFAULT NULL,
 
854
  `F_37bc2f75bf1bcfe8450a1a41c200364c` int DEFAULT NULL,
 
855
  `F_496e05e1aea0a9c4655800e8a7b9ea28` int DEFAULT NULL,
 
856
  `F_b2eb7349035754953b57a32e2841bda5` int DEFAULT NULL,
 
857
  `F_8e98d81f8217304975ccb23337bb5761` int DEFAULT NULL,
 
858
  `F_a8c88a0055f636e4a163a5e3d16adab7` int DEFAULT NULL,
 
859
  `F_eddea82ad2755b24c4e168c5fc2ebd40` int DEFAULT NULL,
 
860
  `F_06eb61b839a0cefee4967c67ccb099dc` int DEFAULT NULL,
 
861
  `F_9dfcd5e558dfa04aaf37f137a1d9d3e5` int DEFAULT NULL,
 
862
  `F_950a4152c2b4aa3ad78bdd6b366cc179` int DEFAULT NULL,
 
863
  `F_158f3069a435b314a80bdcb024f8e422` int DEFAULT NULL,
 
864
  `F_758874998f5bd0c393da094e1967a72b` int DEFAULT NULL,
 
865
  `F_ad13a2a07ca4b7642959dc0c4c740ab6` int DEFAULT NULL,
 
866
  `F_3fe94a002317b5f9259f82690aeea4cd` int DEFAULT NULL,
 
867
  `F_5b8add2a5d98b1a652ea7fd72d942dac` int DEFAULT NULL,
 
868
  `F_432aca3a1e345e339f35a30c8f65edce` int DEFAULT NULL,
 
869
  `F_8d3bba7425e7c98c50f52ca1b52d3735` int DEFAULT NULL,
 
870
  `F_320722549d1751cf3f247855f937b982` int DEFAULT NULL,
 
871
  `F_caf1a3dfb505ffed0d024130f58c5cfa` int DEFAULT NULL,
 
872
  `F_5737c6ec2e0716f3d8a7a5c4e0de0d9a` int DEFAULT NULL,
 
873
  `F_bc6dc48b743dc5d013b1abaebd2faed2` int DEFAULT NULL,
 
874
  `F_f2fc990265c712c49d51a18a32b39f0c` int DEFAULT NULL,
 
875
  `F_89f0fd5c927d466d6ec9a21b9ac34ffa` int DEFAULT NULL,
 
876
  `F_a666587afda6e89aec274a3657558a27` int DEFAULT NULL,
 
877
  `F_b83aac23b9528732c23cc7352950e880` int DEFAULT NULL,
 
878
  `F_cd00692c3bfe59267d5ecfac5310286c` int DEFAULT NULL,
 
879
  `F_6faa8040da20ef399b63a72d0e4ab575` int DEFAULT NULL,
 
880
  `F_fe73f687e5bc5280214e0486b273a5f9` int DEFAULT NULL
 
881
) ENGINE=InnoDB;
 
882
 
 
883
ALTER TABLE `t1` DISABLE KEYS;
 
884
INSERT INTO `t1` (`F_c4ca4238a0b923820dcc509a6f75849b`, `F_c81e728d9d4c2f636f067f89cc14862c`, `F_eccbc87e4b5ce2fe28308fd9f2a7baf3`, `F_a87ff679a2f3e71d9181a67b7542122c`, `F_e4da3b7fbbce2345d7772b0674a318d5`, `F_1679091c5a880faf6fb5e6087eb1b2dc`, `F_8f14e45fceea167a5a36dedd4bea2543`, `F_c9f0f895fb98ab9159f51fd0297e236d`, `F_45c48cce2e2d7fbdea1afc51c7c6ad26`, `F_d3d9446802a44259755d38e6d163e820`, `F_6512bd43d9caa6e02c990b0a82652dca`, `F_c20ad4d76fe97759aa27a0c99bff6710`, `F_c51ce410c124a10e0db5e4b97fc2af39`, `F_aab3238922bcc25a6f606eb525ffdc56`, `F_9bf31c7ff062936a96d3c8bd1f8f2ff3`, `F_c74d97b01eae257e44aa9d5bade97baf`, `F_70efdf2ec9b086079795c442636b55fb`, `F_6f4922f45568161a8cdf4ad2299f6d23`, `F_1f0e3dad99908345f7439f8ffabdffc4`, `F_98f13708210194c475687be6106a3b84`, `F_3c59dc048e8850243be8079a5c74d079`, `F_b6d767d2f8ed5d21a44b0e5886680cb9`, `F_37693cfc748049e45d87b8c7d8b9aacd`, `F_1ff1de774005f8da13f42943881c655f`, `F_8e296a067a37563370ded05f5a3bf3ec`, `F_4e732ced3463d06de0ca9a15b6153677`, `F_02e74f10e0327ad868d138f2b4fdd6f0`, `F_33e75ff09dd601bbe69f351039152189`, `F_6ea9ab1baa0efb9e19094440c317e21b`, `F_34173cb38f07f89ddbebc2ac9128303f`, `F_c16a5320fa475530d9583c34fd356ef5`, `F_6364d3f0f495b6ab9dcf8d3b5c6e0b01`, `F_182be0c5cdcd5072bb1864cdee4d3d6e`, `F_e369853df766fa44e1ed0ff613f563bd`, `F_1c383cd30b7c298ab50293adfecb7b18`, `F_19ca14e7ea6328a42e0eb13d585e4c22`, `F_a5bfc9e07964f8dddeb95fc584cd965d`, `F_a5771bce93e200c36f7cd9dfd0e5deaa`, `F_d67d8ab4f4c10bf22aa353e27879133c`, `F_d645920e395fedad7bbbed0eca3fe2e0`, `F_3416a75f4cea9109507cacd8e2f2aefc`, `F_a1d0c6e83f027327d8461063f4ac58a6`, `F_17e62166fc8586dfa4d1bc0e1742c08b`, `F_f7177163c833dff4b38fc8d2872f1ec6`, `F_6c8349cc7260ae62e3b1396831a8398f`, `F_d9d4f495e875a2e075a1a4a6e1b9770f`, `F_67c6a1e7ce56d3d6fa748ab6d9af3fd7`, `F_642e92efb79421734881b53e1e1b18b6`, `F_f457c545a9ded88f18ecee47145a72c0`, `F_c0c7c76d30bd3dcaefc96f40275bdc0a`, `F_2838023a778dfaecdc212708f721b788`, `F_9a1158154dfa42caddbd0694a4e9bdc8`, `F_d82c8d1619ad8176d665453cfb2e55f0`, `F_a684eceee76fc522773286a895bc8436`, `F_b53b3a3d6ab90ce0268229151c9bde11`, `F_9f61408e3afb633e50cdf1b20de6f466`, `F_72b32a1f754ba1c09b3695e0cb6cde7f`, `F_66f041e16a60928b05a7e228a89c3799`, `F_093f65e080a295f8076b1c5722a46aa2`, `F_072b030ba126b2f4b2374f342be9ed44`, `F_7f39f8317fbdb1988ef4c628eba02591`, `F_44f683a84163b3523afe57c2e008bc8c`, `F_03afdbd66e7929b125f8597834fa83a4`, `F_ea5d2f1c4608232e07d3aa3d998e5135`, `F_fc490ca45c00b1249bbe3554a4fdf6fb`, `F_3295c76acbf4caaed33c36b1b5fc2cb1`, `F_735b90b4568125ed6c3f678819b6e058`, `F_a3f390d88e4c41f2747bfa2f1b5f87db`, `F_14bfa6bb14875e45bba028a21ed38046`, `F_7cbbc409ec990f19c78c75bd1e06f215`, `F_e2c420d928d4bf8ce0ff2ec19b371514`, `F_32bb90e8976aab5298d5da10fe66f21d`, `F_d2ddea18f00665ce8623e36bd4e3c7c5`, `F_ad61ab143223efbc24c7d2583be69251`, `F_d09bf41544a3365a46c9077ebb5e35c3`, `F_fbd7939d674997cdb4692d34de8633c4`, `F_28dd2c7955ce926456240b2ff0100bde`, `F_35f4a8d465e6e1edc05f3d8ab658c551`, `F_d1fe173d08e959397adf34b1d77e88d7`, `F_f033ab37c30201f73f142449d037028d`, `F_43ec517d68b6edd3015b3edc9a11367b`, `F_9778d5d219c5080b9a6a17bef029331c`, `F_fe9fc289c3ff0af142b6d3bead98a923`, `F_68d30a9594728bc39aa24be94b319d21`, `F_3ef815416f775098fe977004015c6193`, `F_93db85ed909c13838ff95ccfa94cebd9`, `F_c7e1249ffc03eb9ded908c236bd1996d`, `F_2a38a4a9316c49e5a833517c45d31070`, `F_7647966b7343c29048673252e490f736`, `F_8613985ec49eb8f757ae6439e879bb2a`, `F_54229abfcfa5649e7003b83dd4755294`, `F_92cc227532d17e56e07902b254dfad10`, `F_98dce83da57b0395e163467c9dae521b`, `F_f4b9ec30ad9f68f89b29639786cb62ef`, `F_812b4ba287f5ee0bc9d43bbf5bbe87fb`, `F_26657d5ff9020d2abefe558796b99584`, `F_e2ef524fbf3d9fe611d5a8e90fefdc9c`, `F_ed3d2c21991e3bef5e069713af9fa6ca`, `F_ac627ab1ccbdb62ec96e702f07f6425b`, `F_f899139df5e1059396431415e770c6dd`, `F_38b3eff8baf56627478ec76a704e9b52`, `F_ec8956637a99787bd197eacd77acce5e`, `F_6974ce5ac660610b44d9b9fed0ff9548`, `F_c9e1074f5b3f9fc8ea15d152add07294`, `F_65b9eea6e1cc6bb9f0cd2a47751a186f`, `F_f0935e4cd5920aa6c7c996a5ee53a70f`, `F_a97da629b098b75c294dffdc3e463904`, `F_a3c65c2974270fd093ee8a9bf8ae7d0b`, `F_2723d092b63885e0d7c260cc007e8b9d`, `F_5f93f983524def3dca464469d2cf9f3e`, `F_698d51a19d8a121ce581499d7b701668`, `F_7f6ffaa6bb0b408017b62254211691b5`, `F_73278a4a86960eeb576a8fd4c9ec6997`, `F_5fd0b37cd7dbbb00f97ba6ce92bf5add`, `F_2b44928ae11fb9384c4cf38708677c48`, `F_c45147dee729311ef5b5c3003946c48f`, `F_eb160de1de89d9058fcb0b968dbbbd68`, `F_5ef059938ba799aaa845e1c2e8a762bd`, `F_07e1cd7dca89a1678042477183b7ac3f`, `F_da4fb5c6e93e74d3df8527599fa62642`, `F_4c56ff4ce4aaf9573aa5dff913df997a`, `F_a0a080f42e6f13b3a2df133f073095dd`, `F_202cb962ac59075b964b07152d234b70`, `F_c8ffe9a587b126f152ed3d89a146b445`, `F_3def184ad8f4755ff269862ea77393dd`, `F_069059b7ef840f0c74a814ec9237b6ec`, `F_ec5decca5ed3d6b8079e2e7e7bacc9f2`, `F_76dc611d6ebaafc66cc0879c71b5db5c`, `F_d1f491a404d6854880943e5c3cd9ca25`, `F_9b8619251a19057cff70779273e95aa6`, `F_1afa34a7f984eeabdbb0a7d494132ee5`, `F_65ded5353c5ee48d0b7d48c591b8f430`, `F_9fc3d7152ba9336a670e36d0ed79bc43`, `F_02522a2b2726fb0a03bb19f2d8d9524d`, `F_7f1de29e6da19d22b51c68001e7e0e54`, `F_42a0e188f5033bc65bf8d78622277c4e`, `F_3988c7f88ebcb58c6ce932b957b6f332`, `F_013d407166ec4fa56eb1e1f8cbe183b9`, `F_e00da03b685a0dd18fb6a08af0923de0`, `F_1385974ed5904a438616ff7bdb3f7439`, `F_0f28b5d49b3020afeecd95b4009adf4c`, `F_a8baa56554f96369ab93e4f3bb068c22`, `F_903ce9225fca3e988c2af215d4e544d3`, `F_0a09c8844ba8f0936c20bd791130d6b6`, `F_2b24d495052a8ce66358eb576b8912c8`, `F_a5e00132373a7031000fd987a3c9f87b`, `F_8d5e957f297893487bd98fa830fa6413`, `F_47d1e990583c9c67424d369f3414728e`, `F_f2217062e9a397a1dca429e7d70bc6ca`, `F_7ef605fc8dba5425d6965fbd4c8fbe1f`, `F_a8f15eda80c50adb0e71943adc8015cf`, `F_37a749d808e46495a8da1e5352d03cae`, `F_b3e3e393c77e35a4a3f3cbd1e429b5dc`, `F_1d7f7abc18fcb43975065399b0d1e48e`, `F_2a79ea27c279e471f4d180b08d62b00a`, `F_1c9ac0159c94d8d0cbedc973445af2da`, `F_6c4b761a28b734fe93831e3fb400ce87`, `F_06409663226af2f3114485aa4e0a23b4`, `F_140f6969d5213fd0ece03148e62e461e`, `F_b73ce398c39f506af761d2277d853a92`, `F_bd4c9ab730f5513206b999ec0d90d1fb`, `F_82aa4b0af34c2313a562076992e50aa3`, `F_0777d5c17d4066b82ab86dff8a46af6f`, `F_fa7cdfad1a5aaf8370ebeda47a1ff1c3`, `F_9766527f2b5d3e95d4a733fcfb77bd7e`, `F_7e7757b1e12abcb736ab9a754ffb617a`, `F_5878a7ab84fb43402106c575658472fa`, `F_006f52e9102a8d3be2fe5614f42ba989`, `F_3636638817772e42b59d74cff571fbb3`, `F_149e9677a5989fd342ae44213df68868`, `F_a4a042cf4fd6bfb47701cbc8a1653ada`, `F_1ff8a7b5dc7a7d1f0ed65aaa29c04b1e`, `F_f7e6c85504ce6e82442c770f7c8606f0`, `F_bf8229696f7a3bb4700cfddef19fa23f`, `F_82161242827b703e6acf9c726942a1e4`, `F_38af86134b65d0f10fe33d30dd76442e`, `F_96da2f590cd7246bbde0051047b0d6f7`, `F_8f85517967795eeef66c225f7883bdcb`, `F_8f53295a73878494e9bc8dd6c3c7104f`, `F_045117b0e0a11a242b9765e79cbf113f`, `F_fc221309746013ac554571fbd180e1c8`, `F_4c5bde74a8f110656874902f07378009`, `F_cedebb6e872f539bef8c3f919874e9d7`, `F_6cdd60ea0045eb7a6ec44c54d29ed402`, `F_eecca5b6365d9607ee5a9d336962c534`, `F_9872ed9fc22fc182d371c3e9ed316094`, `F_31fefc0e570cb3860f2a6d4b38c6490d`, `F_9dcb88e0137649590b755372b040afad`, `F_a2557a7b2e94197ff767970b67041697`, `F_cfecdb276f634854f3ef915e2e980c31`, `F_0aa1883c6411f7873cb83dacb17b0afc`, `F_58a2fc6ed39fd083f55d4182bf88826d`, `F_bd686fd640be98efaae0091fa301e613`, `F_a597e50502f5ff68e3e25b9114205d4a`, `F_0336dcbab05b9d5ad24f4333c7658a0e`, `F_084b6fbb10729ed4da8c3d3f5a3ae7c9`, `F_85d8ce590ad8981ca2c8286f79f59954`, `F_0e65972dce68dad4d52d063967f0a705`, `F_84d9ee44e457ddef7f2c4f25dc8fa865`, `F_3644a684f98ea8fe223c713b77189a77`, `F_757b505cfd34c64c85ca5b5690ee5293`, `F_854d6fae5ee42911677c739ee1734486`, `F_e2c0be24560d78c5e599c2a9c9d0bbd2`, `F_274ad4786c3abca69fa097b85867d9a4`, `F_eae27d77ca20db309e056e3d2dcd7d69`, `F_7eabe3a1649ffa2b3ff8c02ebfd5659f`, `F_69adc1e107f7f7d035d7baf04342e1ca`, `F_091d584fced301b442654dd8c23b3fc9`, `F_b1d10e7bafa4421218a51b1e1f1b0ba2`, `F_6f3ef77ac0e3619e98159e9b6febf557`, `F_eb163727917cbba1eea208541a643e74`, `F_1534b76d325a8f591b52d302e7181331`, `F_979d472a84804b9f647bc185a877a8b5`, `F_ca46c1b9512a7a8315fa3c5a946e8265`, `F_3b8a614226a953a8cd9526fca6fe9ba5`, `F_45fbc6d3e05ebd93369ce542e8f2322d`, `F_63dc7ed1010d3c3b8269faf0ba7491d4`, `F_e96ed478dab8595a7dbda4cbcbee168f`, `F_c0e190d8267e36708f955d7ab048990d`, `F_ec8ce6abb3e952a85b8551ba726a1227`, `F_060ad92489947d410d897474079c1477`, `F_bcbe3365e6ac95ea2c0343a2395834dd`, `F_115f89503138416a242f40fb7d7f338e`, `F_13fe9d84310e77f13a6d184dbf1232f3`, `F_d1c38a09acc34845c6be3a127a5aacaf`, `F_9cfdf10e8fc047a44b08ed031e1f0ed1`, `F_705f2172834666788607efbfca35afb3`, `F_74db120f0a8e5646ef5a30154e9f6deb`, `F_57aeee35c98205091e18d1140e9f38cf`, `F_6da9003b743b65f4c0ccd295cc484e57`, `F_9b04d152845ec0a378394003c96da594`, `F_be83ab3ecd0db773eb2dc1b0a17836a1`, `F_e165421110ba03099a1c0393373c5b43`, `F_289dff07669d7a23de0ef88d2f7129e7`, `F_577ef1154f3240ad5b9b413aa7346a1e`, `F_01161aaa0b6d1345dd8fe4e481144d84`, `F_539fd53b59e3bb12d203f45a912eeaf2`, `F_ac1dd209cbcc5e5d1c6e28598e8cbbe8`, `F_555d6702c950ecb729a966504af0a635`, `F_335f5352088d7d9bf74191e006d8e24c`, `F_f340f1b1f65b6df5b5e3f94d95b11daf`, `F_e4a6222cdb5b34375400904f03d8e6a5`, `F_cb70ab375662576bd1ac5aaf16b3fca4`, `F_9188905e74c28e489b44e954ec0b9bca`, `F_0266e33d3f546cb5436a10798e657d97`, `F_38db3aed920cf82ab059bfccbd02be6a`, `F_3cec07e9ba5f5bb252d13f5f431e4bbb`, `F_621bf66ddb7c962aa0d22ac97d69b793`, `F_077e29b11be80ab57e1a2ecabb7da330`, `F_6c9882bbac1c7093bd25041881277658`, `F_19f3cd308f1455b3fa09a282e0d496f4`, `F_03c6b06952c750899bb03d998e631860`, `F_c24cd76e1ce41366a4bbe8a49b02a028`, `F_c52f1bd66cc19d05628bd8bf27af3ad6`, `F_fe131d7f5a6b38b23cc967316c13dae2`, `F_f718499c1c8cef6730f9fd03c8125cab`, `F_d96409bf894217686ba124d7356686c9`, `F_502e4a16930e414107ee22b6198c578f`, `F_cfa0860e83a4c3a763a7e62d825349f7`, `F_a4f23670e1833f3fdb077ca70bbd5d66`, `F_b1a59b315fc9a3002ce38bbe070ec3f5`, `F_36660e59856b4de58a219bcf4e27eba3`, `F_8c19f571e251e61cb8dd3612f26d5ecf`, `F_d6baf65e0b240ce177cf70da146c8dc8`, `F_e56954b4f6347e897f954495eab16a88`, `F_f7664060cc52bc6f3d620bcedc94a4b6`, `F_eda80a3d5b344bc40f3bc04f65b7a357`, `F_8f121ce07d74717e0b1f21d122e04521`, `F_06138bc5af6023646ede0e1f7c1eac75`, `F_39059724f73a9969845dfe4146c5660e`, `F_7f100b7b36092fb9b06dfb4fac360931`, `F_7a614fd06c325499f1680b9896beedeb`, `F_4734ba6f3de83d861c3176a6273cac6d`, `F_d947bf06a885db0d477d707121934ff8`, `F_63923f49e5241343aa7acb6a06a751e7`, `F_db8e1af0cb3aca1ae2d0018624204529`, `F_20f07591c6fcb220ffe637cda29bb3f6`, `F_07cdfd23373b17c6b337251c22b7ea57`, `F_d395771085aab05244a4fb8fd91bf4ee`, `F_92c8c96e4c37100777c7190b76d28233`, `F_e3796ae838835da0b6f6ea37bcf8bcb7`, `F_6a9aeddfc689c1d0e3b9ccc3ab651bc5`, `F_0f49c89d1e7298bb9930789c8ed59d48`, `F_46ba9f2a6976570b0353203ec4474217`, `F_0e01938fc48a2cfb5f2217fbfb00722d`, `F_16a5cdae362b8d27a1d8f8c7b78b4330`, `F_918317b57931b6b7a7d29490fe5ec9f9`, `F_48aedb8880cab8c45637abc7493ecddd`, `F_839ab46820b524afda05122893c2fe8e`, `F_f90f2aca5c640289d0a29417bcb63a37`, `F_9c838d2e45b2ad1094d42f4ef36764f6`, `F_1700002963a49da13542e0726b7bb758`, `F_53c3bce66e43be4f209556518c2fcb54`, `F_6883966fd8f918a4aa29be29d2c386fb`, `F_49182f81e6a13cf5eaa496d51fea6406`, `F_d296c101daa88a51f6ca8cfc1ac79b50`, `F_9fd81843ad7f202f26c1a174c7357585`, `F_26e359e83860db1d11b6acca57d8ea88`, `F_ef0d3930a7b6c95bd2b32ed45989c61f`, `F_94f6d7e04a4d452035300f18b984988c`, `F_34ed066df378efacc9b924ec161e7639`, `F_577bcc914f9e55d5e4e4f82f9f00e7d4`, `F_11b9842e0a271ff252c1903e7132cd68`, `F_37bc2f75bf1bcfe8450a1a41c200364c`, `F_496e05e1aea0a9c4655800e8a7b9ea28`, `F_b2eb7349035754953b57a32e2841bda5`, `F_8e98d81f8217304975ccb23337bb5761`, `F_a8c88a0055f636e4a163a5e3d16adab7`, `F_eddea82ad2755b24c4e168c5fc2ebd40`, `F_06eb61b839a0cefee4967c67ccb099dc`, `F_9dfcd5e558dfa04aaf37f137a1d9d3e5`, `F_950a4152c2b4aa3ad78bdd6b366cc179`, `F_158f3069a435b314a80bdcb024f8e422`, `F_758874998f5bd0c393da094e1967a72b`, `F_ad13a2a07ca4b7642959dc0c4c740ab6`, `F_3fe94a002317b5f9259f82690aeea4cd`, `F_5b8add2a5d98b1a652ea7fd72d942dac`, `F_432aca3a1e345e339f35a30c8f65edce`, `F_8d3bba7425e7c98c50f52ca1b52d3735`, `F_320722549d1751cf3f247855f937b982`, `F_caf1a3dfb505ffed0d024130f58c5cfa`, `F_5737c6ec2e0716f3d8a7a5c4e0de0d9a`, `F_bc6dc48b743dc5d013b1abaebd2faed2`, `F_f2fc990265c712c49d51a18a32b39f0c`, `F_89f0fd5c927d466d6ec9a21b9ac34ffa`, `F_a666587afda6e89aec274a3657558a27`, `F_b83aac23b9528732c23cc7352950e880`, `F_cd00692c3bfe59267d5ecfac5310286c`, `F_6faa8040da20ef399b63a72d0e4ab575`, `F_fe73f687e5bc5280214e0486b273a5f9`) VALUES (NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
 
885
ALTER TABLE `t1` ENABLE KEYS;
 
886
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
887
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
888
drop table t1;
 
889
#
 
890
# Test for --add-drop-database
 
891
#
 
892
CREATE TABLE t1 (a int);
 
893
INSERT INTO t1 VALUES (1),(2),(3);
 
894
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
895
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
896
 
 
897
DROP DATABASE IF EXISTS `test`;
 
898
 
 
899
CREATE DATABASE IF NOT EXISTS `test`;
 
900
 
 
901
USE `test`;
 
902
DROP TABLE IF EXISTS `t1`;
 
903
CREATE TABLE `t1` (
 
904
  `a` int DEFAULT NULL
 
905
) ENGINE=InnoDB;
 
906
 
 
907
ALTER TABLE `t1` DISABLE KEYS;
 
908
INSERT INTO `t1` VALUES (1),(2),(3);
 
909
ALTER TABLE `t1` ENABLE KEYS;
 
910
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
911
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
912
DROP TABLE t1;
 
913
#
 
914
# Bug #9558 mysqldump --no-data db t1 t2 format still dumps data
 
915
#
 
916
CREATE DATABASE mysqldump_test_db;
 
917
USE mysqldump_test_db;
 
918
CREATE TABLE t1 ( a INT );
 
919
CREATE TABLE t2 ( a INT );
 
920
INSERT INTO t1 VALUES (1), (2);
 
921
INSERT INTO t2 VALUES (1), (2);
 
922
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
923
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
924
DROP TABLE IF EXISTS `t1`;
 
925
CREATE TABLE `t1` (
 
926
  `a` int DEFAULT NULL
 
927
) ENGINE=InnoDB;
 
928
DROP TABLE IF EXISTS `t2`;
 
929
CREATE TABLE `t2` (
 
930
  `a` int DEFAULT NULL
 
931
) ENGINE=InnoDB;
 
932
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
933
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
934
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
935
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
936
DROP TABLE IF EXISTS `t1`;
 
937
CREATE TABLE `t1` (
 
938
  `a` int DEFAULT NULL
 
939
) ENGINE=InnoDB;
 
940
DROP TABLE IF EXISTS `t2`;
 
941
CREATE TABLE `t2` (
 
942
  `a` int DEFAULT NULL
 
943
) ENGINE=InnoDB;
 
944
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
945
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
946
<?xml version="1.0"?>
 
947
<drizzledump xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 
948
<database name="mysqldump_test_db">
 
949
        <table_structure name="t1">
 
950
                <field Field="a" Type="INTEGER" Null="TRUE" Default="" Default_is_NULL="TRUE" On_Update="" />
 
951
        </table_structure>
 
952
        <table_structure name="t2">
 
953
                <field Field="a" Type="INTEGER" Null="TRUE" Default="" Default_is_NULL="TRUE" On_Update="" />
 
954
        </table_structure>
 
955
</database>
 
956
</drizzledump>
 
957
<?xml version="1.0"?>
 
958
<drizzledump xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 
959
<database name="mysqldump_test_db">
 
960
        <table_structure name="t1">
 
961
                <field Field="a" Type="INTEGER" Null="TRUE" Default="" Default_is_NULL="TRUE" On_Update="" />
 
962
        </table_structure>
 
963
        <table_structure name="t2">
 
964
                <field Field="a" Type="INTEGER" Null="TRUE" Default="" Default_is_NULL="TRUE" On_Update="" />
 
965
        </table_structure>
 
966
</database>
 
967
</drizzledump>
 
968
DROP TABLE t1, t2;
 
969
DROP DATABASE mysqldump_test_db;
 
970
#
 
971
#  Testing with tables and databases that don't exists
 
972
#  or contains illegal characters
 
973
# (Bug #9358 mysqldump crashes if tablename starts with \)
 
974
#
 
975
create database mysqldump_test_db;
 
976
use mysqldump_test_db;
 
977
create table t1(a varchar(30) primary key, b int not null);
 
978
create table t2(a varchar(30) primary key, b int not null);
 
979
create table t3(a varchar(30) primary key, b int not null);
 
980
test_sequence
 
981
------ Testing with illegal table names ------
 
982
drizzledump: Couldn't find table: "\d-2-1.sql"
 
983
drizzledump: Couldn't find table: "\t1"
 
984
drizzledump: Couldn't find table: "\t1"
 
985
drizzledump: Couldn't find table: "\\t1"
 
986
drizzledump: Couldn't find table: "t\1"
 
987
drizzledump: Couldn't find table: "t\1"
 
988
drizzledump: Couldn't find table: "t/1"
 
989
drizzledump: Couldn't find table: "T_1"
 
990
drizzledump: Couldn't find table: "T%1"
 
991
drizzledump: Couldn't find table: "T'1"
 
992
drizzledump: Couldn't find table: "T_1"
 
993
drizzledump: Couldn't find table: "T_"
 
994
test_sequence
 
995
------ Testing with illegal database names ------
 
996
drizzledump: Got error: Unknown database 'mysqldump_test_d' (1049) when executing 'SELECT INTO OUTFILE'
 
997
drizzledump: Got error: Unknown database 'mysqld\ump_test_db' (1049) when executing 'SELECT INTO OUTFILE'
 
998
drop table t1, t2, t3;
 
999
drop database mysqldump_test_db;
 
1000
use test;
 
1001
#
 
1002
# Bug #9657 mysqldump xml ( -x ) does not format NULL fields correctly
 
1003
#
 
1004
create table t1 (a int);
 
1005
create table t2 (pk int primary key auto_increment,
 
1006
a int, b varchar(30), c datetime, d blob, e text);
 
1007
insert into t1 values (NULL), (10), (20);
 
1008
insert into t2 (a, b) values (NULL, NULL),(10, NULL),(NULL, "twenty"),(30, "thirty");
 
1009
<?xml version="1.0"?>
 
1010
<drizzledump xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 
1011
<database name="test">
 
1012
        <table_data name="t1">
 
1013
        <row>
 
1014
                <field name="a" xsi:nil="true" />
 
1015
        </row>
 
1016
        <row>
 
1017
                <field name="a">10</field>
 
1018
        </row>
 
1019
        <row>
 
1020
                <field name="a">20</field>
 
1021
        </row>
 
1022
        </table_data>
 
1023
        <table_data name="t2">
 
1024
        <row>
 
1025
                <field name="pk">1</field>
 
1026
                <field name="a" xsi:nil="true" />
 
1027
                <field name="b" xsi:nil="true" />
 
1028
                <field name="c" xsi:nil="true" />
 
1029
                <field name="d" xsi:nil="true" />
 
1030
                <field name="e" xsi:nil="true" />
 
1031
        </row>
 
1032
        <row>
 
1033
                <field name="pk">2</field>
 
1034
                <field name="a">10</field>
 
1035
                <field name="b" xsi:nil="true" />
 
1036
                <field name="c" xsi:nil="true" />
 
1037
                <field name="d" xsi:nil="true" />
 
1038
                <field name="e" xsi:nil="true" />
 
1039
        </row>
 
1040
        <row>
 
1041
                <field name="pk">3</field>
 
1042
                <field name="a" xsi:nil="true" />
 
1043
                <field name="b">twenty</field>
 
1044
                <field name="c" xsi:nil="true" />
 
1045
                <field name="d" xsi:nil="true" />
 
1046
                <field name="e" xsi:nil="true" />
 
1047
        </row>
 
1048
        <row>
 
1049
                <field name="pk">4</field>
 
1050
                <field name="a">30</field>
 
1051
                <field name="b">thirty</field>
 
1052
                <field name="c" xsi:nil="true" />
 
1053
                <field name="d" xsi:nil="true" />
 
1054
                <field name="e" xsi:nil="true" />
 
1055
        </row>
 
1056
        </table_data>
 
1057
</database>
 
1058
</drizzledump>
 
1059
drop table t1, t2;
 
1060
#
 
1061
# BUG#15328 Segmentation fault occured if my.cnf is invalid for escape sequence
 
1062
#
 
1063
--fields-optionally-enclosed-by="
 
1064
#
 
1065
# BUG #19025 mysqldump doesn't correctly dump "auto_increment = [int]"
 
1066
#
 
1067
create table `t1` (
 
1068
t1_name varchar(255) default null,
 
1069
t1_id int not null auto_increment,
 
1070
key (t1_name),
 
1071
primary key (t1_id)
 
1072
) auto_increment = 1000;
 
1073
Warnings:
 
1074
Warning 1071    Specified key was too long; max key length is 767 bytes
 
1075
insert into t1 (t1_name) values('bla');
 
1076
insert into t1 (t1_name) values('bla');
 
1077
insert into t1 (t1_name) values('bla');
 
1078
select * from t1;
 
1079
t1_name t1_id
 
1080
bla     1000
 
1081
bla     1001
 
1082
bla     1002
 
1083
show create table `t1`;
 
1084
Table   Create Table
 
1085
t1      CREATE TABLE `t1` (
 
1086
  `t1_name` varchar(255) DEFAULT NULL,
 
1087
  `t1_id` int NOT NULL AUTO_INCREMENT,
 
1088
  PRIMARY KEY (`t1_id`),
 
1089
  KEY `t1_name` (`t1_name`(191))
 
1090
) ENGINE=InnoDB
 
1091
DROP TABLE `t1`;
 
1092
select * from t1;
 
1093
t1_name t1_id
 
1094
bla     1000
 
1095
bla     1001
 
1096
bla     1002
 
1097
show create table `t1`;
 
1098
Table   Create Table
 
1099
t1      CREATE TABLE `t1` (
 
1100
  `t1_name` varchar(255) DEFAULT NULL,
 
1101
  `t1_id` int NOT NULL AUTO_INCREMENT,
 
1102
  PRIMARY KEY (`t1_id`),
 
1103
  KEY `t1_name` (`t1_name`(191))
 
1104
) ENGINE=InnoDB
 
1105
drop table `t1`;
 
1106
#
 
1107
# Bug #18536: wrong table order
 
1108
#
 
1109
create table t1(a int);
 
1110
create table t2(a int);
 
1111
create table t3(a int);
 
1112
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
1113
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
1114
DROP TABLE IF EXISTS `t3`;
 
1115
CREATE TABLE `t3` (
 
1116
  `a` int DEFAULT NULL
 
1117
) ENGINE=InnoDB;
 
1118
DROP TABLE IF EXISTS `t1`;
 
1119
CREATE TABLE `t1` (
 
1120
  `a` int DEFAULT NULL
 
1121
) ENGINE=InnoDB;
 
1122
DROP TABLE IF EXISTS `t2`;
 
1123
CREATE TABLE `t2` (
 
1124
  `a` int DEFAULT NULL
 
1125
) ENGINE=InnoDB;
 
1126
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
1127
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
1128
drop table t1, t2, t3;
 
1129
#
 
1130
# Bug #21288: mysqldump segmentation fault when using --where
 
1131
#
 
1132
create table t1 (a int);
 
1133
Error: Couldn't read status information for table t1
 
1134
drizzledump: Couldn't execute 'SELECT * FROM `t1` WHERE xx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx': You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' at line 1 (1064)
 
1135
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
1136
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
1137
DROP TABLE IF EXISTS `t1`;
 
1138
CREATE TABLE `t1` (
 
1139
  `a` int DEFAULT NULL
 
1140
) ENGINE=InnoDB;
 
1141
 
 
1142
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
1143
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
1144
drop table t1;
 
1145
#
 
1146
# BUG#13926: --order-by-primary fails if PKEY contains quote character
 
1147
#
 
1148
End of 4.1 tests
 
1149
#
 
1150
# Bug#29815: new option for suppressing last line of mysqldump:
 
1151
#            "Dump completed on"
 
1152
#
 
1153
# --skip-dump-date:
 
1154
 
 
1155
--
 
1156
 
 
1157
 
 
1158
 
 
1159
 
 
1160
 
 
1161
 
 
1162
 
 
1163
-- Dump completed
 
1164
# --dump-date:
 
1165
 
 
1166
--
 
1167
 
 
1168
 
 
1169
 
 
1170
 
 
1171
 
 
1172
 
 
1173
 
 
1174
-- Dump completed on DATE
 
1175
# --dump-date (default):
 
1176
 
 
1177
--
 
1178
 
 
1179
 
 
1180
 
 
1181
 
 
1182
 
 
1183
 
 
1184
 
 
1185
-- Dump completed on DATE
 
1186
#
 
1187
# End of 5.0 tests
 
1188
#
 
1189
drop table if exists t1;
 
1190
CREATE TABLE t1(a int, b int);
 
1191
INSERT INTO t1 VALUES (1,1);
 
1192
INSERT INTO t1 VALUES (2,3);
 
1193
INSERT INTO t1 VALUES (3,4), (4,5);
 
1194
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
 
1195
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
 
1196
DROP TABLE IF EXISTS `t1`;
 
1197
CREATE TABLE `t1` (
 
1198
  `a` int DEFAULT NULL,
 
1199
  `b` int DEFAULT NULL
 
1200
) ENGINE=InnoDB;
 
1201
 
 
1202
ALTER TABLE `t1` DISABLE KEYS;
 
1203
REPLACE INTO `t1` VALUES (1,1),(2,3),(3,4),(4,5);
 
1204
ALTER TABLE `t1` ENABLE KEYS;
 
1205
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
 
1206
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
1207
DROP TABLE t1;
 
1208
#
 
1209
# Bug#31113 mysqldump 5.1 can't handle a dash ("-") in database names
 
1210
#
 
1211
create database `test-database`;
 
1212
use `test-database`;
 
1213
create table test (a int);
 
1214
DROP TABLE IF EXISTS `test`;
 
1215
CREATE TABLE `test` (
 
1216
  `a` int DEFAULT NULL
 
1217
) ENGINE=InnoDB;
 
1218
ALTER TABLE `test` DISABLE KEYS;
 
1219
ALTER TABLE `test` ENABLE KEYS;
 
1220
drop database `test-database`;
 
1221
use test;
 
1222
#
 
1223
# End of 5.1 tests
 
1224
#