~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to tests/r/pbxt/drizzledump.result

  • Committer: Padraig O'Sullivan
  • Date: 2010-04-17 01:38:47 UTC
  • mfrom: (1237.9.238 bad-staging)
  • Revision ID: osullivan.padraig@gmail.com-20100417013847-ibjioqsfbmf5yg4g
Merge trunk.

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