Lines Matching refs:meta

1 SET NAMES 'utf8';
2 #
3 # Preparatory cleanup.
4 #
5 DROP TABLE IF EXISTS t1, t2, t3;
6 #
7 # We need a fixed timestamp to avoid varying results.
8 #
9 SET timestamp=1000000000;
10 #
11 # ===================================================
12 # Test #1 - Insert/update/delete with all data types.
13 # ===================================================
14 #
15 # Delete all existing binary logs.
16 #
17 RESET MASTER;
18 #
19 # Create a test table with all data types.
20 #
21 CREATE TABLE t1 (
22 c01 BIT,
23 c02 BIT(64),
24 c03 TINYINT,
25 c04 TINYINT UNSIGNED,
26 c05 TINYINT ZEROFILL,
27 c06 BOOL,
28 c07 SMALLINT,
29 c08 SMALLINT UNSIGNED,
30 c09 SMALLINT ZEROFILL,
31 c10 MEDIUMINT,
32 c11 MEDIUMINT UNSIGNED,
33 c12 MEDIUMINT ZEROFILL,
34 c13 INT,
35 c14 INT UNSIGNED,
36 c15 INT ZEROFILL,
37 c16 BIGINT,
38 c17 BIGINT UNSIGNED,
39 c18 BIGINT ZEROFILL,
40 c19 FLOAT,
41 c20 FLOAT UNSIGNED,
42 c21 FLOAT ZEROFILL,
43 c22 DOUBLE,
44 c23 DOUBLE UNSIGNED,
45 c24 DOUBLE ZEROFILL,
46 c25 DECIMAL,
47 c26 DECIMAL UNSIGNED,
48 c27 DECIMAL ZEROFILL,
49 #
50 c28 DATE,
51 c29 DATETIME,
52 c30 TIMESTAMP,
53 c31 TIME,
54 c32 YEAR,
55 #
56 c33 CHAR,
57 c34 CHAR(0),
58 c35 CHAR(1),
59 c36 CHAR(255),
60 c37 NATIONAL CHAR,
61 c38 NATIONAL CHAR(0),
62 c39 NATIONAL CHAR(1),
63 c40 NATIONAL CHAR(255),
64 c41 CHAR CHARACTER SET UCS2,
65 c42 CHAR(0) CHARACTER SET UCS2,
66 c43 CHAR(1) CHARACTER SET UCS2,
67 c44 CHAR(255) CHARACTER SET UCS2,
68 #
69 c45 VARCHAR(0),
70 c46 VARCHAR(1),
71 c47 VARCHAR(255),
72 c48 VARCHAR(261),
73 c49 NATIONAL VARCHAR(0),
74 c50 NATIONAL VARCHAR(1),
75 c51 NATIONAL VARCHAR(255),
76 c52 NATIONAL VARCHAR(261),
77 c53 VARCHAR(0) CHARACTER SET UCS2,
78 c54 VARCHAR(1) CHARACTER SET UCS2,
79 c55 VARCHAR(255) CHARACTER SET UCS2,
80 c56 VARCHAR(261) CHARACTER SET UCS2,
81 #
82 c57 BINARY,
83 c58 BINARY(0),
84 c59 BINARY(1),
85 c60 BINARY(255),
86 #
87 c61 VARBINARY(0),
88 c62 VARBINARY(1),
89 c63 VARBINARY(255),
90 c64 VARBINARY(261),
91 #
92 c65 TINYBLOB,
93 c66 TINYTEXT,
94 c67 TINYTEXT CHARACTER SET UCS2,
95 c68 BLOB,
96 c69 TEXT,
97 c70 TEXT CHARACTER SET UCS2,
98 c71 MEDIUMBLOB,
99 c72 MEDIUMTEXT,
100 c73 MEDIUMTEXT CHARACTER SET UCS2,
101 c74 LONGBLOB,
102 c75 LONGTEXT,
103 c76 LONGTEXT CHARACTER SET UCS2,
104 #
105 c77 ENUM('a','b','c'),
106 c78 SET('a','b','c'),
107 #
108 crn INT -- row number
109 ) ENGINE=MyISAM DEFAULT CHARSET latin1;
110 #
111 # Insert minimum values.
112 #
113 INSERT INTO t1 VALUES (
114 b'0', -- c01
115 b'0000000000000000000000000000000000000000000000000000000000000000', -- c02
116 -128, -- c03
117 0, -- c04
118 000, -- c05
119 false, -- c06
120 -32768, -- c07
121 0, -- c08
122 00000, -- c09
123 -8388608, -- c10
124 0, -- c11
125 00000000, -- c12
126 -2147483648, -- c13
127 0, -- c14
128 0000000000, -- c15
129 -9223372036854775808, -- c16
130 0, -- c17
131 00000000000000000000, -- c18
132 -3.402823466E+38, -- c19
133 1.175494351E-38, -- c20
134 000000000000, -- c21
135 -1.7976931348623E+308, -- c22 three digits cut for ps-protocol
136 2.2250738585072E-308, -- c23 three digits cut for ps-protocol
137 0000000000000000000000, -- c24
138 -9999999999, -- c25
139 0, -- c26
140 0000000000, -- c27
141 #
142 '1000-01-01', -- c28
143 '1000-01-01 00:00:00', -- c29
144 '1970-01-02 00:00:01', -- c30 one day later due to timezone issues
145 '-838:59:59', -- c31
146 '1901', -- c32
147 #
148 '', -- c33
149 '', -- c34
150 '', -- c35
151 '', -- c36
152 '', -- c37
153 '', -- c38
154 '', -- c39
155 '', -- c40
156 '', -- c41
157 '', -- c42
158 '', -- c43
159 '', -- c44
160 #
161 '', -- c45
162 '', -- c46
163 '', -- c47
164 '', -- c48
165 '', -- c49
166 '', -- c50
167 '', -- c51
168 '', -- c52
169 '', -- c53
170 '', -- c54
171 '', -- c55
172 '', -- c56
173 #
174 '', -- c57
175 '', -- c58
176 '', -- c59
177 '', -- c60
178 #
179 '', -- c61
180 '', -- c62
181 '', -- c63
182 '', -- c64
183 #
184 '', -- c65
185 '', -- c66
186 '', -- c67
187 '', -- c68
188 '', -- c69
189 '', -- c70
190 '', -- c71
191 '', -- c72
192 '', -- c73
193 '', -- c74
194 '', -- c75
195 '', -- c76
196 #
197 'a', -- c77
198 '', -- c78
199 #
200 1 -- crn -- row number
201 );
202 #
203 # Insert maximum values.
204 #
205 INSERT INTO t1 VALUES (
206 b'1', -- c01
207 b'1111111111111111111111111111111111111111111111111111111111111111', -- c02
208 127, -- c03
209 255, -- c04
210 255, -- c05
211 true, -- c06
212 32767, -- c07
213 65535, -- c08
214 65535, -- c09
215 8388607, -- c10
216 16777215, -- c11
217 16777215, -- c12
218 2147483647, -- c13
219 4294967295, -- c14
220 4294967295, -- c15
221 9223372036854775807, -- c16
222 18446744073709551615, -- c17
223 18446744073709551615, -- c18
224 3.402823466E+38, -- c19
225 3.402823466E+38, -- c20
226 3.402823466E+38, -- c21
227 1.7976931348623E+308, -- c22 three digits cut for ps-protocol
228 1.7976931348623E+308, -- c23 three digits cut for ps-protocol
229 1.7976931348623E+308, -- c24 three digits cut for ps-protocol
230 9999999999, -- c25
231 9999999999, -- c26
232 9999999999, -- c27
233 #
234 '9999-12-31', -- c28
235 '9999-12-31 23:59:59', -- c29
236 '2038-01-08 03:14:07', -- c30 one day earlier due to timezone issues
237 '838:59:59', -- c31
238 '2155', -- c32
239 #
240 x'ff', -- c33
241 '', -- c34
242 x'ff', -- c35
243 REPEAT(x'ff',255), -- c36
244 _utf8 x'efbfbf', -- c37
245 '', -- c38
246 _utf8 x'efbfbf', -- c39
247 REPEAT(_utf8 x'efbfbf',255), -- c40
248 _ucs2 x'ffff', -- c41
249 '', -- c42
250 _ucs2 x'ffff', -- c43
251 REPEAT(_ucs2 x'ffff',255), -- c44
252 #
253 '', -- c45
254 x'ff', -- c46
255 REPEAT(x'ff',255), -- c47
256 REPEAT(x'ff',261), -- c48
257 '', -- c49
258 _utf8 x'efbfbf', -- c50
259 REPEAT(_utf8 x'efbfbf',255), -- c51
260 REPEAT(_utf8 x'efbfbf',261), -- c52
261 '', -- c53
262 _ucs2 x'ffff', -- c54
263 REPEAT(_ucs2 x'ffff',255), -- c55
264 REPEAT(_ucs2 x'ffff',261), -- c56
265 #
266 x'ff', -- c57
267 '', -- c58
268 x'ff', -- c59
269 REPEAT(x'ff',255), -- c60
270 #
271 '', -- c61
272 x'ff', -- c62
273 REPEAT(x'ff',255), -- c63
274 REPEAT(x'ff',261), -- c64
275 #
276 'tinyblob', -- c65 not using maximum value here
277 'tinytext', -- c66 not using maximum value here
278 'tinytext-ucs2', -- c67 not using maximum value here
279 'blob', -- c68 not using maximum value here
280 'text', -- c69 not using maximum value here
281 'text-ucs2', -- c70 not using maximum value here
282 'mediumblob', -- c71 not using maximum value here
283 'mediumtext', -- c72 not using maximum value here
284 'mediumtext-ucs2', -- c73 not using maximum value here
285 'longblob', -- c74 not using maximum value here
286 'longtext', -- c75 not using maximum value here
287 'longtext-ucs2', -- c76 not using maximum value here
288 #
289 'c', -- c77
290 'a,b,c', -- c78
291 #
292 2 -- crn -- row number
293 );
294 #
295 # Insert a row with NULL values and one with arbitrary values.
296 #
297 INSERT INTO t1 VALUES (
298 NULL, -- c01
299 NULL, -- c02
300 NULL, -- c03
301 NULL, -- c04
302 NULL, -- c05
303 NULL, -- c06
304 NULL, -- c07
305 NULL, -- c08
306 NULL, -- c09
307 NULL, -- c10
308 NULL, -- c11
309 NULL, -- c12
310 NULL, -- c13
311 NULL, -- c14
312 NULL, -- c15
313 NULL, -- c16
314 NULL, -- c17
315 NULL, -- c18
316 NULL, -- c19
317 NULL, -- c20
318 NULL, -- c21
319 NULL, -- c22
320 NULL, -- c23
321 NULL, -- c24
322 NULL, -- c25
323 NULL, -- c26
324 NULL, -- c27
325 #
326 NULL, -- c28
327 NULL, -- c29
328 NULL, -- c30
329 NULL, -- c31
330 NULL, -- c32
331 #
332 NULL, -- c33
333 NULL, -- c34
334 NULL, -- c35
335 NULL, -- c36
336 NULL, -- c37
337 NULL, -- c38
338 NULL, -- c39
339 NULL, -- c40
340 NULL, -- c41
341 NULL, -- c42
342 NULL, -- c43
343 NULL, -- c44
344 #
345 NULL, -- c45
346 NULL, -- c46
347 NULL, -- c47
348 NULL, -- c48
349 NULL, -- c49
350 NULL, -- c50
351 NULL, -- c51
352 NULL, -- c52
353 NULL, -- c53
354 NULL, -- c54
355 NULL, -- c55
356 NULL, -- c56
357 #
358 NULL, -- c57
359 NULL, -- c58
360 NULL, -- c59
361 NULL, -- c60
362 #
363 NULL, -- c61
364 NULL, -- c62
365 NULL, -- c63
366 NULL, -- c64
367 #
368 NULL, -- c65
369 NULL, -- c66
370 NULL, -- c67
371 NULL, -- c68
372 NULL, -- c69
373 NULL, -- c70
374 NULL, -- c71
375 NULL, -- c72
376 NULL, -- c73
377 NULL, -- c74
378 NULL, -- c75
379 NULL, -- c76
380 #
381 NULL, -- c77
382 NULL, -- c78
383 #
384 3 -- crn -- row number
385 ), (
386 b'1', -- c01
387 b'1111111111111111111111111111111111111111111111111111111111111111', -- c02
388 127, -- c03
389 0, -- c04
390 001, -- c05
391 true, -- c06
392 32767, -- c07
393 0, -- c08
394 00001, -- c09
395 8388607, -- c10
396 0, -- c11
397 00000001, -- c12
398 2147483647, -- c13
399 0, -- c14
400 0000000001, -- c15
401 9223372036854775807, -- c16
402 0, -- c17
403 00000000000000000001, -- c18
404 -1.175494351E-38, -- c19
405 1.175494351E-38, -- c20
406 000000000000001, -- c21
407 -2.2250738585072E-308, -- c22
408 2.2250738585072E-308, -- c23
409 00000000000000000000001, -- c24
410 -9999999999, -- c25
411 9999999999, -- c26
412 0000000001, -- c27
413 #
414 '2008-08-04', -- c28
415 '2008-08-04 16:18:06', -- c29
416 '2008-08-04 16:18:24', -- c30
417 '16:18:47', -- c31
418 '2008', -- c32
419 #
420 'a', -- c33
421 '', -- c34
422 'e', -- c35
423 REPEAT('i',255), -- c36
424 _utf8 x'c3a4', -- c37
425 '', -- c38
426 _utf8 x'c3b6', -- c39
427 REPEAT(_utf8 x'c3bc',255), -- c40
428 _ucs2 x'00e4', -- c41
429 '', -- c42
430 _ucs2 x'00f6', -- c43
431 REPEAT(_ucs2 x'00fc',255), -- c44
432 #
433 '', -- c45
434 'a', -- c46
435 REPEAT('e',255), -- c47
436 REPEAT('i',261), -- c48
437 '', -- c49
438 _utf8 x'c3a4', -- c50
439 REPEAT(_utf8 x'c3b6',255), -- c51
440 REPEAT(_utf8 x'c3bc',261), -- c52
441 '', -- c53
442 _ucs2 x'00e4', -- c54
443 REPEAT(_ucs2 x'00f6',255), -- c55
444 REPEAT(_ucs2 x'00fc',261), -- c56
445 #
446 '0', -- c57
447 '', -- c58
448 '1', -- c59
449 REPEAT('1',255), -- c60
450 #
451 '', -- c61
452 'b', -- c62
453 REPEAT('c',255), -- c63
454 REPEAT('\'',261), -- c64
455 #
456 'tinyblob', -- c65
457 'tinytext', -- c66
458 'tinytext-ucs2', -- c67
459 'blob', -- c68
460 'text', -- c69
461 'text-ucs2', -- c70
462 'mediumblob', -- c71
463 'mediumtext', -- c72
464 'mediumtext-ucs2', -- c73
465 'longblob', -- c74
466 'longtext', -- c75
467 'longtext-ucs2', -- c76
468 #
469 'b', -- c77
470 'b,c', -- c78
471 #
472 4 -- crn -- row number
473 );
474 #
475 # Show what we have in the table.
476 # Do not display bit type output. It's binary and confuses diff.
477 # Also BINARY with nul-bytes should be avoided.
478 #
479 SELECT * FROM t1;
480 c01 #
481 c02 #
482 c03 -128
483 c04 0
484 c05 000
485 c06 0
486 c07 -32768
487 c08 0
488 c09 00000
489 c10 -8388608
490 c11 0
491 c12 00000000
492 c13 -2147483648
493 c14 0
494 c15 0000000000
495 c16 -9223372036854775808
496 c17 0
497 c18 00000000000000000000
498 c19 -3.40282e38
499 c20 1.17549e-38
500 c21 000000000000
501 c22 -1.7976931348623e308
502 c23 2.2250738585072e-308
503 c24 0000000000000000000000
504 c25 -9999999999
505 c26 0
506 c27 0000000000
507 c28 1000-01-01
508 c29 1000-01-01 00:00:00
509 c30 1970-01-02 00:00:01
510 c31 -838:59:59
511 c32 1901
512 c33
513 c34
514 c35
515 c36
516 c37
517 c38
518 c39
519 c40
520 c41
521 c42
522 c43
523 c44
524 c45
525 c46
526 c47
527 c48
528 c49
529 c50
530 c51
531 c52
532 c53
533 c54
534 c55
535 c56
536 c57 #
537 c58 #
538 c59 #
539 c60 #
540 c61
541 c62
542 c63
543 c64
544 c65
545 c66
546 c67
547 c68
548 c69
549 c70
550 c71
551 c72
552 c73
553 c74
554 c75
555 c76
556 c77 a
557 c78
558 crn 1
559 c01 #
560 c02 #
561 c03 127
562 c04 255
563 c05 255
564 c06 1
565 c07 32767
566 c08 65535
567 c09 65535
568 c10 8388607
569 c11 16777215
570 c12 16777215
571 c13 2147483647
572 c14 4294967295
573 c15 4294967295
574 c16 9223372036854775807
575 c17 18446744073709551615
576 c18 18446744073709551615
577 c19 3.40282e38
578 c20 3.40282e38
579 c21 003.40282e38
580 c22 1.7976931348623e308
581 c23 1.7976931348623e308
582 c24 0001.7976931348623e308
583 c25 9999999999
584 c26 9999999999
585 c27 9999999999
586 c28 9999-12-31
587 c29 9999-12-31 23:59:59
588 c30 2038-01-08 03:14:07
589 c31 838:59:59
590 c32 2155
591 c33 ÿ
592 c34
593 c35 ÿ
594 c36 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ…
595 c37 ￿
596 c38
597 c39 ￿
598 c40 ￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
599 c41 ￿
600 c42
601 c43 ￿
602 c44 ￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
603 c45
604 c46 ÿ
605 c47 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ…
606 c48 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ…
607 c49
608 c50 ￿
609 c51 ￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
610 c52 ￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
611 c53
612 c54 ￿
613 c55 ￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
614 c56 ￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
615 c57 #
616 c58 #
617 c59 #
618 c60 #
619 c61
620 c62 �
621 c63 �����������������������������������������������������������������������������������������������…
622 c64 �����������������������������������������������������������������������������������������������…
623 c65 tinyblob
624 c66 tinytext
625 c67 tinytext-ucs2
626 c68 blob
627 c69 text
628 c70 text-ucs2
629 c71 mediumblob
630 c72 mediumtext
631 c73 mediumtext-ucs2
632 c74 longblob
633 c75 longtext
634 c76 longtext-ucs2
635 c77 c
636 c78 a,b,c
637 crn 2
638 c01 #
639 c02 #
640 c03 NULL
641 c04 NULL
642 c05 NULL
643 c06 NULL
644 c07 NULL
645 c08 NULL
646 c09 NULL
647 c10 NULL
648 c11 NULL
649 c12 NULL
650 c13 NULL
651 c14 NULL
652 c15 NULL
653 c16 NULL
654 c17 NULL
655 c18 NULL
656 c19 NULL
657 c20 NULL
658 c21 NULL
659 c22 NULL
660 c23 NULL
661 c24 NULL
662 c25 NULL
663 c26 NULL
664 c27 NULL
665 c28 NULL
666 c29 NULL
667 c30 2001-09-09 04:46:40
668 c31 NULL
669 c32 NULL
670 c33 NULL
671 c34 NULL
672 c35 NULL
673 c36 NULL
674 c37 NULL
675 c38 NULL
676 c39 NULL
677 c40 NULL
678 c41 NULL
679 c42 NULL
680 c43 NULL
681 c44 NULL
682 c45 NULL
683 c46 NULL
684 c47 NULL
685 c48 NULL
686 c49 NULL
687 c50 NULL
688 c51 NULL
689 c52 NULL
690 c53 NULL
691 c54 NULL
692 c55 NULL
693 c56 NULL
694 c57 #
695 c58 #
696 c59 #
697 c60 #
698 c61 NULL
699 c62 NULL
700 c63 NULL
701 c64 NULL
702 c65 NULL
703 c66 NULL
704 c67 NULL
705 c68 NULL
706 c69 NULL
707 c70 NULL
708 c71 NULL
709 c72 NULL
710 c73 NULL
711 c74 NULL
712 c75 NULL
713 c76 NULL
714 c77 NULL
715 c78 NULL
716 crn 3
717 c01 #
718 c02 #
719 c03 127
720 c04 0
721 c05 001
722 c06 1
723 c07 32767
724 c08 0
725 c09 00001
726 c10 8388607
727 c11 0
728 c12 00000001
729 c13 2147483647
730 c14 0
731 c15 0000000001
732 c16 9223372036854775807
733 c17 0
734 c18 00000000000000000001
735 c19 -1.17549e-38
736 c20 1.17549e-38
737 c21 000000000001
738 c22 -2.2250738585072e-308
739 c23 2.2250738585072e-308
740 c24 0000000000000000000001
741 c25 -9999999999
742 c26 9999999999
743 c27 0000000001
744 c28 2008-08-04
745 c29 2008-08-04 16:18:06
746 c30 2008-08-04 16:18:24
747 c31 16:18:47
748 c32 2008
749 c33 a
750 c34
751 c35 e
752 c36 iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii…
753 c37 ä
754 c38
755 c39 ö
756 c40 üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
757 c41 ä
758 c42
759 c43 ö
760 c44 üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
761 c45
762 c46 a
763 c47 eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee…
764 c48 iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii…
765 c49
766 c50 ä
767 c51 ööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö…
768 c52 üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
769 c53
770 c54 ä
771 c55 ööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö…
772 c56 üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
773 c57 #
774 c58 #
775 c59 #
776 c60 #
777 c61
778 c62 b
779 c63 ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc…
780 c64 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''…
781 c65 tinyblob
782 c66 tinytext
783 c67 tinytext-ucs2
784 c68 blob
785 c69 text
786 c70 text-ucs2
787 c71 mediumblob
788 c72 mediumtext
789 c73 mediumtext-ucs2
790 c74 longblob
791 c75 longtext
792 c76 longtext-ucs2
793 c77 b
794 c78 b,c
795 crn 4
796 #
797 # NOTE: For matching FLOAT and DOUBLE values in WHERE conditions,
798 # don't use exact match, but < or > and tweak the numbers a bit.
799 #
800 # Show how much rows are affected by each statement.
801 #
802 #
803 # Update min values to max values.
804 #
805 UPDATE t1 SET
806 c01 = b'1',
807 c02 = b'1111111111111111111111111111111111111111111111111111111111111111',
808 c03 = 127,
809 c04 = 255,
810 c05 = 255,
811 c06 = true,
812 c07 = 32767,
813 c08 = 65535,
814 c09 = 65535,
815 c10 = 8388607,
816 c11 = 16777215,
817 c12 = 16777215,
818 c13 = 2147483647,
819 c14 = 4294967295,
820 c15 = 4294967295,
821 c16 = 9223372036854775807,
822 c17 = 18446744073709551615,
823 c18 = 18446744073709551615,
824 c19 = 3.402823466E+38,
825 c20 = 3.402823466E+38,
826 c21 = 3.402823466E+38,
827 c22 = 1.7976931348623E+308,
828 c23 = 1.7976931348623E+308,
829 c24 = 1.7976931348623E+308,
830 c25 = 9999999999,
831 c26 = 9999999999,
832 c27 = 9999999999,
833 #
834 c28 = '9999-12-31',
835 c29 = '9999-12-31 23:59:59',
836 c30 = '2038-01-08 03:14:07',
837 c31 = '838:59:59',
838 c32 = '2155',
839 #
840 c33 = x'ff',
841 c34 = '',
842 c35 = x'ff',
843 c36 = REPEAT(x'ff',255),
844 c37 = _utf8 x'efbfbf',
845 c38 = '',
846 c39 = _utf8 x'efbfbf',
847 c40 = REPEAT(_utf8 x'efbfbf',255),
848 c41 = _ucs2 x'ffff',
849 c42 = '',
850 c43 = _ucs2 x'ffff',
851 c44 = REPEAT(_ucs2 x'ffff',255),
852 #
853 c45 = '',
854 c46 = x'ff',
855 c47 = REPEAT(x'ff',255),
856 c48 = REPEAT(x'ff',261),
857 c49 = '',
858 c50 = _utf8 x'efbfbf',
859 c51 = REPEAT(_utf8 x'efbfbf',255),
860 c52 = REPEAT(_utf8 x'efbfbf',261),
861 c53 = '',
862 c54 = _ucs2 x'ffff',
863 c55 = REPEAT(_ucs2 x'ffff',255),
864 c56 = REPEAT(_ucs2 x'ffff',261),
865 #
866 c57 = x'ff',
867 c58 = '',
868 c59 = x'ff',
869 c60 = REPEAT(x'ff',255),
870 #
871 c61 = '',
872 c62 = x'ff',
873 c63 = REPEAT(x'ff',255),
874 c64 = REPEAT(x'ff',261),
875 #
876 c65 = 'tinyblob',
877 c66 = 'tinytext',
878 c67 = 'tinytext-ucs2',
879 c68 = 'blob',
880 c69 = 'text',
881 c70 = 'text-ucs2',
882 c71 = 'mediumblob',
883 c72 = 'mediumtext',
884 c73 = 'mediumtext-ucs2',
885 c74 = 'longblob',
886 c75 = 'longtext',
887 c76 = 'longtext-ucs2',
888 #
889 c77 = 'c',
890 c78 = 'a,b,c',
891 #
892 crn = crn
893 #
894 WHERE
895 #
896 c01 = b'0' AND
897 c02 = b'0000000000000000000000000000000000000000000000000000000000000000' AND
898 c03 = -128 AND
899 c04 = 0 AND
900 c05 = 000 AND
901 c06 = false AND
902 c07 = -32768 AND
903 c08 = 0 AND
904 c09 = 00000 AND
905 c10 = -8388608 AND
906 c11 = 0 AND
907 c12 = 00000000 AND
908 c13 = -2147483648 AND
909 c14 = 0 AND
910 c15 = 0000000000 AND
911 c16 = -9223372036854775808 AND
912 c17 = 0 AND
913 c18 = 00000000000000000000 AND
914 c19 < -3.402823465E+38 AND
915 c20 < 1.175494352E-38 AND
916 c21 = 000000000000 AND
917 c22 < -1.7976931348622E+308 AND
918 c23 < 2.2250738585073E-308 AND
919 c24 = 0000000000000000000000 AND
920 c25 = -9999999999 AND
921 c26 = 0 AND
922 c27 = 0000000000 AND
923 #
924 c28 = '1000-01-01' AND
925 c29 = '1000-01-01 00:00:00' AND
926 c30 = '1970-01-02 00:00:01' AND
927 c31 = '-838:59:59' AND
928 c32 = '1901' AND
929 #
930 c33 = '' AND
931 c34 = '' AND
932 c35 = '' AND
933 c36 = '' AND
934 c37 = '' AND
935 c38 = '' AND
936 c39 = '' AND
937 c40 = '' AND
938 c41 = '' AND
939 c42 = '' AND
940 c43 = '' AND
941 c44 = '' AND
942 #
943 c45 = '' AND
944 c46 = '' AND
945 c47 = '' AND
946 c48 = '' AND
947 c49 = '' AND
948 c50 = '' AND
949 c51 = '' AND
950 c52 = '' AND
951 c53 = '' AND
952 c54 = '' AND
953 c55 = '' AND
954 c56 = '' AND
955 #
956 # this does not reproduce the inserted value: c57 = '' AND
957 c58 = '' AND
958 # this does not reproduce the inserted value: c59 = '' AND
959 # this does not reproduce the inserted value: c60 = '' AND
960 #
961 c61 = '' AND
962 c62 = '' AND
963 c63 = '' AND
964 c64 = '' AND
965 #
966 c65 = '' AND
967 c66 = '' AND
968 c67 = '' AND
969 c68 = '' AND
970 c69 = '' AND
971 c70 = '' AND
972 c71 = '' AND
973 c72 = '' AND
974 c73 = '' AND
975 c74 = '' AND
976 c75 = '' AND
977 c76 = '' AND
978 #
979 c77 = 'a' AND
980 c78 = '' AND
981 #
982 crn = 1;
983 affected rows: 1
984 info: Rows matched: 1 Changed: 1 Warnings: 0
985 #
986 # Update max values to min values.
987 #
988 UPDATE t1 SET
989 c01 = b'0',
990 c02 = b'0000000000000000000000000000000000000000000000000000000000000000',
991 c03 = -128,
992 c04 = 0,
993 c05 = 000,
994 c06 = false,
995 c07 = -32768,
996 c08 = 0,
997 c09 = 00000,
998 c10 = -8388608,
999 c11 = 0,
1000 c12 = 00000000,
1001 c13 = -2147483648,
1002 c14 = 0,
1003 c15 = 0000000000,
1004 c16 = -9223372036854775808,
1005 c17 = 0,
1006 c18 = 00000000000000000000,
1007 c19 = -3.402823466E+38,
1008 c20 = 1.175494351E-38,
1009 c21 = 000000000000,
1010 c22 = -1.7976931348623E+308,
1011 c23 = 2.2250738585072E-308,
1012 c24 = 0000000000000000000000,
1013 c25 = -9999999999,
1014 c26 = 0,
1015 c27 = 0000000000,
1016 #
1017 c28 = '1000-01-01',
1018 c29 = '1000-01-01 00:00:00',
1019 c30 = '1970-01-02 00:00:01',
1020 c31 = '-838:59:59',
1021 c32 = '1901',
1022 #
1023 c33 = '',
1024 c34 = '',
1025 c35 = '',
1026 c36 = '',
1027 c37 = '',
1028 c38 = '',
1029 c39 = '',
1030 c40 = '',
1031 c41 = '',
1032 c42 = '',
1033 c43 = '',
1034 c44 = '',
1035 #
1036 c45 = '',
1037 c46 = '',
1038 c47 = '',
1039 c48 = '',
1040 c49 = '',
1041 c50 = '',
1042 c51 = '',
1043 c52 = '',
1044 c53 = '',
1045 c54 = '',
1046 c55 = '',
1047 c56 = '',
1048 #
1049 c57 = '',
1050 c58 = '',
1051 c59 = '',
1052 c60 = '',
1053 #
1054 c61 = '',
1055 c62 = '',
1056 c63 = '',
1057 c64 = '',
1058 #
1059 c65 = '',
1060 c66 = '',
1061 c67 = '',
1062 c68 = '',
1063 c69 = '',
1064 c70 = '',
1065 c71 = '',
1066 c72 = '',
1067 c73 = '',
1068 c74 = '',
1069 c75 = '',
1070 c76 = '',
1071 #
1072 c77 = 'a',
1073 c78 = '',
1074 #
1075 crn = crn
1076 #
1077 WHERE
1078 #
1079 c01 = b'1' AND
1080 # the below does not reproduce the inserted value:
1081 #c02 = b'1111111111111111111111111111111111111111111111111111111111111111' AND
1082 c03 = 127 AND
1083 c04 = 255 AND
1084 c05 = 255 AND
1085 c06 = true AND
1086 c07 = 32767 AND
1087 c08 = 65535 AND
1088 c09 = 65535 AND
1089 c10 = 8388607 AND
1090 c11 = 16777215 AND
1091 c12 = 16777215 AND
1092 c13 = 2147483647 AND
1093 c14 = 4294967295 AND
1094 c15 = 4294967295 AND
1095 c16 = 9223372036854775807 AND
1096 c17 = 18446744073709551615 AND
1097 c18 = 18446744073709551615 AND
1098 c19 > 3.402823465E+38 AND
1099 c20 > 3.402823465E+38 AND
1100 c21 > 3.402823465E+38 AND
1101 c22 > 1.7976931348622E+308 AND
1102 c23 > 1.7976931348622E+308 AND
1103 c24 > 1.7976931348622E+308 AND
1104 c25 = 9999999999 AND
1105 c26 = 9999999999 AND
1106 c27 = 9999999999 AND
1107 #
1108 c28 = '9999-12-31' AND
1109 c29 = '9999-12-31 23:59:59' AND
1110 c30 = '2038-01-08 03:14:07' AND
1111 c31 = '838:59:59' AND
1112 c32 = '2155' AND
1113 #
1114 c33 = x'ff' AND
1115 c34 = '' AND
1116 c35 = x'ff' AND
1117 c36 = REPEAT(x'ff',255) AND
1118 c37 = _utf8 x'efbfbf' AND
1119 c38 = '' AND
1120 c39 = _utf8 x'efbfbf' AND
1121 c40 = REPEAT(_utf8 x'efbfbf',255) AND
1122 c41 = _ucs2 x'ffff' AND
1123 c42 = '' AND
1124 c43 = _ucs2 x'ffff' AND
1125 c44 = REPEAT(_ucs2 x'ffff',255) AND
1126 #
1127 c45 = '' AND
1128 c46 = x'ff' AND
1129 c47 = REPEAT(x'ff',255) AND
1130 c48 = REPEAT(x'ff',261) AND
1131 c49 = '' AND
1132 c50 = _utf8 x'efbfbf' AND
1133 c51 = REPEAT(_utf8 x'efbfbf',255) AND
1134 c52 = REPEAT(_utf8 x'efbfbf',261) AND
1135 c53 = '' AND
1136 c54 = _ucs2 x'ffff' AND
1137 c55 = REPEAT(_ucs2 x'ffff',255) AND
1138 c56 = REPEAT(_ucs2 x'ffff',261) AND
1139 #
1140 c57 = x'ff' AND
1141 c58 = '' AND
1142 c59 = x'ff' AND
1143 c60 = REPEAT(x'ff',255) AND
1144 #
1145 c61 = '' AND
1146 c62 = x'ff' AND
1147 c63 = REPEAT(x'ff',255) AND
1148 c64 = REPEAT(x'ff',261) AND
1149 #
1150 c65 = 'tinyblob' AND
1151 c66 = 'tinytext' AND
1152 c67 = 'tinytext-ucs2' AND
1153 c68 = 'blob' AND
1154 c69 = 'text' AND
1155 c70 = 'text-ucs2' AND
1156 c71 = 'mediumblob' AND
1157 c72 = 'mediumtext' AND
1158 c73 = 'mediumtext-ucs2' AND
1159 c74 = 'longblob' AND
1160 c75 = 'longtext' AND
1161 c76 = 'longtext-ucs2' AND
1162 #
1163 c77 = 'c' AND
1164 c78 = 'a,b,c' AND
1165 #
1166 crn = 2;
1167 affected rows: 1
1168 info: Rows matched: 1 Changed: 1 Warnings: 0
1169 #
1170 # Update NULL values to arbitrary values.
1171 #
1172 UPDATE t1 SET
1173 c01 = b'1',
1174 c02 = b'1111111111111111111111111111111111111111111111111111111111111111',
1175 c03 = 127,
1176 c04 = 0,
1177 c05 = 001,
1178 c06 = true,
1179 c07 = 32767,
1180 c08 = 0,
1181 c09 = 00001,
1182 c10 = 8388607,
1183 c11 = 0,
1184 c12 = 00000001,
1185 c13 = 2147483647,
1186 c14 = 0,
1187 c15 = 0000000001,
1188 c16 = 9223372036854775807,
1189 c17 = 0,
1190 c18 = 00000000000000000001,
1191 c19 = -1.175494351E-38,
1192 c20 = 1.175494351E-38,
1193 c21 = 000000000000001,
1194 c22 = -2.2250738585072E-308,
1195 c23 = 2.2250738585072E-308,
1196 c24 = 00000000000000000000001,
1197 c25 = -9999999999,
1198 c26 = 9999999999,
1199 c27 = 0000000001,
1200 #
1201 c28 = '2008-08-04',
1202 c29 = '2008-08-04 16:18:06',
1203 c30 = '2008-08-04 16:18:24',
1204 c31 = '16:18:47',
1205 c32 = '2008',
1206 #
1207 c33 = 'a',
1208 c34 = '',
1209 c35 = 'e',
1210 c36 = REPEAT('i',255),
1211 c37 = _utf8 x'c3a4',
1212 c38 = '',
1213 c39 = _utf8 x'c3b6',
1214 c40 = REPEAT(_utf8 x'c3bc',255),
1215 c41 = _ucs2 x'00e4',
1216 c42 = '',
1217 c43 = _ucs2 x'00f6',
1218 c44 = REPEAT(_ucs2 x'00fc',255),
1219 #
1220 c45 = '',
1221 c46 = 'a',
1222 c47 = REPEAT('e',255),
1223 c48 = REPEAT('i',261),
1224 c49 = '',
1225 c50 = _utf8 x'c3a4',
1226 c51 = REPEAT(_utf8 x'c3b6',255),
1227 c52 = REPEAT(_utf8 x'c3bc',261),
1228 c53 = '',
1229 c54 = _ucs2 x'00e4',
1230 c55 = REPEAT(_ucs2 x'00f6',255),
1231 c56 = REPEAT(_ucs2 x'00fc',261),
1232 #
1233 c57 = '0',
1234 c58 = '',
1235 c59 = '1',
1236 c60 = REPEAT('1',255),
1237 #
1238 c61 = '',
1239 c62 = 'b',
1240 c63 = REPEAT('c',255),
1241 c64 = REPEAT('\'',261),
1242 #
1243 c65 = 'tinyblob',
1244 c66 = 'tinytext',
1245 c67 = 'tinytext-ucs2',
1246 c68 = 'blob',
1247 c69 = 'text',
1248 c70 = 'text-ucs2',
1249 c71 = 'mediumblob',
1250 c72 = 'mediumtext',
1251 c73 = 'mediumtext-ucs2',
1252 c74 = 'longblob',
1253 c75 = 'longtext',
1254 c76 = 'longtext-ucs2',
1255 #
1256 c77 = 'b',
1257 c78 = 'b,c',
1258 #
1259 crn = crn
1260 #
1261 WHERE
1262 #
1263 c01 IS NULL AND
1264 c02 IS NULL AND
1265 c03 IS NULL AND
1266 c04 IS NULL AND
1267 c05 IS NULL AND
1268 c06 IS NULL AND
1269 c07 IS NULL AND
1270 c08 IS NULL AND
1271 c09 IS NULL AND
1272 c10 IS NULL AND
1273 c11 IS NULL AND
1274 c12 IS NULL AND
1275 c13 IS NULL AND
1276 c14 IS NULL AND
1277 c15 IS NULL AND
1278 c16 IS NULL AND
1279 c17 IS NULL AND
1280 c18 IS NULL AND
1281 c19 IS NULL AND
1282 c20 IS NULL AND
1283 c21 IS NULL AND
1284 c22 IS NULL AND
1285 c23 IS NULL AND
1286 c24 IS NULL AND
1287 c25 IS NULL AND
1288 c26 IS NULL AND
1289 c27 IS NULL AND
1290 #
1291 c28 IS NULL AND
1292 c29 IS NULL AND
1293 # this got a timestamp instead of NULL: c30 IS NULL AND
1294 c31 IS NULL AND
1295 c32 IS NULL AND
1296 #
1297 c33 IS NULL AND
1298 c34 IS NULL AND
1299 c35 IS NULL AND
1300 c36 IS NULL AND
1301 c37 IS NULL AND
1302 c38 IS NULL AND
1303 c39 IS NULL AND
1304 c40 IS NULL AND
1305 c41 IS NULL AND
1306 c42 IS NULL AND
1307 c43 IS NULL AND
1308 c44 IS NULL AND
1309 #
1310 c45 IS NULL AND
1311 c46 IS NULL AND
1312 c47 IS NULL AND
1313 c48 IS NULL AND
1314 c49 IS NULL AND
1315 c50 IS NULL AND
1316 c51 IS NULL AND
1317 c52 IS NULL AND
1318 c53 IS NULL AND
1319 c54 IS NULL AND
1320 c55 IS NULL AND
1321 c56 IS NULL AND
1322 #
1323 c57 IS NULL AND
1324 c58 IS NULL AND
1325 c59 IS NULL AND
1326 c60 IS NULL AND
1327 #
1328 c61 IS NULL AND
1329 c62 IS NULL AND
1330 c63 IS NULL AND
1331 c64 IS NULL AND
1332 #
1333 c65 IS NULL AND
1334 c66 IS NULL AND
1335 c67 IS NULL AND
1336 c68 IS NULL AND
1337 c69 IS NULL AND
1338 c70 IS NULL AND
1339 c71 IS NULL AND
1340 c72 IS NULL AND
1341 c73 IS NULL AND
1342 c74 IS NULL AND
1343 c75 IS NULL AND
1344 c76 IS NULL AND
1345 #
1346 c77 IS NULL AND
1347 c78 IS NULL AND
1348 #
1349 crn = 3;
1350 affected rows: 1
1351 info: Rows matched: 1 Changed: 1 Warnings: 0
1352 #
1353 # Update arbitrary values to NULL values.
1354 #
1355 UPDATE t1 SET
1356 c01 = NULL,
1357 c02 = NULL,
1358 c03 = NULL,
1359 c04 = NULL,
1360 c05 = NULL,
1361 c06 = NULL,
1362 c07 = NULL,
1363 c08 = NULL,
1364 c09 = NULL,
1365 c10 = NULL,
1366 c11 = NULL,
1367 c12 = NULL,
1368 c13 = NULL,
1369 c14 = NULL,
1370 c15 = NULL,
1371 c16 = NULL,
1372 c17 = NULL,
1373 c18 = NULL,
1374 c19 = NULL,
1375 c20 = NULL,
1376 c21 = NULL,
1377 c22 = NULL,
1378 c23 = NULL,
1379 c24 = NULL,
1380 c25 = NULL,
1381 c26 = NULL,
1382 c27 = NULL,
1383 #
1384 c28 = NULL,
1385 c29 = NULL,
1386 c30 = NULL,
1387 c31 = NULL,
1388 c32 = NULL,
1389 #
1390 c33 = NULL,
1391 c34 = NULL,
1392 c35 = NULL,
1393 c36 = NULL,
1394 c37 = NULL,
1395 c38 = NULL,
1396 c39 = NULL,
1397 c40 = NULL,
1398 c41 = NULL,
1399 c42 = NULL,
1400 c43 = NULL,
1401 c44 = NULL,
1402 #
1403 c45 = NULL,
1404 c46 = NULL,
1405 c47 = NULL,
1406 c48 = NULL,
1407 c49 = NULL,
1408 c50 = NULL,
1409 c51 = NULL,
1410 c52 = NULL,
1411 c53 = NULL,
1412 c54 = NULL,
1413 c55 = NULL,
1414 c56 = NULL,
1415 #
1416 c57 = NULL,
1417 c58 = NULL,
1418 c59 = NULL,
1419 c60 = NULL,
1420 #
1421 c61 = NULL,
1422 c62 = NULL,
1423 c63 = NULL,
1424 c64 = NULL,
1425 #
1426 c65 = NULL,
1427 c66 = NULL,
1428 c67 = NULL,
1429 c68 = NULL,
1430 c69 = NULL,
1431 c70 = NULL,
1432 c71 = NULL,
1433 c72 = NULL,
1434 c73 = NULL,
1435 c74 = NULL,
1436 c75 = NULL,
1437 c76 = NULL,
1438 #
1439 c77 = NULL,
1440 c78 = NULL,
1441 #
1442 crn = crn
1443 #
1444 WHERE
1445 #
1446 c01 = b'1' AND
1447 # the below does not reproduce the inserted value:
1448 #c02 = b'1111111111111111111111111111111111111111111111111111111111111111' AND
1449 c03 = 127 AND
1450 c04 = 0 AND
1451 c05 = 001 AND
1452 c06 = true AND
1453 c07 = 32767 AND
1454 c08 = 0 AND
1455 c09 = 00001 AND
1456 c10 = 8388607 AND
1457 c11 = 0 AND
1458 c12 = 00000001 AND
1459 c13 = 2147483647 AND
1460 c14 = 0 AND
1461 c15 = 0000000001 AND
1462 c16 = 9223372036854775807 AND
1463 c17 = 0 AND
1464 c18 = 00000000000000000001 AND
1465 c19 > -1.175494352E-38 AND
1466 c20 < 1.175494352E-38 AND
1467 c21 = 000000000000001 AND
1468 c22 > -2.2250738585073E-308 AND
1469 c23 < 2.2250738585073E-308 AND
1470 c24 = 00000000000000000000001 AND
1471 c25 = -9999999999 AND
1472 c26 = 9999999999 AND
1473 c27 = 0000000001 AND
1474 #
1475 c28 = '2008-08-04' AND
1476 c29 = '2008-08-04 16:18:06' AND
1477 c30 = '2008-08-04 16:18:24' AND
1478 c31 = '16:18:47' AND
1479 c32 = '2008' AND
1480 #
1481 c33 = 'a' AND
1482 c34 = '' AND
1483 c35 = 'e' AND
1484 c36 = REPEAT('i',255) AND
1485 c37 = _utf8 x'c3a4' AND
1486 c38 = '' AND
1487 c39 = _utf8 x'c3b6' AND
1488 c40 = REPEAT(_utf8 x'c3bc',255) AND
1489 c41 = _ucs2 x'00e4' AND
1490 c42 = '' AND
1491 c43 = _ucs2 x'00f6' AND
1492 c44 = REPEAT(_ucs2 x'00fc',255) AND
1493 #
1494 c45 = '' AND
1495 c46 = 'a' AND
1496 c47 = REPEAT('e',255) AND
1497 c48 = REPEAT('i',261) AND
1498 c49 = '' AND
1499 c50 = _utf8 x'c3a4' AND
1500 c51 = REPEAT(_utf8 x'c3b6',255) AND
1501 c52 = REPEAT(_utf8 x'c3bc',261) AND
1502 c53 = '' AND
1503 c54 = _ucs2 x'00e4' AND
1504 c55 = REPEAT(_ucs2 x'00f6',255) AND
1505 c56 = REPEAT(_ucs2 x'00fc',261) AND
1506 #
1507 c57 = '0' AND
1508 c58 = '' AND
1509 c59 = '1' AND
1510 c60 = REPEAT('1',255) AND
1511 #
1512 c61 = '' AND
1513 c62 = 'b' AND
1514 c63 = REPEAT('c',255) AND
1515 c64 = REPEAT('\'',261) AND
1516 #
1517 c65 = 'tinyblob' AND
1518 c66 = 'tinytext' AND
1519 c67 = 'tinytext-ucs2' AND
1520 c68 = 'blob' AND
1521 c69 = 'text' AND
1522 c70 = 'text-ucs2' AND
1523 c71 = 'mediumblob' AND
1524 c72 = 'mediumtext' AND
1525 c73 = 'mediumtext-ucs2' AND
1526 c74 = 'longblob' AND
1527 c75 = 'longtext' AND
1528 c76 = 'longtext-ucs2' AND
1529 #
1530 c77 = 'b' AND
1531 c78 = 'b,c' AND
1532 #
1533 crn = 4;
1534 affected rows: 1
1535 info: Rows matched: 1 Changed: 1 Warnings: 0
1536 #
1537 # Show what we have in the table.
1538 # Do not display bit type output. It's binary and confuses diff.
1539 # Also BINARY with nul-bytes should be avoided.
1540 #
1541 SELECT * FROM t1;
1542 c01 #
1543 c02 #
1544 c03 127
1545 c04 255
1546 c05 255
1547 c06 1
1548 c07 32767
1549 c08 65535
1550 c09 65535
1551 c10 8388607
1552 c11 16777215
1553 c12 16777215
1554 c13 2147483647
1555 c14 4294967295
1556 c15 4294967295
1557 c16 9223372036854775807
1558 c17 18446744073709551615
1559 c18 18446744073709551615
1560 c19 3.40282e38
1561 c20 3.40282e38
1562 c21 003.40282e38
1563 c22 1.7976931348623e308
1564 c23 1.7976931348623e308
1565 c24 0001.7976931348623e308
1566 c25 9999999999
1567 c26 9999999999
1568 c27 9999999999
1569 c28 9999-12-31
1570 c29 9999-12-31 23:59:59
1571 c30 2038-01-08 03:14:07
1572 c31 838:59:59
1573 c32 2155
1574 c33 ÿ
1575 c34
1576 c35 ÿ
1577 c36 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ…
1578 c37 ￿
1579 c38
1580 c39 ￿
1581 c40 ￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
1582 c41 ￿
1583 c42
1584 c43 ￿
1585 c44 ￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
1586 c45
1587 c46 ÿ
1588 c47 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ…
1589 c48 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ…
1590 c49
1591 c50 ￿
1592 c51 ￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
1593 c52 ￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
1594 c53
1595 c54 ￿
1596 c55 ￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
1597 c56 ￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
1598 c57 #
1599 c58 #
1600 c59 #
1601 c60 #
1602 c61
1603 c62 �
1604 c63 �����������������������������������������������������������������������������������������������…
1605 c64 �����������������������������������������������������������������������������������������������…
1606 c65 tinyblob
1607 c66 tinytext
1608 c67 tinytext-ucs2
1609 c68 blob
1610 c69 text
1611 c70 text-ucs2
1612 c71 mediumblob
1613 c72 mediumtext
1614 c73 mediumtext-ucs2
1615 c74 longblob
1616 c75 longtext
1617 c76 longtext-ucs2
1618 c77 c
1619 c78 a,b,c
1620 crn 1
1621 c01 #
1622 c02 #
1623 c03 -128
1624 c04 0
1625 c05 000
1626 c06 0
1627 c07 -32768
1628 c08 0
1629 c09 00000
1630 c10 -8388608
1631 c11 0
1632 c12 00000000
1633 c13 -2147483648
1634 c14 0
1635 c15 0000000000
1636 c16 -9223372036854775808
1637 c17 0
1638 c18 00000000000000000000
1639 c19 -3.40282e38
1640 c20 1.17549e-38
1641 c21 000000000000
1642 c22 -1.7976931348623e308
1643 c23 2.2250738585072e-308
1644 c24 0000000000000000000000
1645 c25 -9999999999
1646 c26 0
1647 c27 0000000000
1648 c28 1000-01-01
1649 c29 1000-01-01 00:00:00
1650 c30 1970-01-02 00:00:01
1651 c31 -838:59:59
1652 c32 1901
1653 c33
1654 c34
1655 c35
1656 c36
1657 c37
1658 c38
1659 c39
1660 c40
1661 c41
1662 c42
1663 c43
1664 c44
1665 c45
1666 c46
1667 c47
1668 c48
1669 c49
1670 c50
1671 c51
1672 c52
1673 c53
1674 c54
1675 c55
1676 c56
1677 c57 #
1678 c58 #
1679 c59 #
1680 c60 #
1681 c61
1682 c62
1683 c63
1684 c64
1685 c65
1686 c66
1687 c67
1688 c68
1689 c69
1690 c70
1691 c71
1692 c72
1693 c73
1694 c74
1695 c75
1696 c76
1697 c77 a
1698 c78
1699 crn 2
1700 c01 #
1701 c02 #
1702 c03 127
1703 c04 0
1704 c05 001
1705 c06 1
1706 c07 32767
1707 c08 0
1708 c09 00001
1709 c10 8388607
1710 c11 0
1711 c12 00000001
1712 c13 2147483647
1713 c14 0
1714 c15 0000000001
1715 c16 9223372036854775807
1716 c17 0
1717 c18 00000000000000000001
1718 c19 -1.17549e-38
1719 c20 1.17549e-38
1720 c21 000000000001
1721 c22 -2.2250738585072e-308
1722 c23 2.2250738585072e-308
1723 c24 0000000000000000000001
1724 c25 -9999999999
1725 c26 9999999999
1726 c27 0000000001
1727 c28 2008-08-04
1728 c29 2008-08-04 16:18:06
1729 c30 2008-08-04 16:18:24
1730 c31 16:18:47
1731 c32 2008
1732 c33 a
1733 c34
1734 c35 e
1735 c36 iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii…
1736 c37 ä
1737 c38
1738 c39 ö
1739 c40 üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
1740 c41 ä
1741 c42
1742 c43 ö
1743 c44 üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
1744 c45
1745 c46 a
1746 c47 eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee…
1747 c48 iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii…
1748 c49
1749 c50 ä
1750 c51 ööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö…
1751 c52 üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
1752 c53
1753 c54 ä
1754 c55 ööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö…
1755 c56 üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
1756 c57 #
1757 c58 #
1758 c59 #
1759 c60 #
1760 c61
1761 c62 b
1762 c63 ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc…
1763 c64 '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''…
1764 c65 tinyblob
1765 c66 tinytext
1766 c67 tinytext-ucs2
1767 c68 blob
1768 c69 text
1769 c70 text-ucs2
1770 c71 mediumblob
1771 c72 mediumtext
1772 c73 mediumtext-ucs2
1773 c74 longblob
1774 c75 longtext
1775 c76 longtext-ucs2
1776 c77 b
1777 c78 b,c
1778 crn 3
1779 c01 #
1780 c02 #
1781 c03 NULL
1782 c04 NULL
1783 c05 NULL
1784 c06 NULL
1785 c07 NULL
1786 c08 NULL
1787 c09 NULL
1788 c10 NULL
1789 c11 NULL
1790 c12 NULL
1791 c13 NULL
1792 c14 NULL
1793 c15 NULL
1794 c16 NULL
1795 c17 NULL
1796 c18 NULL
1797 c19 NULL
1798 c20 NULL
1799 c21 NULL
1800 c22 NULL
1801 c23 NULL
1802 c24 NULL
1803 c25 NULL
1804 c26 NULL
1805 c27 NULL
1806 c28 NULL
1807 c29 NULL
1808 c30 2001-09-09 04:46:40
1809 c31 NULL
1810 c32 NULL
1811 c33 NULL
1812 c34 NULL
1813 c35 NULL
1814 c36 NULL
1815 c37 NULL
1816 c38 NULL
1817 c39 NULL
1818 c40 NULL
1819 c41 NULL
1820 c42 NULL
1821 c43 NULL
1822 c44 NULL
1823 c45 NULL
1824 c46 NULL
1825 c47 NULL
1826 c48 NULL
1827 c49 NULL
1828 c50 NULL
1829 c51 NULL
1830 c52 NULL
1831 c53 NULL
1832 c54 NULL
1833 c55 NULL
1834 c56 NULL
1835 c57 #
1836 c58 #
1837 c59 #
1838 c60 #
1839 c61 NULL
1840 c62 NULL
1841 c63 NULL
1842 c64 NULL
1843 c65 NULL
1844 c66 NULL
1845 c67 NULL
1846 c68 NULL
1847 c69 NULL
1848 c70 NULL
1849 c71 NULL
1850 c72 NULL
1851 c73 NULL
1852 c74 NULL
1853 c75 NULL
1854 c76 NULL
1855 c77 NULL
1856 c78 NULL
1857 crn 4
1858 affected rows: 4
1859 #
1860 # Delete the row that has max values now.
1861 #
1862 DELETE FROM t1 WHERE
1863 #
1864 c01 = b'1' AND
1865 # the below does not reproduce the inserted value:
1866 #c02 = b'1111111111111111111111111111111111111111111111111111111111111111' AND
1867 c03 = 127 AND
1868 c04 = 255 AND
1869 c05 = 255 AND
1870 c06 = true AND
1871 c07 = 32767 AND
1872 c08 = 65535 AND
1873 c09 = 65535 AND
1874 c10 = 8388607 AND
1875 c11 = 16777215 AND
1876 c12 = 16777215 AND
1877 c13 = 2147483647 AND
1878 c14 = 4294967295 AND
1879 c15 = 4294967295 AND
1880 c16 = 9223372036854775807 AND
1881 c17 = 18446744073709551615 AND
1882 c18 = 18446744073709551615 AND
1883 c19 > 3.402823465E+38 AND
1884 c20 > 3.402823465E+38 AND
1885 c21 > 3.402823465E+38 AND
1886 c22 > 1.7976931348622E+308 AND
1887 c23 > 1.7976931348622E+308 AND
1888 c24 > 1.7976931348622E+308 AND
1889 c25 = 9999999999 AND
1890 c26 = 9999999999 AND
1891 c27 = 9999999999 AND
1892 #
1893 c28 = '9999-12-31' AND
1894 c29 = '9999-12-31 23:59:59' AND
1895 c30 = '2038-01-08 03:14:07' AND
1896 c31 = '838:59:59' AND
1897 c32 = '2155' AND
1898 #
1899 c33 = x'ff' AND
1900 c34 = '' AND
1901 c35 = x'ff' AND
1902 c36 = REPEAT(x'ff',255) AND
1903 c37 = _utf8 x'efbfbf' AND
1904 c38 = '' AND
1905 c39 = _utf8 x'efbfbf' AND
1906 c40 = REPEAT(_utf8 x'efbfbf',255) AND
1907 c41 = _ucs2 x'ffff' AND
1908 c42 = '' AND
1909 c43 = _ucs2 x'ffff' AND
1910 c44 = REPEAT(_ucs2 x'ffff',255) AND
1911 #
1912 c45 = '' AND
1913 c46 = x'ff' AND
1914 c47 = REPEAT(x'ff',255) AND
1915 c48 = REPEAT(x'ff',261) AND
1916 c49 = '' AND
1917 c50 = _utf8 x'efbfbf' AND
1918 c51 = REPEAT(_utf8 x'efbfbf',255) AND
1919 c52 = REPEAT(_utf8 x'efbfbf',261) AND
1920 c53 = '' AND
1921 c54 = _ucs2 x'ffff' AND
1922 c55 = REPEAT(_ucs2 x'ffff',255) AND
1923 c56 = REPEAT(_ucs2 x'ffff',261) AND
1924 #
1925 c57 = x'ff' AND
1926 c58 = '' AND
1927 c59 = x'ff' AND
1928 c60 = REPEAT(x'ff',255) AND
1929 #
1930 c61 = '' AND
1931 c62 = x'ff' AND
1932 c63 = REPEAT(x'ff',255) AND
1933 c64 = REPEAT(x'ff',261) AND
1934 #
1935 c65 = 'tinyblob' AND
1936 c66 = 'tinytext' AND
1937 c67 = 'tinytext-ucs2' AND
1938 c68 = 'blob' AND
1939 c69 = 'text' AND
1940 c70 = 'text-ucs2' AND
1941 c71 = 'mediumblob' AND
1942 c72 = 'mediumtext' AND
1943 c73 = 'mediumtext-ucs2' AND
1944 c74 = 'longblob' AND
1945 c75 = 'longtext' AND
1946 c76 = 'longtext-ucs2' AND
1947 #
1948 c77 = 'c' AND
1949 c78 = 'a,b,c' AND
1950 #
1951 crn = 1;
1952 affected rows: 1
1953 #
1954 # Delete the row that has min values now.
1955 #
1956 DELETE FROM t1 WHERE
1957 #
1958 c01 = b'0' AND
1959 c02 = b'0000000000000000000000000000000000000000000000000000000000000000' AND
1960 c03 = -128 AND
1961 c04 = 0 AND
1962 c05 = 000 AND
1963 c06 = false AND
1964 c07 = -32768 AND
1965 c08 = 0 AND
1966 c09 = 00000 AND
1967 c10 = -8388608 AND
1968 c11 = 0 AND
1969 c12 = 00000000 AND
1970 c13 = -2147483648 AND
1971 c14 = 0 AND
1972 c15 = 0000000000 AND
1973 c16 = -9223372036854775808 AND
1974 c17 = 0 AND
1975 c18 = 00000000000000000000 AND
1976 c19 < -3.402823465E+38 AND
1977 c20 < 1.175494352E-38 AND
1978 c21 = 000000000000 AND
1979 c22 < -1.7976931348622E+308 AND
1980 c23 < 2.2250738585073E-308 AND
1981 c24 = 0000000000000000000000 AND
1982 c25 = -9999999999 AND
1983 c26 = 0 AND
1984 c27 = 0000000000 AND
1985 #
1986 c28 = '1000-01-01' AND
1987 c29 = '1000-01-01 00:00:00' AND
1988 c30 = '1970-01-02 00:00:01' AND
1989 c31 = '-838:59:59' AND
1990 c32 = '1901' AND
1991 #
1992 c33 = '' AND
1993 c34 = '' AND
1994 c35 = '' AND
1995 c36 = '' AND
1996 c37 = '' AND
1997 c38 = '' AND
1998 c39 = '' AND
1999 c40 = '' AND
2000 c41 = '' AND
2001 c42 = '' AND
2002 c43 = '' AND
2003 c44 = '' AND
2004 #
2005 c45 = '' AND
2006 c46 = '' AND
2007 c47 = '' AND
2008 c48 = '' AND
2009 c49 = '' AND
2010 c50 = '' AND
2011 c51 = '' AND
2012 c52 = '' AND
2013 c53 = '' AND
2014 c54 = '' AND
2015 c55 = '' AND
2016 c56 = '' AND
2017 #
2018 # this does not reproduce the inserted value: c57 = '' AND
2019 c58 = '' AND
2020 # this does not reproduce the inserted value: c59 = '' AND
2021 # this does not reproduce the inserted value: c60 = '' AND
2022 #
2023 c61 = '' AND
2024 c62 = '' AND
2025 c63 = '' AND
2026 c64 = '' AND
2027 #
2028 c65 = '' AND
2029 c66 = '' AND
2030 c67 = '' AND
2031 c68 = '' AND
2032 c69 = '' AND
2033 c70 = '' AND
2034 c71 = '' AND
2035 c72 = '' AND
2036 c73 = '' AND
2037 c74 = '' AND
2038 c75 = '' AND
2039 c76 = '' AND
2040 #
2041 c77 = 'a' AND
2042 c78 = '' AND
2043 #
2044 crn = 2;
2045 affected rows: 1
2046 #
2047 # Delete the row that has arbitrary values now.
2048 #
2049 DELETE FROM t1 WHERE
2050 #
2051 c01 = b'1' AND
2052 # the below does not reproduce the inserted value:
2053 #c02 = b'1111111111111111111111111111111111111111111111111111111111111111' AND
2054 c03 = 127 AND
2055 c04 = 0 AND
2056 c05 = 001 AND
2057 c06 = true AND
2058 c07 = 32767 AND
2059 c08 = 0 AND
2060 c09 = 00001 AND
2061 c10 = 8388607 AND
2062 c11 = 0 AND
2063 c12 = 00000001 AND
2064 c13 = 2147483647 AND
2065 c14 = 0 AND
2066 c15 = 0000000001 AND
2067 c16 = 9223372036854775807 AND
2068 c17 = 0 AND
2069 c18 = 00000000000000000001 AND
2070 c19 > -1.175494352E-38 AND
2071 c20 < 1.175494352E-38 AND
2072 c21 = 000000000000001 AND
2073 c22 > -2.2250738585073E-308 AND
2074 c23 < 2.2250738585073E-308 AND
2075 c24 = 00000000000000000000001 AND
2076 c25 = -9999999999 AND
2077 c26 = 9999999999 AND
2078 c27 = 0000000001 AND
2079 #
2080 c28 = '2008-08-04' AND
2081 c29 = '2008-08-04 16:18:06' AND
2082 c30 = '2008-08-04 16:18:24' AND
2083 c31 = '16:18:47' AND
2084 c32 = '2008' AND
2085 #
2086 c33 = 'a' AND
2087 c34 = '' AND
2088 c35 = 'e' AND
2089 c36 = REPEAT('i',255) AND
2090 c37 = _utf8 x'c3a4' AND
2091 c38 = '' AND
2092 c39 = _utf8 x'c3b6' AND
2093 c40 = REPEAT(_utf8 x'c3bc',255) AND
2094 c41 = _ucs2 x'00e4' AND
2095 c42 = '' AND
2096 c43 = _ucs2 x'00f6' AND
2097 c44 = REPEAT(_ucs2 x'00fc',255) AND
2098 #
2099 c45 = '' AND
2100 c46 = 'a' AND
2101 c47 = REPEAT('e',255) AND
2102 c48 = REPEAT('i',261) AND
2103 c49 = '' AND
2104 c50 = _utf8 x'c3a4' AND
2105 c51 = REPEAT(_utf8 x'c3b6',255) AND
2106 c52 = REPEAT(_utf8 x'c3bc',261) AND
2107 c53 = '' AND
2108 c54 = _ucs2 x'00e4' AND
2109 c55 = REPEAT(_ucs2 x'00f6',255) AND
2110 c56 = REPEAT(_ucs2 x'00fc',261) AND
2111 #
2112 c57 = '0' AND
2113 c58 = '' AND
2114 c59 = '1' AND
2115 c60 = REPEAT('1',255) AND
2116 #
2117 c61 = '' AND
2118 c62 = 'b' AND
2119 c63 = REPEAT('c',255) AND
2120 c64 = REPEAT('\'',261) AND
2121 #
2122 c65 = 'tinyblob' AND
2123 c66 = 'tinytext' AND
2124 c67 = 'tinytext-ucs2' AND
2125 c68 = 'blob' AND
2126 c69 = 'text' AND
2127 c70 = 'text-ucs2' AND
2128 c71 = 'mediumblob' AND
2129 c72 = 'mediumtext' AND
2130 c73 = 'mediumtext-ucs2' AND
2131 c74 = 'longblob' AND
2132 c75 = 'longtext' AND
2133 c76 = 'longtext-ucs2' AND
2134 #
2135 c77 = 'b' AND
2136 c78 = 'b,c' AND
2137 #
2138 crn = 3;
2139 affected rows: 1
2140 #
2141 # Delete the row that has NULL values now.
2142 #
2143 DELETE FROM t1 WHERE
2144 #
2145 c01 IS NULL AND
2146 c02 IS NULL AND
2147 c03 IS NULL AND
2148 c04 IS NULL AND
2149 c05 IS NULL AND
2150 c06 IS NULL AND
2151 c07 IS NULL AND
2152 c08 IS NULL AND
2153 c09 IS NULL AND
2154 c10 IS NULL AND
2155 c11 IS NULL AND
2156 c12 IS NULL AND
2157 c13 IS NULL AND
2158 c14 IS NULL AND
2159 c15 IS NULL AND
2160 c16 IS NULL AND
2161 c17 IS NULL AND
2162 c18 IS NULL AND
2163 c19 IS NULL AND
2164 c20 IS NULL AND
2165 c21 IS NULL AND
2166 c22 IS NULL AND
2167 c23 IS NULL AND
2168 c24 IS NULL AND
2169 c25 IS NULL AND
2170 c26 IS NULL AND
2171 c27 IS NULL AND
2172 #
2173 c28 IS NULL AND
2174 c29 IS NULL AND
2175 # this got a timestamp instead of NULL: c30 IS NULL AND
2176 c31 IS NULL AND
2177 c32 IS NULL AND
2178 #
2179 c33 IS NULL AND
2180 c34 IS NULL AND
2181 c35 IS NULL AND
2182 c36 IS NULL AND
2183 c37 IS NULL AND
2184 c38 IS NULL AND
2185 c39 IS NULL AND
2186 c40 IS NULL AND
2187 c41 IS NULL AND
2188 c42 IS NULL AND
2189 c43 IS NULL AND
2190 c44 IS NULL AND
2191 #
2192 c45 IS NULL AND
2193 c46 IS NULL AND
2194 c47 IS NULL AND
2195 c48 IS NULL AND
2196 c49 IS NULL AND
2197 c50 IS NULL AND
2198 c51 IS NULL AND
2199 c52 IS NULL AND
2200 c53 IS NULL AND
2201 c54 IS NULL AND
2202 c55 IS NULL AND
2203 c56 IS NULL AND
2204 #
2205 c57 IS NULL AND
2206 c58 IS NULL AND
2207 c59 IS NULL AND
2208 c60 IS NULL AND
2209 #
2210 c61 IS NULL AND
2211 c62 IS NULL AND
2212 c63 IS NULL AND
2213 c64 IS NULL AND
2214 #
2215 c65 IS NULL AND
2216 c66 IS NULL AND
2217 c67 IS NULL AND
2218 c68 IS NULL AND
2219 c69 IS NULL AND
2220 c70 IS NULL AND
2221 c71 IS NULL AND
2222 c72 IS NULL AND
2223 c73 IS NULL AND
2224 c74 IS NULL AND
2225 c75 IS NULL AND
2226 c76 IS NULL AND
2227 #
2228 c77 IS NULL AND
2229 c78 IS NULL AND
2230 #
2231 crn = 4;
2232 affected rows: 1
2233 #
2234 # Show what we have in the table. Should be empty now.
2235 #
2236 SELECT * FROM t1;
2237 affected rows: 0
2238 #
2239 # Hide how much rows are affected by each statement.
2240 #
2241 #
2242 # Flush all log buffers to the log file.
2243 #
2244 FLUSH LOGS;
2245 #
2246 # Call mysqlbinlog to display the log file contents.
2247 #
2248 /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/;
2249 /*!40019 SET @@session.max_insert_delayed_threads=0*/;
2250 /*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
2251 DELIMITER /*!*/;
2252 # at #
2253 #010909 4:46:40 server id 1 end_log_pos # Start: binlog v 4, server v #.##.## created 010909 4:…
2254 ROLLBACK/*!*/;
2255 # at #
2256 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
2257 use `test`/*!*/;
2258 SET TIMESTAMP=1000000000/*!*/;
2259 SET @@session.pseudo_thread_id=#/*!*/;
2260 SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@sess…
2261 SET @@session.sql_mode=0/*!*/;
2262 SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
2263 /*!\C utf8 *//*!*/;
2264 SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=…
2265 SET @@session.lc_time_names=0/*!*/;
2266 SET @@session.collation_database=DEFAULT/*!*/;
2267 CREATE TABLE t1 (
2268 c01 BIT,
2269 c02 BIT(64),
2270 c03 TINYINT,
2271 c04 TINYINT UNSIGNED,
2272 c05 TINYINT ZEROFILL,
2273 c06 BOOL,
2274 c07 SMALLINT,
2275 c08 SMALLINT UNSIGNED,
2276 c09 SMALLINT ZEROFILL,
2277 c10 MEDIUMINT,
2278 c11 MEDIUMINT UNSIGNED,
2279 c12 MEDIUMINT ZEROFILL,
2280 c13 INT,
2281 c14 INT UNSIGNED,
2282 c15 INT ZEROFILL,
2283 c16 BIGINT,
2284 c17 BIGINT UNSIGNED,
2285 c18 BIGINT ZEROFILL,
2286 c19 FLOAT,
2287 c20 FLOAT UNSIGNED,
2288 c21 FLOAT ZEROFILL,
2289 c22 DOUBLE,
2290 c23 DOUBLE UNSIGNED,
2291 c24 DOUBLE ZEROFILL,
2292 c25 DECIMAL,
2293 c26 DECIMAL UNSIGNED,
2294 c27 DECIMAL ZEROFILL,
2295 #
2296 c28 DATE,
2297 c29 DATETIME,
2298 c30 TIMESTAMP,
2299 c31 TIME,
2300 c32 YEAR,
2301 #
2302 c33 CHAR,
2303 c34 CHAR(0),
2304 c35 CHAR(1),
2305 c36 CHAR(255),
2306 c37 NATIONAL CHAR,
2307 c38 NATIONAL CHAR(0),
2308 c39 NATIONAL CHAR(1),
2309 c40 NATIONAL CHAR(255),
2310 c41 CHAR CHARACTER SET UCS2,
2311 c42 CHAR(0) CHARACTER SET UCS2,
2312 c43 CHAR(1) CHARACTER SET UCS2,
2313 c44 CHAR(255) CHARACTER SET UCS2,
2314 #
2315 c45 VARCHAR(0),
2316 c46 VARCHAR(1),
2317 c47 VARCHAR(255),
2318 c48 VARCHAR(261),
2319 c49 NATIONAL VARCHAR(0),
2320 c50 NATIONAL VARCHAR(1),
2321 c51 NATIONAL VARCHAR(255),
2322 c52 NATIONAL VARCHAR(261),
2323 c53 VARCHAR(0) CHARACTER SET UCS2,
2324 c54 VARCHAR(1) CHARACTER SET UCS2,
2325 c55 VARCHAR(255) CHARACTER SET UCS2,
2326 c56 VARCHAR(261) CHARACTER SET UCS2,
2327 #
2328 c57 BINARY,
2329 c58 BINARY(0),
2330 c59 BINARY(1),
2331 c60 BINARY(255),
2332 #
2333 c61 VARBINARY(0),
2334 c62 VARBINARY(1),
2335 c63 VARBINARY(255),
2336 c64 VARBINARY(261),
2337 #
2338 c65 TINYBLOB,
2339 c66 TINYTEXT,
2340 c67 TINYTEXT CHARACTER SET UCS2,
2341 c68 BLOB,
2342 c69 TEXT,
2343 c70 TEXT CHARACTER SET UCS2,
2344 c71 MEDIUMBLOB,
2345 c72 MEDIUMTEXT,
2346 c73 MEDIUMTEXT CHARACTER SET UCS2,
2347 c74 LONGBLOB,
2348 c75 LONGTEXT,
2349 c76 LONGTEXT CHARACTER SET UCS2,
2350 #
2351 c77 ENUM('a','b','c'),
2352 c78 SET('a','b','c'),
2353 #
2354 crn INT -- row number
2355 ) ENGINE=MyISAM DEFAULT CHARSET latin1
2356 /*!*/;
2357 # at #
2358 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
2359 SET TIMESTAMP=1000000000/*!*/;
2360 SET @@session.time_zone='SYSTEM'/*!*/;
2361 BEGIN
2362 /*!*/;
2363 # at #
2364 # at #
2365 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
2366 #010909 4:46:40 server id 1 end_log_pos # Write_rows: table id # flags: STMT_END_F
2367 ### INSERT INTO `test`.`t1`
2368 ### SET
2369 ### @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
2370 ### @2=b'0000000000000000000000000000000000000000000000000000000000000000' /* BIT(64) meta=2048 n…
2371 ### @3=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
2372 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2373 ### @5=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2374 ### @6=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2375 ### @7=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
2376 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2377 ### @9=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2378 ### @10=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2379 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2380 ### @12=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2381 ### @13=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
2382 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
2383 ### @15=0 /* INT meta=0 nullable=1 is_null=0 */
2384 ### @16=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
2385 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2386 ### @18=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2387 ### @19=-3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2388 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
2389 ### @21=0 /* FLOAT meta=4 nullable=1 is_null=0 */
2390 ### @22=-1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2391 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
2392 ### @24=0 /* DOUBLE meta=8 nullable=1 is_null=0 */
2393 ### @25=-000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2394 ### @26=000000000 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2395 ### @27=000000000 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2396 ### @28='1000:01:01' /* DATE meta=0 nullable=1 is_null=0 */
2397 ### @29=1000-01-01 00:00:00 /* DATETIME meta=0 nullable=1 is_null=0 */
2398 ### @30=75601 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
2399 ### @31='839:12:57' /* TIME meta=0 nullable=1 is_null=0 */
2400 ### @32=1901 /* YEAR meta=0 nullable=1 is_null=0 */
2401 ### @33='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2402 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2403 ### @35='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2404 ### @36='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2405 ### @37='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2406 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2407 ### @39='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2408 ### @40='' /* STRING(765) meta=57085 nullable=1 is_null=0 */
2409 ### @41='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2410 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2411 ### @43='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2412 ### @44='' /* STRING(510) meta=61182 nullable=1 is_null=0 */
2413 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2414 ### @46='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2415 ### @47='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2416 ### @48='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2417 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2418 ### @50='' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2419 ### @51='' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
2420 ### @52='' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
2421 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2422 ### @54='' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2423 ### @55='' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
2424 ### @56='' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
2425 ### @57='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2426 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2427 ### @59='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2428 ### @60='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2429 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2430 ### @62='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2431 ### @63='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2432 ### @64='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2433 ### @65='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2434 ### @66='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2435 ### @67='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2436 ### @68='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2437 ### @69='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2438 ### @70='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2439 ### @71='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2440 ### @72='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2441 ### @73='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2442 ### @74='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2443 ### @75='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2444 ### @76='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2445 ### @77=1 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2446 ### @78=b'00000000' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2447 ### @79=1 /* INT meta=0 nullable=1 is_null=0 */
2448 # at #
2449 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
2450 SET TIMESTAMP=1000000000/*!*/;
2451 COMMIT
2452 /*!*/;
2453 # at #
2454 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
2455 SET TIMESTAMP=1000000000/*!*/;
2456 BEGIN
2457 /*!*/;
2458 # at #
2459 # at #
2460 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
2461 #010909 4:46:40 server id 1 end_log_pos # Write_rows: table id # flags: STMT_END_F
2462 ### INSERT INTO `test`.`t1`
2463 ### SET
2464 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
2465 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
2466 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
2467 ### @4=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2468 ### @5=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2469 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2470 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
2471 ### @8=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2472 ### @9=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2473 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2474 ### @11=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2475 ### @12=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2476 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
2477 ### @14=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2478 ### @15=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2479 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
2480 ### @17=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2481 ### @18=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2482 ### @19=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2483 ### @20=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2484 ### @21=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2485 ### @22=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2486 ### @23=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2487 ### @24=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2488 ### @25=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2489 ### @26=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2490 ### @27=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2491 ### @28='9999:12:31' /* DATE meta=0 nullable=1 is_null=0 */
2492 ### @29=9999-12-31 23:59:59 /* DATETIME meta=0 nullable=1 is_null=0 */
2493 ### @30=2146522447 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
2494 ### @31='838:59:59' /* TIME meta=0 nullable=1 is_null=0 */
2495 ### @32=2155 /* YEAR meta=0 nullable=1 is_null=0 */
2496 ### @33='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2497 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2498 ### @35='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2499 …���������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is…
2500 ### @37='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2501 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2502 ### @39='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2503 …￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* STRING(765) meta=57085 nullable=1 is…
2504 ### @41='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2505 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2506 ### @43='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2507 …���������������������������������������������������������' /* STRING(510) meta=61182 nullable=1 is…
2508 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2509 ### @46='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2510 …������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_n…
2511 …������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_n…
2512 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2513 ### @50='￿' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2514 …￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(765) meta=765 nullable=1 is_n…
2515 …￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(783) meta=783 nullable=1 is_n…
2516 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2517 ### @54='��' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2518 …������������������������������������������������������' /* VARSTRING(510) meta=510 nullable=1 is_n…
2519 …������������������������������������������������������' /* VARSTRING(522) meta=522 nullable=1 is_n…
2520 ### @57='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2521 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2522 ### @59='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2523 …���������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is…
2524 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2525 ### @62='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2526 …������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_n…
2527 …������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_n…
2528 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2529 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2530 …n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_nul…
2531 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2532 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2533 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
2534 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2535 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2536 …0m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_nul…
2537 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2538 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2539 …n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_nul…
2540 ### @77=3 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2541 ### @78=b'00000111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2542 ### @79=2 /* INT meta=0 nullable=1 is_null=0 */
2543 # at #
2544 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
2545 SET TIMESTAMP=1000000000/*!*/;
2546 COMMIT
2547 /*!*/;
2548 # at #
2549 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
2550 SET TIMESTAMP=1000000000/*!*/;
2551 BEGIN
2552 /*!*/;
2553 # at #
2554 # at #
2555 # at #
2556 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
2557 #010909 4:46:40 server id 1 end_log_pos # Write_rows: table id #
2558 #010909 4:46:40 server id 1 end_log_pos # Write_rows: table id # flags: STMT_END_F
2559 ### INSERT INTO `test`.`t1`
2560 ### SET
2561 ### @1=NULL /* type=16 meta=1 nullable=1 is_null=1 */
2562 ### @2=NULL /* type=16 meta=2048 nullable=1 is_null=1 */
2563 ### @3=NULL /* type=1 meta=0 nullable=1 is_null=1 */
2564 ### @4=NULL /* type=1 meta=0 nullable=1 is_null=1 */
2565 ### @5=NULL /* type=1 meta=0 nullable=1 is_null=1 */
2566 ### @6=NULL /* type=1 meta=0 nullable=1 is_null=1 */
2567 ### @7=NULL /* type=2 meta=0 nullable=1 is_null=1 */
2568 ### @8=NULL /* type=2 meta=0 nullable=1 is_null=1 */
2569 ### @9=NULL /* type=2 meta=0 nullable=1 is_null=1 */
2570 ### @10=NULL /* type=9 meta=0 nullable=1 is_null=1 */
2571 ### @11=NULL /* type=9 meta=0 nullable=1 is_null=1 */
2572 ### @12=NULL /* type=9 meta=0 nullable=1 is_null=1 */
2573 ### @13=NULL /* type=3 meta=0 nullable=1 is_null=1 */
2574 ### @14=NULL /* type=3 meta=0 nullable=1 is_null=1 */
2575 ### @15=NULL /* type=3 meta=0 nullable=1 is_null=1 */
2576 ### @16=NULL /* type=8 meta=0 nullable=1 is_null=1 */
2577 ### @17=NULL /* type=8 meta=0 nullable=1 is_null=1 */
2578 ### @18=NULL /* type=8 meta=0 nullable=1 is_null=1 */
2579 ### @19=NULL /* type=4 meta=4 nullable=1 is_null=1 */
2580 ### @20=NULL /* type=4 meta=4 nullable=1 is_null=1 */
2581 ### @21=NULL /* type=4 meta=4 nullable=1 is_null=1 */
2582 ### @22=NULL /* type=5 meta=8 nullable=1 is_null=1 */
2583 ### @23=NULL /* type=5 meta=8 nullable=1 is_null=1 */
2584 ### @24=NULL /* type=5 meta=8 nullable=1 is_null=1 */
2585 ### @25=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
2586 ### @26=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
2587 ### @27=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
2588 ### @28=NULL /* type=14 meta=0 nullable=1 is_null=1 */
2589 ### @29=NULL /* type=12 meta=0 nullable=1 is_null=1 */
2590 ### @30=1000000000 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
2591 ### @31=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
2592 ### @32=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
2593 ### @33=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
2594 ### @34=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
2595 ### @35=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
2596 ### @36=NULL /* TIMESTAMP meta=65279 nullable=1 is_null=1 */
2597 ### @37=NULL /* TIMESTAMP meta=65027 nullable=1 is_null=1 */
2598 ### @38=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
2599 ### @39=NULL /* TIMESTAMP meta=65027 nullable=1 is_null=1 */
2600 ### @40=NULL /* TIMESTAMP meta=57085 nullable=1 is_null=1 */
2601 ### @41=NULL /* TIMESTAMP meta=65026 nullable=1 is_null=1 */
2602 ### @42=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
2603 ### @43=NULL /* TIMESTAMP meta=65026 nullable=1 is_null=1 */
2604 ### @44=NULL /* TIMESTAMP meta=61182 nullable=1 is_null=1 */
2605 ### @45=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
2606 ### @46=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
2607 ### @47=NULL /* TIMESTAMP meta=255 nullable=1 is_null=1 */
2608 ### @48=NULL /* TIMESTAMP meta=261 nullable=1 is_null=1 */
2609 ### @49=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
2610 ### @50=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
2611 ### @51=NULL /* TIMESTAMP meta=765 nullable=1 is_null=1 */
2612 ### @52=NULL /* TIMESTAMP meta=783 nullable=1 is_null=1 */
2613 ### @53=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
2614 ### @54=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
2615 ### @55=NULL /* TIMESTAMP meta=510 nullable=1 is_null=1 */
2616 ### @56=NULL /* TIMESTAMP meta=522 nullable=1 is_null=1 */
2617 ### @57=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
2618 ### @58=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
2619 ### @59=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
2620 ### @60=NULL /* TIMESTAMP meta=65279 nullable=1 is_null=1 */
2621 ### @61=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
2622 ### @62=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
2623 ### @63=NULL /* TIMESTAMP meta=255 nullable=1 is_null=1 */
2624 ### @64=NULL /* TIMESTAMP meta=261 nullable=1 is_null=1 */
2625 ### @65=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
2626 ### @66=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
2627 ### @67=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
2628 ### @68=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
2629 ### @69=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
2630 ### @70=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
2631 ### @71=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
2632 ### @72=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
2633 ### @73=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
2634 ### @74=NULL /* TIMESTAMP meta=4 nullable=1 is_null=1 */
2635 ### @75=NULL /* TIMESTAMP meta=4 nullable=1 is_null=1 */
2636 ### @76=NULL /* TIMESTAMP meta=4 nullable=1 is_null=1 */
2637 ### @77=NULL /* TIMESTAMP meta=63233 nullable=1 is_null=1 */
2638 ### @78=NULL /* TIMESTAMP meta=63489 nullable=1 is_null=1 */
2639 ### @79=3 /* INT meta=0 nullable=1 is_null=0 */
2640 ### INSERT INTO `test`.`t1`
2641 ### SET
2642 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
2643 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
2644 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
2645 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2646 ### @5=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2647 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2648 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
2649 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2650 ### @9=1 /* SHORTINT meta=0 nullable=1 is_null=0 */
2651 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2652 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2653 ### @12=1 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2654 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
2655 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
2656 ### @15=1 /* INT meta=0 nullable=1 is_null=0 */
2657 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
2658 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2659 ### @18=1 /* LONGINT meta=0 nullable=1 is_null=0 */
2660 ### @19=-1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
2661 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
2662 ### @21=1 /* FLOAT meta=4 nullable=1 is_null=0 */
2663 ### @22=-2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
2664 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
2665 ### @24=1 /* DOUBLE meta=8 nullable=1 is_null=0 */
2666 ### @25=-000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2667 ### @26=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2668 ### @27=000000001 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2669 ### @28='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
2670 ### @29=2008-08-04 16:18:06 /* DATETIME meta=0 nullable=1 is_null=0 */
2671 ### @30=1217855904 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
2672 ### @31='16:18:47' /* TIME meta=0 nullable=1 is_null=0 */
2673 ### @32=2008 /* YEAR meta=0 nullable=1 is_null=0 */
2674 ### @33='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2675 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2676 ### @35='e' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2677 …iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* STRING(255) meta=65279 nullable=1 is…
2678 ### @37='ä' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2679 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2680 ### @39='ö' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2681 …üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* STRING(765) meta=57085 nullable=1 is…
2682 ### @41='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2683 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2684 ### @43='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2685 …0�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* STRING(510) meta=61182 nullable=1 is…
2686 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2687 ### @46='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2688 …eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' /* VARSTRING(255) meta=255 nullable=1 is_n…
2689 …iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* VARSTRING(261) meta=261 nullable=1 is_n…
2690 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2691 ### @50='ä' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2692 …öööööööööööööööööööööööööööööööööööööööööööööööööööööö' /* VARSTRING(765) meta=765 nullable=1 is_n…
2693 …üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* VARSTRING(783) meta=783 nullable=1 is_n…
2694 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2695 ### @54='\x00�' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2696 …x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(510) meta=510 nullable=1 is_n…
2697 …x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(522) meta=522 nullable=1 is_n…
2698 ### @57='0' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2699 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2700 ### @59='1' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2701 …111111111111111111111111111111111111111111111111111111111' /* STRING(255) meta=65279 nullable=1 is…
2702 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2703 ### @62='b' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2704 …cccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* VARSTRING(255) meta=255 nullable=1 is_n…
2705 …''''''''''''''''''''''''''''''''''''''''''''''''''''''' /* VARSTRING(261) meta=261 nullable=1 is_n…
2706 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2707 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2708 …n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_nul…
2709 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2710 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2711 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
2712 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2713 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2714 …0m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_nul…
2715 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2716 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2717 …n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_nul…
2718 ### @77=2 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2719 ### @78=b'00000110' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2720 ### @79=4 /* INT meta=0 nullable=1 is_null=0 */
2721 # at #
2722 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
2723 SET TIMESTAMP=1000000000/*!*/;
2724 COMMIT
2725 /*!*/;
2726 # at #
2727 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
2728 SET TIMESTAMP=1000000000/*!*/;
2729 BEGIN
2730 /*!*/;
2731 # at #
2732 # at #
2733 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
2734 #010909 4:46:40 server id 1 end_log_pos # Update_rows: table id # flags: STMT_END_F
2735 ### UPDATE `test`.`t1`
2736 ### WHERE
2737 ### @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
2738 ### @2=b'0000000000000000000000000000000000000000000000000000000000000000' /* BIT(64) meta=2048 n…
2739 ### @3=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
2740 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2741 ### @5=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2742 ### @6=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2743 ### @7=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
2744 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2745 ### @9=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2746 ### @10=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2747 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2748 ### @12=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2749 ### @13=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
2750 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
2751 ### @15=0 /* INT meta=0 nullable=1 is_null=0 */
2752 ### @16=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
2753 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2754 ### @18=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2755 ### @19=-3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2756 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
2757 ### @21=0 /* FLOAT meta=4 nullable=1 is_null=0 */
2758 ### @22=-1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2759 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
2760 ### @24=0 /* DOUBLE meta=8 nullable=1 is_null=0 */
2761 ### @25=-000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2762 ### @26=000000000 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2763 ### @27=000000000 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2764 ### @28='1000:01:01' /* DATE meta=0 nullable=1 is_null=0 */
2765 ### @29=1000-01-01 00:00:00 /* DATETIME meta=0 nullable=1 is_null=0 */
2766 ### @30=75601 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
2767 ### @31='839:12:57' /* TIME meta=0 nullable=1 is_null=0 */
2768 ### @32=1901 /* YEAR meta=0 nullable=1 is_null=0 */
2769 ### @33='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2770 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2771 ### @35='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2772 ### @36='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2773 ### @37='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2774 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2775 ### @39='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2776 ### @40='' /* STRING(765) meta=57085 nullable=1 is_null=0 */
2777 ### @41='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2778 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2779 ### @43='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2780 ### @44='' /* STRING(510) meta=61182 nullable=1 is_null=0 */
2781 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2782 ### @46='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2783 ### @47='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2784 ### @48='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2785 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2786 ### @50='' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2787 ### @51='' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
2788 ### @52='' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
2789 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2790 ### @54='' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2791 ### @55='' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
2792 ### @56='' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
2793 ### @57='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2794 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2795 ### @59='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2796 ### @60='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2797 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2798 ### @62='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2799 ### @63='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2800 ### @64='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2801 ### @65='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2802 ### @66='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2803 ### @67='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2804 ### @68='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2805 ### @69='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2806 ### @70='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2807 ### @71='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2808 ### @72='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2809 ### @73='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2810 ### @74='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2811 ### @75='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2812 ### @76='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2813 ### @77=1 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2814 ### @78=b'00000000' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2815 ### @79=1 /* INT meta=0 nullable=1 is_null=0 */
2816 ### SET
2817 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
2818 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
2819 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
2820 ### @4=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2821 ### @5=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2822 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2823 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
2824 ### @8=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2825 ### @9=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2826 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2827 ### @11=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2828 ### @12=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2829 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
2830 ### @14=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2831 ### @15=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2832 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
2833 ### @17=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2834 ### @18=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2835 ### @19=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2836 ### @20=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2837 ### @21=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2838 ### @22=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2839 ### @23=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2840 ### @24=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2841 ### @25=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2842 ### @26=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2843 ### @27=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2844 ### @28='9999:12:31' /* DATE meta=0 nullable=1 is_null=0 */
2845 ### @29=9999-12-31 23:59:59 /* DATETIME meta=0 nullable=1 is_null=0 */
2846 ### @30=2146522447 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
2847 ### @31='838:59:59' /* TIME meta=0 nullable=1 is_null=0 */
2848 ### @32=2155 /* YEAR meta=0 nullable=1 is_null=0 */
2849 ### @33='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2850 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2851 ### @35='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2852 …���������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is…
2853 ### @37='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2854 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2855 ### @39='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2856 …￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* STRING(765) meta=57085 nullable=1 is…
2857 ### @41='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2858 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2859 ### @43='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2860 …���������������������������������������������������������' /* STRING(510) meta=61182 nullable=1 is…
2861 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2862 ### @46='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2863 …������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_n…
2864 …������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_n…
2865 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2866 ### @50='￿' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2867 …￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(765) meta=765 nullable=1 is_n…
2868 …￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(783) meta=783 nullable=1 is_n…
2869 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2870 ### @54='��' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2871 …������������������������������������������������������' /* VARSTRING(510) meta=510 nullable=1 is_n…
2872 …������������������������������������������������������' /* VARSTRING(522) meta=522 nullable=1 is_n…
2873 ### @57='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2874 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2875 ### @59='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2876 …���������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is…
2877 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2878 ### @62='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2879 …������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_n…
2880 …������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_n…
2881 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2882 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2883 …n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_nul…
2884 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2885 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2886 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
2887 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2888 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2889 …0m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_nul…
2890 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2891 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2892 …n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_nul…
2893 ### @77=3 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2894 ### @78=b'00000111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2895 ### @79=1 /* INT meta=0 nullable=1 is_null=0 */
2896 # at #
2897 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
2898 SET TIMESTAMP=1000000000/*!*/;
2899 COMMIT
2900 /*!*/;
2901 # at #
2902 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
2903 SET TIMESTAMP=1000000000/*!*/;
2904 BEGIN
2905 /*!*/;
2906 # at #
2907 # at #
2908 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
2909 #010909 4:46:40 server id 1 end_log_pos # Update_rows: table id # flags: STMT_END_F
2910 ### UPDATE `test`.`t1`
2911 ### WHERE
2912 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
2913 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
2914 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
2915 ### @4=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2916 ### @5=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2917 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2918 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
2919 ### @8=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2920 ### @9=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2921 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2922 ### @11=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2923 ### @12=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2924 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
2925 ### @14=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2926 ### @15=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2927 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
2928 ### @17=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2929 ### @18=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2930 ### @19=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2931 ### @20=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2932 ### @21=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2933 ### @22=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2934 ### @23=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2935 ### @24=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2936 ### @25=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2937 ### @26=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2938 ### @27=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2939 ### @28='9999:12:31' /* DATE meta=0 nullable=1 is_null=0 */
2940 ### @29=9999-12-31 23:59:59 /* DATETIME meta=0 nullable=1 is_null=0 */
2941 ### @30=2146522447 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
2942 ### @31='838:59:59' /* TIME meta=0 nullable=1 is_null=0 */
2943 ### @32=2155 /* YEAR meta=0 nullable=1 is_null=0 */
2944 ### @33='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2945 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2946 ### @35='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2947 …���������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is…
2948 ### @37='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2949 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2950 ### @39='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2951 …￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* STRING(765) meta=57085 nullable=1 is…
2952 ### @41='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2953 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2954 ### @43='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2955 …���������������������������������������������������������' /* STRING(510) meta=61182 nullable=1 is…
2956 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2957 ### @46='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2958 …������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_n…
2959 …������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_n…
2960 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2961 ### @50='￿' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2962 …￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(765) meta=765 nullable=1 is_n…
2963 …￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(783) meta=783 nullable=1 is_n…
2964 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2965 ### @54='��' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2966 …������������������������������������������������������' /* VARSTRING(510) meta=510 nullable=1 is_n…
2967 …������������������������������������������������������' /* VARSTRING(522) meta=522 nullable=1 is_n…
2968 ### @57='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2969 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2970 ### @59='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2971 …���������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is…
2972 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2973 ### @62='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2974 …������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_n…
2975 …������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_n…
2976 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2977 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2978 …n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_nul…
2979 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2980 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2981 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
2982 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2983 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2984 …0m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_nul…
2985 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2986 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2987 …n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_nul…
2988 ### @77=3 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2989 ### @78=b'00000111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2990 ### @79=2 /* INT meta=0 nullable=1 is_null=0 */
2991 ### SET
2992 ### @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
2993 ### @2=b'0000000000000000000000000000000000000000000000000000000000000000' /* BIT(64) meta=2048 n…
2994 ### @3=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
2995 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2996 ### @5=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2997 ### @6=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2998 ### @7=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
2999 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3000 ### @9=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3001 ### @10=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3002 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3003 ### @12=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3004 ### @13=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
3005 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
3006 ### @15=0 /* INT meta=0 nullable=1 is_null=0 */
3007 ### @16=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
3008 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3009 ### @18=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3010 ### @19=-3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3011 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3012 ### @21=0 /* FLOAT meta=4 nullable=1 is_null=0 */
3013 ### @22=-1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3014 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3015 ### @24=0 /* DOUBLE meta=8 nullable=1 is_null=0 */
3016 ### @25=-000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3017 ### @26=000000000 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3018 ### @27=000000000 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3019 ### @28='1000:01:01' /* DATE meta=0 nullable=1 is_null=0 */
3020 ### @29=1000-01-01 00:00:00 /* DATETIME meta=0 nullable=1 is_null=0 */
3021 ### @30=75601 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
3022 ### @31='839:12:57' /* TIME meta=0 nullable=1 is_null=0 */
3023 ### @32=1901 /* YEAR meta=0 nullable=1 is_null=0 */
3024 ### @33='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3025 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3026 ### @35='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3027 ### @36='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3028 ### @37='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3029 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3030 ### @39='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3031 ### @40='' /* STRING(765) meta=57085 nullable=1 is_null=0 */
3032 ### @41='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3033 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3034 ### @43='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3035 ### @44='' /* STRING(510) meta=61182 nullable=1 is_null=0 */
3036 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3037 ### @46='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3038 ### @47='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3039 ### @48='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3040 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3041 ### @50='' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3042 ### @51='' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
3043 ### @52='' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
3044 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3045 ### @54='' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3046 ### @55='' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
3047 ### @56='' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
3048 ### @57='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3049 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3050 ### @59='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3051 ### @60='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3052 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3053 ### @62='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3054 ### @63='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3055 ### @64='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3056 ### @65='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3057 ### @66='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3058 ### @67='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3059 ### @68='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3060 ### @69='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3061 ### @70='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3062 ### @71='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3063 ### @72='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3064 ### @73='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3065 ### @74='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3066 ### @75='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3067 ### @76='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3068 ### @77=1 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3069 ### @78=b'00000000' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3070 ### @79=2 /* INT meta=0 nullable=1 is_null=0 */
3071 # at #
3072 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3073 SET TIMESTAMP=1000000000/*!*/;
3074 COMMIT
3075 /*!*/;
3076 # at #
3077 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3078 SET TIMESTAMP=1000000000/*!*/;
3079 BEGIN
3080 /*!*/;
3081 # at #
3082 # at #
3083 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
3084 #010909 4:46:40 server id 1 end_log_pos # Update_rows: table id # flags: STMT_END_F
3085 ### UPDATE `test`.`t1`
3086 ### WHERE
3087 ### @1=NULL /* type=16 meta=1 nullable=1 is_null=1 */
3088 ### @2=NULL /* type=16 meta=2048 nullable=1 is_null=1 */
3089 ### @3=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3090 ### @4=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3091 ### @5=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3092 ### @6=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3093 ### @7=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3094 ### @8=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3095 ### @9=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3096 ### @10=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3097 ### @11=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3098 ### @12=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3099 ### @13=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3100 ### @14=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3101 ### @15=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3102 ### @16=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3103 ### @17=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3104 ### @18=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3105 ### @19=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3106 ### @20=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3107 ### @21=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3108 ### @22=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3109 ### @23=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3110 ### @24=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3111 ### @25=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3112 ### @26=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3113 ### @27=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3114 ### @28=NULL /* type=14 meta=0 nullable=1 is_null=1 */
3115 ### @29=NULL /* type=12 meta=0 nullable=1 is_null=1 */
3116 ### @30=1000000000 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
3117 ### @31=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3118 ### @32=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3119 ### @33=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
3120 ### @34=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
3121 ### @35=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
3122 ### @36=NULL /* TIMESTAMP meta=65279 nullable=1 is_null=1 */
3123 ### @37=NULL /* TIMESTAMP meta=65027 nullable=1 is_null=1 */
3124 ### @38=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
3125 ### @39=NULL /* TIMESTAMP meta=65027 nullable=1 is_null=1 */
3126 ### @40=NULL /* TIMESTAMP meta=57085 nullable=1 is_null=1 */
3127 ### @41=NULL /* TIMESTAMP meta=65026 nullable=1 is_null=1 */
3128 ### @42=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
3129 ### @43=NULL /* TIMESTAMP meta=65026 nullable=1 is_null=1 */
3130 ### @44=NULL /* TIMESTAMP meta=61182 nullable=1 is_null=1 */
3131 ### @45=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3132 ### @46=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3133 ### @47=NULL /* TIMESTAMP meta=255 nullable=1 is_null=1 */
3134 ### @48=NULL /* TIMESTAMP meta=261 nullable=1 is_null=1 */
3135 ### @49=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3136 ### @50=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
3137 ### @51=NULL /* TIMESTAMP meta=765 nullable=1 is_null=1 */
3138 ### @52=NULL /* TIMESTAMP meta=783 nullable=1 is_null=1 */
3139 ### @53=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3140 ### @54=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
3141 ### @55=NULL /* TIMESTAMP meta=510 nullable=1 is_null=1 */
3142 ### @56=NULL /* TIMESTAMP meta=522 nullable=1 is_null=1 */
3143 ### @57=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
3144 ### @58=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
3145 ### @59=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
3146 ### @60=NULL /* TIMESTAMP meta=65279 nullable=1 is_null=1 */
3147 ### @61=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3148 ### @62=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3149 ### @63=NULL /* TIMESTAMP meta=255 nullable=1 is_null=1 */
3150 ### @64=NULL /* TIMESTAMP meta=261 nullable=1 is_null=1 */
3151 ### @65=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3152 ### @66=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3153 ### @67=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3154 ### @68=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
3155 ### @69=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
3156 ### @70=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
3157 ### @71=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
3158 ### @72=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
3159 ### @73=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
3160 ### @74=NULL /* TIMESTAMP meta=4 nullable=1 is_null=1 */
3161 ### @75=NULL /* TIMESTAMP meta=4 nullable=1 is_null=1 */
3162 ### @76=NULL /* TIMESTAMP meta=4 nullable=1 is_null=1 */
3163 ### @77=NULL /* TIMESTAMP meta=63233 nullable=1 is_null=1 */
3164 ### @78=NULL /* TIMESTAMP meta=63489 nullable=1 is_null=1 */
3165 ### @79=3 /* INT meta=0 nullable=1 is_null=0 */
3166 ### SET
3167 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
3168 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
3169 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
3170 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3171 ### @5=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3172 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3173 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
3174 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3175 ### @9=1 /* SHORTINT meta=0 nullable=1 is_null=0 */
3176 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3177 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3178 ### @12=1 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3179 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
3180 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
3181 ### @15=1 /* INT meta=0 nullable=1 is_null=0 */
3182 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
3183 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3184 ### @18=1 /* LONGINT meta=0 nullable=1 is_null=0 */
3185 ### @19=-1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3186 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3187 ### @21=1 /* FLOAT meta=4 nullable=1 is_null=0 */
3188 ### @22=-2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3189 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3190 ### @24=1 /* DOUBLE meta=8 nullable=1 is_null=0 */
3191 ### @25=-000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3192 ### @26=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3193 ### @27=000000001 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3194 ### @28='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
3195 ### @29=2008-08-04 16:18:06 /* DATETIME meta=0 nullable=1 is_null=0 */
3196 ### @30=1217855904 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
3197 ### @31='16:18:47' /* TIME meta=0 nullable=1 is_null=0 */
3198 ### @32=2008 /* YEAR meta=0 nullable=1 is_null=0 */
3199 ### @33='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3200 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3201 ### @35='e' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3202 …iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* STRING(255) meta=65279 nullable=1 is…
3203 ### @37='ä' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3204 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3205 ### @39='ö' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3206 …üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* STRING(765) meta=57085 nullable=1 is…
3207 ### @41='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3208 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3209 ### @43='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3210 …0�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* STRING(510) meta=61182 nullable=1 is…
3211 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3212 ### @46='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3213 …eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' /* VARSTRING(255) meta=255 nullable=1 is_n…
3214 …iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* VARSTRING(261) meta=261 nullable=1 is_n…
3215 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3216 ### @50='ä' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3217 …öööööööööööööööööööööööööööööööööööööööööööööööööööööö' /* VARSTRING(765) meta=765 nullable=1 is_n…
3218 …üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* VARSTRING(783) meta=783 nullable=1 is_n…
3219 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3220 ### @54='\x00�' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3221 …x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(510) meta=510 nullable=1 is_n…
3222 …x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(522) meta=522 nullable=1 is_n…
3223 ### @57='0' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3224 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3225 ### @59='1' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3226 …111111111111111111111111111111111111111111111111111111111' /* STRING(255) meta=65279 nullable=1 is…
3227 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3228 ### @62='b' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3229 …cccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* VARSTRING(255) meta=255 nullable=1 is_n…
3230 …''''''''''''''''''''''''''''''''''''''''''''''''''''''' /* VARSTRING(261) meta=261 nullable=1 is_n…
3231 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3232 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3233 …n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_nul…
3234 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3235 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3236 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
3237 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3238 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3239 …0m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_nul…
3240 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3241 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3242 …n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_nul…
3243 ### @77=2 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3244 ### @78=b'00000110' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3245 ### @79=3 /* INT meta=0 nullable=1 is_null=0 */
3246 # at #
3247 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3248 SET TIMESTAMP=1000000000/*!*/;
3249 COMMIT
3250 /*!*/;
3251 # at #
3252 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3253 SET TIMESTAMP=1000000000/*!*/;
3254 BEGIN
3255 /*!*/;
3256 # at #
3257 # at #
3258 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
3259 #010909 4:46:40 server id 1 end_log_pos # Update_rows: table id # flags: STMT_END_F
3260 ### UPDATE `test`.`t1`
3261 ### WHERE
3262 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
3263 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
3264 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
3265 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3266 ### @5=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3267 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3268 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
3269 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3270 ### @9=1 /* SHORTINT meta=0 nullable=1 is_null=0 */
3271 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3272 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3273 ### @12=1 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3274 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
3275 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
3276 ### @15=1 /* INT meta=0 nullable=1 is_null=0 */
3277 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
3278 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3279 ### @18=1 /* LONGINT meta=0 nullable=1 is_null=0 */
3280 ### @19=-1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3281 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3282 ### @21=1 /* FLOAT meta=4 nullable=1 is_null=0 */
3283 ### @22=-2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3284 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3285 ### @24=1 /* DOUBLE meta=8 nullable=1 is_null=0 */
3286 ### @25=-000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3287 ### @26=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3288 ### @27=000000001 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3289 ### @28='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
3290 ### @29=2008-08-04 16:18:06 /* DATETIME meta=0 nullable=1 is_null=0 */
3291 ### @30=1217855904 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
3292 ### @31='16:18:47' /* TIME meta=0 nullable=1 is_null=0 */
3293 ### @32=2008 /* YEAR meta=0 nullable=1 is_null=0 */
3294 ### @33='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3295 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3296 ### @35='e' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3297 …iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* STRING(255) meta=65279 nullable=1 is…
3298 ### @37='ä' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3299 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3300 ### @39='ö' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3301 …üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* STRING(765) meta=57085 nullable=1 is…
3302 ### @41='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3303 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3304 ### @43='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3305 …0�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* STRING(510) meta=61182 nullable=1 is…
3306 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3307 ### @46='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3308 …eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' /* VARSTRING(255) meta=255 nullable=1 is_n…
3309 …iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* VARSTRING(261) meta=261 nullable=1 is_n…
3310 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3311 ### @50='ä' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3312 …öööööööööööööööööööööööööööööööööööööööööööööööööööööö' /* VARSTRING(765) meta=765 nullable=1 is_n…
3313 …üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* VARSTRING(783) meta=783 nullable=1 is_n…
3314 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3315 ### @54='\x00�' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3316 …x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(510) meta=510 nullable=1 is_n…
3317 …x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(522) meta=522 nullable=1 is_n…
3318 ### @57='0' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3319 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3320 ### @59='1' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3321 …111111111111111111111111111111111111111111111111111111111' /* STRING(255) meta=65279 nullable=1 is…
3322 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3323 ### @62='b' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3324 …cccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* VARSTRING(255) meta=255 nullable=1 is_n…
3325 …''''''''''''''''''''''''''''''''''''''''''''''''''''''' /* VARSTRING(261) meta=261 nullable=1 is_n…
3326 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3327 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3328 …n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_nul…
3329 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3330 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3331 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
3332 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3333 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3334 …0m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_nul…
3335 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3336 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3337 …n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_nul…
3338 ### @77=2 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3339 ### @78=b'00000110' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3340 ### @79=4 /* INT meta=0 nullable=1 is_null=0 */
3341 ### SET
3342 ### @1=NULL /* type=16 meta=1 nullable=1 is_null=1 */
3343 ### @2=NULL /* type=16 meta=2048 nullable=1 is_null=1 */
3344 ### @3=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3345 ### @4=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3346 ### @5=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3347 ### @6=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3348 ### @7=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3349 ### @8=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3350 ### @9=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3351 ### @10=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3352 ### @11=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3353 ### @12=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3354 ### @13=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3355 ### @14=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3356 ### @15=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3357 ### @16=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3358 ### @17=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3359 ### @18=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3360 ### @19=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3361 ### @20=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3362 ### @21=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3363 ### @22=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3364 ### @23=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3365 ### @24=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3366 ### @25=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3367 ### @26=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3368 ### @27=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3369 ### @28=NULL /* type=14 meta=0 nullable=1 is_null=1 */
3370 ### @29=NULL /* type=12 meta=0 nullable=1 is_null=1 */
3371 ### @30=1000000000 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
3372 ### @31=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3373 ### @32=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3374 ### @33=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
3375 ### @34=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
3376 ### @35=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
3377 ### @36=NULL /* TIMESTAMP meta=65279 nullable=1 is_null=1 */
3378 ### @37=NULL /* TIMESTAMP meta=65027 nullable=1 is_null=1 */
3379 ### @38=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
3380 ### @39=NULL /* TIMESTAMP meta=65027 nullable=1 is_null=1 */
3381 ### @40=NULL /* TIMESTAMP meta=57085 nullable=1 is_null=1 */
3382 ### @41=NULL /* TIMESTAMP meta=65026 nullable=1 is_null=1 */
3383 ### @42=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
3384 ### @43=NULL /* TIMESTAMP meta=65026 nullable=1 is_null=1 */
3385 ### @44=NULL /* TIMESTAMP meta=61182 nullable=1 is_null=1 */
3386 ### @45=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3387 ### @46=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3388 ### @47=NULL /* TIMESTAMP meta=255 nullable=1 is_null=1 */
3389 ### @48=NULL /* TIMESTAMP meta=261 nullable=1 is_null=1 */
3390 ### @49=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3391 ### @50=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
3392 ### @51=NULL /* TIMESTAMP meta=765 nullable=1 is_null=1 */
3393 ### @52=NULL /* TIMESTAMP meta=783 nullable=1 is_null=1 */
3394 ### @53=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3395 ### @54=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
3396 ### @55=NULL /* TIMESTAMP meta=510 nullable=1 is_null=1 */
3397 ### @56=NULL /* TIMESTAMP meta=522 nullable=1 is_null=1 */
3398 ### @57=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
3399 ### @58=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
3400 ### @59=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
3401 ### @60=NULL /* TIMESTAMP meta=65279 nullable=1 is_null=1 */
3402 ### @61=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3403 ### @62=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3404 ### @63=NULL /* TIMESTAMP meta=255 nullable=1 is_null=1 */
3405 ### @64=NULL /* TIMESTAMP meta=261 nullable=1 is_null=1 */
3406 ### @65=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3407 ### @66=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3408 ### @67=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3409 ### @68=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
3410 ### @69=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
3411 ### @70=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
3412 ### @71=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
3413 ### @72=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
3414 ### @73=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
3415 ### @74=NULL /* TIMESTAMP meta=4 nullable=1 is_null=1 */
3416 ### @75=NULL /* TIMESTAMP meta=4 nullable=1 is_null=1 */
3417 ### @76=NULL /* TIMESTAMP meta=4 nullable=1 is_null=1 */
3418 ### @77=NULL /* TIMESTAMP meta=63233 nullable=1 is_null=1 */
3419 ### @78=NULL /* TIMESTAMP meta=63489 nullable=1 is_null=1 */
3420 ### @79=4 /* INT meta=0 nullable=1 is_null=0 */
3421 # at #
3422 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3423 SET TIMESTAMP=1000000000/*!*/;
3424 COMMIT
3425 /*!*/;
3426 # at #
3427 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3428 SET TIMESTAMP=1000000000/*!*/;
3429 BEGIN
3430 /*!*/;
3431 # at #
3432 # at #
3433 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
3434 #010909 4:46:40 server id 1 end_log_pos # Delete_rows: table id # flags: STMT_END_F
3435 ### DELETE FROM `test`.`t1`
3436 ### WHERE
3437 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
3438 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
3439 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
3440 ### @4=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
3441 ### @5=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
3442 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3443 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
3444 ### @8=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
3445 ### @9=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
3446 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3447 ### @11=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3448 ### @12=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3449 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
3450 ### @14=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
3451 ### @15=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
3452 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
3453 ### @17=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
3454 ### @18=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
3455 ### @19=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3456 ### @20=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3457 ### @21=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3458 ### @22=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3459 ### @23=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3460 ### @24=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3461 ### @25=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3462 ### @26=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3463 ### @27=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3464 ### @28='9999:12:31' /* DATE meta=0 nullable=1 is_null=0 */
3465 ### @29=9999-12-31 23:59:59 /* DATETIME meta=0 nullable=1 is_null=0 */
3466 ### @30=2146522447 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
3467 ### @31='838:59:59' /* TIME meta=0 nullable=1 is_null=0 */
3468 ### @32=2155 /* YEAR meta=0 nullable=1 is_null=0 */
3469 ### @33='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3470 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3471 ### @35='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3472 …���������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is…
3473 ### @37='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3474 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3475 ### @39='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3476 …￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* STRING(765) meta=57085 nullable=1 is…
3477 ### @41='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3478 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3479 ### @43='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3480 …���������������������������������������������������������' /* STRING(510) meta=61182 nullable=1 is…
3481 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3482 ### @46='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3483 …������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_n…
3484 …������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_n…
3485 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3486 ### @50='￿' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3487 …￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(765) meta=765 nullable=1 is_n…
3488 …￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(783) meta=783 nullable=1 is_n…
3489 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3490 ### @54='��' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3491 …������������������������������������������������������' /* VARSTRING(510) meta=510 nullable=1 is_n…
3492 …������������������������������������������������������' /* VARSTRING(522) meta=522 nullable=1 is_n…
3493 ### @57='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3494 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3495 ### @59='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3496 …���������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is…
3497 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3498 ### @62='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3499 …������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_n…
3500 …������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_n…
3501 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3502 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3503 …n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_nul…
3504 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3505 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3506 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
3507 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3508 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3509 …0m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_nul…
3510 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3511 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3512 …n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_nul…
3513 ### @77=3 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3514 ### @78=b'00000111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3515 ### @79=1 /* INT meta=0 nullable=1 is_null=0 */
3516 # at #
3517 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3518 SET TIMESTAMP=1000000000/*!*/;
3519 COMMIT
3520 /*!*/;
3521 # at #
3522 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3523 SET TIMESTAMP=1000000000/*!*/;
3524 BEGIN
3525 /*!*/;
3526 # at #
3527 # at #
3528 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
3529 #010909 4:46:40 server id 1 end_log_pos # Delete_rows: table id # flags: STMT_END_F
3530 ### DELETE FROM `test`.`t1`
3531 ### WHERE
3532 ### @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
3533 ### @2=b'0000000000000000000000000000000000000000000000000000000000000000' /* BIT(64) meta=2048 n…
3534 ### @3=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
3535 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3536 ### @5=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3537 ### @6=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3538 ### @7=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
3539 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3540 ### @9=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3541 ### @10=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3542 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3543 ### @12=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3544 ### @13=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
3545 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
3546 ### @15=0 /* INT meta=0 nullable=1 is_null=0 */
3547 ### @16=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
3548 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3549 ### @18=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3550 ### @19=-3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3551 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3552 ### @21=0 /* FLOAT meta=4 nullable=1 is_null=0 */
3553 ### @22=-1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3554 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3555 ### @24=0 /* DOUBLE meta=8 nullable=1 is_null=0 */
3556 ### @25=-000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3557 ### @26=000000000 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3558 ### @27=000000000 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3559 ### @28='1000:01:01' /* DATE meta=0 nullable=1 is_null=0 */
3560 ### @29=1000-01-01 00:00:00 /* DATETIME meta=0 nullable=1 is_null=0 */
3561 ### @30=75601 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
3562 ### @31='839:12:57' /* TIME meta=0 nullable=1 is_null=0 */
3563 ### @32=1901 /* YEAR meta=0 nullable=1 is_null=0 */
3564 ### @33='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3565 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3566 ### @35='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3567 ### @36='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3568 ### @37='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3569 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3570 ### @39='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3571 ### @40='' /* STRING(765) meta=57085 nullable=1 is_null=0 */
3572 ### @41='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3573 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3574 ### @43='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3575 ### @44='' /* STRING(510) meta=61182 nullable=1 is_null=0 */
3576 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3577 ### @46='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3578 ### @47='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3579 ### @48='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3580 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3581 ### @50='' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3582 ### @51='' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
3583 ### @52='' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
3584 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3585 ### @54='' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3586 ### @55='' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
3587 ### @56='' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
3588 ### @57='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3589 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3590 ### @59='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3591 ### @60='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3592 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3593 ### @62='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3594 ### @63='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3595 ### @64='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3596 ### @65='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3597 ### @66='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3598 ### @67='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3599 ### @68='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3600 ### @69='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3601 ### @70='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3602 ### @71='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3603 ### @72='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3604 ### @73='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3605 ### @74='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3606 ### @75='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3607 ### @76='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3608 ### @77=1 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3609 ### @78=b'00000000' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3610 ### @79=2 /* INT meta=0 nullable=1 is_null=0 */
3611 # at #
3612 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3613 SET TIMESTAMP=1000000000/*!*/;
3614 COMMIT
3615 /*!*/;
3616 # at #
3617 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3618 SET TIMESTAMP=1000000000/*!*/;
3619 BEGIN
3620 /*!*/;
3621 # at #
3622 # at #
3623 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
3624 #010909 4:46:40 server id 1 end_log_pos # Delete_rows: table id # flags: STMT_END_F
3625 ### DELETE FROM `test`.`t1`
3626 ### WHERE
3627 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
3628 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
3629 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
3630 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3631 ### @5=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3632 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3633 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
3634 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3635 ### @9=1 /* SHORTINT meta=0 nullable=1 is_null=0 */
3636 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3637 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3638 ### @12=1 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3639 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
3640 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
3641 ### @15=1 /* INT meta=0 nullable=1 is_null=0 */
3642 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
3643 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3644 ### @18=1 /* LONGINT meta=0 nullable=1 is_null=0 */
3645 ### @19=-1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3646 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3647 ### @21=1 /* FLOAT meta=4 nullable=1 is_null=0 */
3648 ### @22=-2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3649 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3650 ### @24=1 /* DOUBLE meta=8 nullable=1 is_null=0 */
3651 ### @25=-000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3652 ### @26=000000009.999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3653 ### @27=000000001 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3654 ### @28='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
3655 ### @29=2008-08-04 16:18:06 /* DATETIME meta=0 nullable=1 is_null=0 */
3656 ### @30=1217855904 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
3657 ### @31='16:18:47' /* TIME meta=0 nullable=1 is_null=0 */
3658 ### @32=2008 /* YEAR meta=0 nullable=1 is_null=0 */
3659 ### @33='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3660 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3661 ### @35='e' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3662 …iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* STRING(255) meta=65279 nullable=1 is…
3663 ### @37='ä' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3664 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3665 ### @39='ö' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3666 …üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* STRING(765) meta=57085 nullable=1 is…
3667 ### @41='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3668 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3669 ### @43='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3670 …0�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* STRING(510) meta=61182 nullable=1 is…
3671 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3672 ### @46='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3673 …eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' /* VARSTRING(255) meta=255 nullable=1 is_n…
3674 …iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* VARSTRING(261) meta=261 nullable=1 is_n…
3675 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3676 ### @50='ä' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3677 …öööööööööööööööööööööööööööööööööööööööööööööööööööööö' /* VARSTRING(765) meta=765 nullable=1 is_n…
3678 …üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* VARSTRING(783) meta=783 nullable=1 is_n…
3679 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3680 ### @54='\x00�' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3681 …x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(510) meta=510 nullable=1 is_n…
3682 …x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(522) meta=522 nullable=1 is_n…
3683 ### @57='0' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3684 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3685 ### @59='1' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3686 …111111111111111111111111111111111111111111111111111111111' /* STRING(255) meta=65279 nullable=1 is…
3687 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3688 ### @62='b' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3689 …cccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* VARSTRING(255) meta=255 nullable=1 is_n…
3690 …''''''''''''''''''''''''''''''''''''''''''''''''''''''' /* VARSTRING(261) meta=261 nullable=1 is_n…
3691 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3692 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3693 …n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_nul…
3694 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3695 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3696 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
3697 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3698 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3699 …0m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_nul…
3700 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3701 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3702 …n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_nul…
3703 ### @77=2 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3704 ### @78=b'00000110' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3705 ### @79=3 /* INT meta=0 nullable=1 is_null=0 */
3706 # at #
3707 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3708 SET TIMESTAMP=1000000000/*!*/;
3709 COMMIT
3710 /*!*/;
3711 # at #
3712 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3713 SET TIMESTAMP=1000000000/*!*/;
3714 BEGIN
3715 /*!*/;
3716 # at #
3717 # at #
3718 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
3719 #010909 4:46:40 server id 1 end_log_pos # Delete_rows: table id # flags: STMT_END_F
3720 ### DELETE FROM `test`.`t1`
3721 ### WHERE
3722 ### @1=NULL /* type=16 meta=1 nullable=1 is_null=1 */
3723 ### @2=NULL /* type=16 meta=2048 nullable=1 is_null=1 */
3724 ### @3=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3725 ### @4=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3726 ### @5=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3727 ### @6=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3728 ### @7=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3729 ### @8=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3730 ### @9=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3731 ### @10=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3732 ### @11=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3733 ### @12=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3734 ### @13=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3735 ### @14=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3736 ### @15=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3737 ### @16=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3738 ### @17=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3739 ### @18=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3740 ### @19=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3741 ### @20=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3742 ### @21=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3743 ### @22=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3744 ### @23=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3745 ### @24=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3746 ### @25=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3747 ### @26=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3748 ### @27=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3749 ### @28=NULL /* type=14 meta=0 nullable=1 is_null=1 */
3750 ### @29=NULL /* type=12 meta=0 nullable=1 is_null=1 */
3751 ### @30=1000000000 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
3752 ### @31=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3753 ### @32=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3754 ### @33=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
3755 ### @34=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
3756 ### @35=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
3757 ### @36=NULL /* TIMESTAMP meta=65279 nullable=1 is_null=1 */
3758 ### @37=NULL /* TIMESTAMP meta=65027 nullable=1 is_null=1 */
3759 ### @38=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
3760 ### @39=NULL /* TIMESTAMP meta=65027 nullable=1 is_null=1 */
3761 ### @40=NULL /* TIMESTAMP meta=57085 nullable=1 is_null=1 */
3762 ### @41=NULL /* TIMESTAMP meta=65026 nullable=1 is_null=1 */
3763 ### @42=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
3764 ### @43=NULL /* TIMESTAMP meta=65026 nullable=1 is_null=1 */
3765 ### @44=NULL /* TIMESTAMP meta=61182 nullable=1 is_null=1 */
3766 ### @45=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3767 ### @46=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3768 ### @47=NULL /* TIMESTAMP meta=255 nullable=1 is_null=1 */
3769 ### @48=NULL /* TIMESTAMP meta=261 nullable=1 is_null=1 */
3770 ### @49=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3771 ### @50=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
3772 ### @51=NULL /* TIMESTAMP meta=765 nullable=1 is_null=1 */
3773 ### @52=NULL /* TIMESTAMP meta=783 nullable=1 is_null=1 */
3774 ### @53=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3775 ### @54=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
3776 ### @55=NULL /* TIMESTAMP meta=510 nullable=1 is_null=1 */
3777 ### @56=NULL /* TIMESTAMP meta=522 nullable=1 is_null=1 */
3778 ### @57=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
3779 ### @58=NULL /* TIMESTAMP meta=65024 nullable=1 is_null=1 */
3780 ### @59=NULL /* TIMESTAMP meta=65025 nullable=1 is_null=1 */
3781 ### @60=NULL /* TIMESTAMP meta=65279 nullable=1 is_null=1 */
3782 ### @61=NULL /* TIMESTAMP meta=0 nullable=1 is_null=1 */
3783 ### @62=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3784 ### @63=NULL /* TIMESTAMP meta=255 nullable=1 is_null=1 */
3785 ### @64=NULL /* TIMESTAMP meta=261 nullable=1 is_null=1 */
3786 ### @65=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3787 ### @66=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3788 ### @67=NULL /* TIMESTAMP meta=1 nullable=1 is_null=1 */
3789 ### @68=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
3790 ### @69=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
3791 ### @70=NULL /* TIMESTAMP meta=2 nullable=1 is_null=1 */
3792 ### @71=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
3793 ### @72=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
3794 ### @73=NULL /* TIMESTAMP meta=3 nullable=1 is_null=1 */
3795 ### @74=NULL /* TIMESTAMP meta=4 nullable=1 is_null=1 */
3796 ### @75=NULL /* TIMESTAMP meta=4 nullable=1 is_null=1 */
3797 ### @76=NULL /* TIMESTAMP meta=4 nullable=1 is_null=1 */
3798 ### @77=NULL /* TIMESTAMP meta=63233 nullable=1 is_null=1 */
3799 ### @78=NULL /* TIMESTAMP meta=63489 nullable=1 is_null=1 */
3800 ### @79=4 /* INT meta=0 nullable=1 is_null=0 */
3801 # at #
3802 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3803 SET TIMESTAMP=1000000000/*!*/;
3804 COMMIT
3805 /*!*/;
3806 # at #
3807 #010909 4:46:40 server id 1 end_log_pos # Rotate to master-bin.000002 pos: 4
3808 DELIMITER ;
3809 # End of log file
3810 ROLLBACK /* added by mysqlbinlog */;
3811 /*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
3812 /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;
3813 #
3814 # Cleanup.
3815 #
3816 DROP TABLE t1;
3817 #
3818 # =========================================
3819 # Test #2 - Multi-row insert/update/delete.
3820 # =========================================
3821 #
3822 # Delete all existing binary logs.
3823 #
3824 RESET MASTER;
3825 #
3826 # Create a test table with selected data types.
3827 #
3828 CREATE TABLE t1 (
3829 c28 DATE,
3830 c47 VARCHAR(24),
3831 crn INT -- row number
3832 ) ENGINE=MyISAM DEFAULT CHARSET latin1;
3833 #
3834 # Show how much rows are affected by each statement.
3835 #
3836 #
3837 # Multi-row insert.
3838 #
3839 INSERT INTO t1 VALUES
3840 ('2008-08-01','VARCHAR-01',1),
3841 ('2008-08-02','VARCHAR-02',2),
3842 ('2008-08-03','VARCHAR-03',3),
3843 ('2008-08-04','VARCHAR-04',4),
3844 ('2008-08-05','VARCHAR-05',5),
3845 ('2008-08-06','VARCHAR-06',6),
3846 ('2008-08-07','VARCHAR-07',7),
3847 ('2008-08-08','VARCHAR-08',8),
3848 ('2008-08-09','VARCHAR-09',9);
3849 affected rows: 9
3850 info: Records: 9 Duplicates: 0 Warnings: 0
3851 #
3852 # Multi-row update.
3853 #
3854 UPDATE t1 SET c28 = ADDDATE(c28,10) WHERE crn < 8;
3855 affected rows: 7
3856 info: Rows matched: 7 Changed: 7 Warnings: 0
3857 #
3858 # Show what we have in the table.
3859 #
3860 SELECT * FROM t1;
3861 c28 c47 crn
3862 2008-08-11 VARCHAR-01 1
3863 2008-08-12 VARCHAR-02 2
3864 2008-08-13 VARCHAR-03 3
3865 2008-08-14 VARCHAR-04 4
3866 2008-08-15 VARCHAR-05 5
3867 2008-08-16 VARCHAR-06 6
3868 2008-08-17 VARCHAR-07 7
3869 2008-08-08 VARCHAR-08 8
3870 2008-08-09 VARCHAR-09 9
3871 affected rows: 9
3872 #
3873 # Multi-row delete.
3874 #
3875 DELETE FROM t1 WHERE crn < 8;
3876 affected rows: 7
3877 #
3878 # Show what we have in the table.
3879 #
3880 SELECT * FROM t1;
3881 c28 c47 crn
3882 2008-08-08 VARCHAR-08 8
3883 2008-08-09 VARCHAR-09 9
3884 affected rows: 2
3885 #
3886 # Hide how much rows are affected by each statement.
3887 #
3888 #
3889 # Flush all log buffers to the log file.
3890 #
3891 FLUSH LOGS;
3892 #
3893 # Call mysqlbinlog to display the log file contents.
3894 #
3895 /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/;
3896 /*!40019 SET @@session.max_insert_delayed_threads=0*/;
3897 /*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
3898 DELIMITER /*!*/;
3899 # at #
3900 #010909 4:46:40 server id 1 end_log_pos # Start: binlog v 4, server v #.##.## created 010909 4:…
3901 ROLLBACK/*!*/;
3902 # at #
3903 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3904 use `test`/*!*/;
3905 SET TIMESTAMP=1000000000/*!*/;
3906 SET @@session.pseudo_thread_id=#/*!*/;
3907 SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@sess…
3908 SET @@session.sql_mode=0/*!*/;
3909 SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
3910 /*!\C utf8 *//*!*/;
3911 SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=…
3912 SET @@session.lc_time_names=0/*!*/;
3913 SET @@session.collation_database=DEFAULT/*!*/;
3914 CREATE TABLE t1 (
3915 c28 DATE,
3916 c47 VARCHAR(24),
3917 crn INT -- row number
3918 ) ENGINE=MyISAM DEFAULT CHARSET latin1
3919 /*!*/;
3920 # at #
3921 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3922 SET TIMESTAMP=1000000000/*!*/;
3923 BEGIN
3924 /*!*/;
3925 # at #
3926 # at #
3927 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
3928 #010909 4:46:40 server id 1 end_log_pos # Write_rows: table id # flags: STMT_END_F
3929 ### INSERT INTO `test`.`t1`
3930 ### SET
3931 ### @1='2008:08:01' /* DATE meta=0 nullable=1 is_null=0 */
3932 ### @2='VARCHAR-01' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3933 ### @3=1 /* INT meta=0 nullable=1 is_null=0 */
3934 ### INSERT INTO `test`.`t1`
3935 ### SET
3936 ### @1='2008:08:02' /* DATE meta=0 nullable=1 is_null=0 */
3937 ### @2='VARCHAR-02' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3938 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
3939 ### INSERT INTO `test`.`t1`
3940 ### SET
3941 ### @1='2008:08:03' /* DATE meta=0 nullable=1 is_null=0 */
3942 ### @2='VARCHAR-03' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3943 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
3944 ### INSERT INTO `test`.`t1`
3945 ### SET
3946 ### @1='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
3947 ### @2='VARCHAR-04' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3948 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
3949 ### INSERT INTO `test`.`t1`
3950 ### SET
3951 ### @1='2008:08:05' /* DATE meta=0 nullable=1 is_null=0 */
3952 ### @2='VARCHAR-05' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3953 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
3954 ### INSERT INTO `test`.`t1`
3955 ### SET
3956 ### @1='2008:08:06' /* DATE meta=0 nullable=1 is_null=0 */
3957 ### @2='VARCHAR-06' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3958 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
3959 ### INSERT INTO `test`.`t1`
3960 ### SET
3961 ### @1='2008:08:07' /* DATE meta=0 nullable=1 is_null=0 */
3962 ### @2='VARCHAR-07' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3963 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
3964 ### INSERT INTO `test`.`t1`
3965 ### SET
3966 ### @1='2008:08:08' /* DATE meta=0 nullable=1 is_null=0 */
3967 ### @2='VARCHAR-08' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3968 ### @3=8 /* INT meta=0 nullable=1 is_null=0 */
3969 ### INSERT INTO `test`.`t1`
3970 ### SET
3971 ### @1='2008:08:09' /* DATE meta=0 nullable=1 is_null=0 */
3972 ### @2='VARCHAR-09' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3973 ### @3=9 /* INT meta=0 nullable=1 is_null=0 */
3974 # at #
3975 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3976 SET TIMESTAMP=1000000000/*!*/;
3977 COMMIT
3978 /*!*/;
3979 # at #
3980 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
3981 SET TIMESTAMP=1000000000/*!*/;
3982 BEGIN
3983 /*!*/;
3984 # at #
3985 # at #
3986 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
3987 #010909 4:46:40 server id 1 end_log_pos # Update_rows: table id # flags: STMT_END_F
3988 ### UPDATE `test`.`t1`
3989 ### WHERE
3990 ### @1='2008:08:01' /* DATE meta=0 nullable=1 is_null=0 */
3991 ### @2='VARCHAR-01' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3992 ### @3=1 /* INT meta=0 nullable=1 is_null=0 */
3993 ### SET
3994 ### @1='2008:08:11' /* DATE meta=0 nullable=1 is_null=0 */
3995 ### @2='VARCHAR-01' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3996 ### @3=1 /* INT meta=0 nullable=1 is_null=0 */
3997 ### UPDATE `test`.`t1`
3998 ### WHERE
3999 ### @1='2008:08:02' /* DATE meta=0 nullable=1 is_null=0 */
4000 ### @2='VARCHAR-02' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4001 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4002 ### SET
4003 ### @1='2008:08:12' /* DATE meta=0 nullable=1 is_null=0 */
4004 ### @2='VARCHAR-02' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4005 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4006 ### UPDATE `test`.`t1`
4007 ### WHERE
4008 ### @1='2008:08:03' /* DATE meta=0 nullable=1 is_null=0 */
4009 ### @2='VARCHAR-03' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4010 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4011 ### SET
4012 ### @1='2008:08:13' /* DATE meta=0 nullable=1 is_null=0 */
4013 ### @2='VARCHAR-03' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4014 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4015 ### UPDATE `test`.`t1`
4016 ### WHERE
4017 ### @1='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
4018 ### @2='VARCHAR-04' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4019 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4020 ### SET
4021 ### @1='2008:08:14' /* DATE meta=0 nullable=1 is_null=0 */
4022 ### @2='VARCHAR-04' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4023 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4024 ### UPDATE `test`.`t1`
4025 ### WHERE
4026 ### @1='2008:08:05' /* DATE meta=0 nullable=1 is_null=0 */
4027 ### @2='VARCHAR-05' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4028 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4029 ### SET
4030 ### @1='2008:08:15' /* DATE meta=0 nullable=1 is_null=0 */
4031 ### @2='VARCHAR-05' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4032 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4033 ### UPDATE `test`.`t1`
4034 ### WHERE
4035 ### @1='2008:08:06' /* DATE meta=0 nullable=1 is_null=0 */
4036 ### @2='VARCHAR-06' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4037 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4038 ### SET
4039 ### @1='2008:08:16' /* DATE meta=0 nullable=1 is_null=0 */
4040 ### @2='VARCHAR-06' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4041 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4042 ### UPDATE `test`.`t1`
4043 ### WHERE
4044 ### @1='2008:08:07' /* DATE meta=0 nullable=1 is_null=0 */
4045 ### @2='VARCHAR-07' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4046 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4047 ### SET
4048 ### @1='2008:08:17' /* DATE meta=0 nullable=1 is_null=0 */
4049 ### @2='VARCHAR-07' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4050 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4051 # at #
4052 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4053 SET TIMESTAMP=1000000000/*!*/;
4054 COMMIT
4055 /*!*/;
4056 # at #
4057 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4058 SET TIMESTAMP=1000000000/*!*/;
4059 BEGIN
4060 /*!*/;
4061 # at #
4062 # at #
4063 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
4064 #010909 4:46:40 server id 1 end_log_pos # Delete_rows: table id # flags: STMT_END_F
4065 ### DELETE FROM `test`.`t1`
4066 ### WHERE
4067 ### @1='2008:08:11' /* DATE meta=0 nullable=1 is_null=0 */
4068 ### @2='VARCHAR-01' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4069 ### @3=1 /* INT meta=0 nullable=1 is_null=0 */
4070 ### DELETE FROM `test`.`t1`
4071 ### WHERE
4072 ### @1='2008:08:12' /* DATE meta=0 nullable=1 is_null=0 */
4073 ### @2='VARCHAR-02' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4074 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4075 ### DELETE FROM `test`.`t1`
4076 ### WHERE
4077 ### @1='2008:08:13' /* DATE meta=0 nullable=1 is_null=0 */
4078 ### @2='VARCHAR-03' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4079 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4080 ### DELETE FROM `test`.`t1`
4081 ### WHERE
4082 ### @1='2008:08:14' /* DATE meta=0 nullable=1 is_null=0 */
4083 ### @2='VARCHAR-04' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4084 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4085 ### DELETE FROM `test`.`t1`
4086 ### WHERE
4087 ### @1='2008:08:15' /* DATE meta=0 nullable=1 is_null=0 */
4088 ### @2='VARCHAR-05' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4089 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4090 ### DELETE FROM `test`.`t1`
4091 ### WHERE
4092 ### @1='2008:08:16' /* DATE meta=0 nullable=1 is_null=0 */
4093 ### @2='VARCHAR-06' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4094 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4095 ### DELETE FROM `test`.`t1`
4096 ### WHERE
4097 ### @1='2008:08:17' /* DATE meta=0 nullable=1 is_null=0 */
4098 ### @2='VARCHAR-07' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4099 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4100 # at #
4101 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4102 SET TIMESTAMP=1000000000/*!*/;
4103 COMMIT
4104 /*!*/;
4105 # at #
4106 #010909 4:46:40 server id 1 end_log_pos # Rotate to master-bin.000002 pos: 4
4107 DELIMITER ;
4108 # End of log file
4109 ROLLBACK /* added by mysqlbinlog */;
4110 /*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
4111 /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;
4112 #
4113 # Cleanup.
4114 #
4115 DROP TABLE t1;
4116 #
4117 # ====================================
4118 # Test #3 - Multi-table update/delete.
4119 # ====================================
4120 #
4121 # Delete all existing binary logs.
4122 #
4123 RESET MASTER;
4124 #
4125 # Create test tables with selected data types.
4126 #
4127 CREATE TABLE t1 (
4128 c_1_1 DATE,
4129 c_1_2 VARCHAR(255),
4130 c_1_n INT -- row number
4131 ) ENGINE=MyISAM DEFAULT CHARSET latin1;
4132 CREATE TABLE t2 (
4133 c_2_1 DATE,
4134 c_2_2 VARCHAR(255),
4135 c_2_n INT -- row number
4136 ) ENGINE=MyISAM DEFAULT CHARSET latin1;
4137 CREATE TABLE t3 (
4138 c_3_1 DATE,
4139 c_3_2 VARCHAR(255),
4140 c_3_n INT -- row number
4141 ) ENGINE=MyISAM DEFAULT CHARSET latin1;
4142 #
4143 # Show how much rows are affected by each statement.
4144 #
4145 #
4146 # Insert data.
4147 #
4148 INSERT INTO t1 VALUES
4149 ('2008-01-01','VARCHAR-01-01',11),
4150 ('2008-01-02','VARCHAR-01-02',2),
4151 ('2008-01-03','VARCHAR-01-03',3),
4152 ('2008-01-04','VARCHAR-01-04',4),
4153 ('2008-01-05','VARCHAR-01-05',5),
4154 ('2008-01-06','VARCHAR-01-06',6),
4155 ('2008-01-07','VARCHAR-01-07',7),
4156 ('2008-01-08','VARCHAR-01-08',18),
4157 ('2008-01-09','VARCHAR-01-09',19);
4158 affected rows: 9
4159 info: Records: 9 Duplicates: 0 Warnings: 0
4160 INSERT INTO t2 VALUES
4161 ('2008-02-01','VARCHAR-02-01',21),
4162 ('2008-02-02','VARCHAR-02-02',2),
4163 ('2008-02-03','VARCHAR-02-03',3),
4164 ('2008-02-04','VARCHAR-02-04',4),
4165 ('2008-02-05','VARCHAR-02-05',5),
4166 ('2008-02-06','VARCHAR-02-06',6),
4167 ('2008-02-07','VARCHAR-02-07',7),
4168 ('2008-02-08','VARCHAR-02-08',28),
4169 ('2008-02-09','VARCHAR-02-09',29);
4170 affected rows: 9
4171 info: Records: 9 Duplicates: 0 Warnings: 0
4172 INSERT INTO t3 VALUES
4173 ('2008-03-01','VARCHAR-03-01',31),
4174 ('2008-03-02','VARCHAR-03-02',2),
4175 ('2008-03-03','VARCHAR-03-03',3),
4176 ('2008-03-04','VARCHAR-03-04',4),
4177 ('2008-03-05','VARCHAR-03-05',5),
4178 ('2008-03-06','VARCHAR-03-06',6),
4179 ('2008-03-07','VARCHAR-03-07',7),
4180 ('2008-03-08','VARCHAR-03-08',38),
4181 ('2008-03-09','VARCHAR-03-09',39);
4182 affected rows: 9
4183 info: Records: 9 Duplicates: 0 Warnings: 0
4184 #
4185 # Multi-table update.
4186 #
4187 UPDATE t1,t2,t3 SET
4188 c_1_1 = ADDDATE(c_1_1,INTERVAL 10 YEAR),
4189 c_2_1 = ADDDATE(c_2_1,INTERVAL 20 YEAR),
4190 c_3_1 = ADDDATE(c_3_1,INTERVAL 30 YEAR)
4191 WHERE c_1_n = c_2_n AND c_2_n = c_3_n;
4192 affected rows: 18
4193 info: Rows matched: 18 Changed: 18 Warnings: 0
4194 #
4195 # Show what we have in the tables.
4196 #
4197 SELECT * FROM t1;
4198 c_1_1 c_1_2 c_1_n
4199 2008-01-01 VARCHAR-01-01 11
4200 2018-01-02 VARCHAR-01-02 2
4201 2018-01-03 VARCHAR-01-03 3
4202 2018-01-04 VARCHAR-01-04 4
4203 2018-01-05 VARCHAR-01-05 5
4204 2018-01-06 VARCHAR-01-06 6
4205 2018-01-07 VARCHAR-01-07 7
4206 2008-01-08 VARCHAR-01-08 18
4207 2008-01-09 VARCHAR-01-09 19
4208 affected rows: 9
4209 SELECT * FROM t2;
4210 c_2_1 c_2_2 c_2_n
4211 2008-02-01 VARCHAR-02-01 21
4212 2028-02-02 VARCHAR-02-02 2
4213 2028-02-03 VARCHAR-02-03 3
4214 2028-02-04 VARCHAR-02-04 4
4215 2028-02-05 VARCHAR-02-05 5
4216 2028-02-06 VARCHAR-02-06 6
4217 2028-02-07 VARCHAR-02-07 7
4218 2008-02-08 VARCHAR-02-08 28
4219 2008-02-09 VARCHAR-02-09 29
4220 affected rows: 9
4221 SELECT * FROM t3;
4222 c_3_1 c_3_2 c_3_n
4223 2008-03-01 VARCHAR-03-01 31
4224 2038-03-02 VARCHAR-03-02 2
4225 2038-03-03 VARCHAR-03-03 3
4226 2038-03-04 VARCHAR-03-04 4
4227 2038-03-05 VARCHAR-03-05 5
4228 2038-03-06 VARCHAR-03-06 6
4229 2038-03-07 VARCHAR-03-07 7
4230 2008-03-08 VARCHAR-03-08 38
4231 2008-03-09 VARCHAR-03-09 39
4232 affected rows: 9
4233 #
4234 # Multi-table delete.
4235 #
4236 DELETE FROM t1,t2,t3 USING t1 INNER JOIN t2 INNER JOIN t3
4237 WHERE c_1_n = c_2_n AND c_2_n = c_3_n;
4238 affected rows: 18
4239 #
4240 # Show what we have in the tables.
4241 #
4242 SELECT * FROM t1;
4243 c_1_1 c_1_2 c_1_n
4244 2008-01-01 VARCHAR-01-01 11
4245 2008-01-08 VARCHAR-01-08 18
4246 2008-01-09 VARCHAR-01-09 19
4247 affected rows: 3
4248 SELECT * FROM t2;
4249 c_2_1 c_2_2 c_2_n
4250 2008-02-01 VARCHAR-02-01 21
4251 2008-02-08 VARCHAR-02-08 28
4252 2008-02-09 VARCHAR-02-09 29
4253 affected rows: 3
4254 SELECT * FROM t3;
4255 c_3_1 c_3_2 c_3_n
4256 2008-03-01 VARCHAR-03-01 31
4257 2008-03-08 VARCHAR-03-08 38
4258 2008-03-09 VARCHAR-03-09 39
4259 affected rows: 3
4260 #
4261 # Hide how much rows are affected by each statement.
4262 #
4263 #
4264 # Flush all log buffers to the log file.
4265 #
4266 FLUSH LOGS;
4267 #
4268 # Call mysqlbinlog to display the log file contents.
4269 #
4270 /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/;
4271 /*!40019 SET @@session.max_insert_delayed_threads=0*/;
4272 /*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
4273 DELIMITER /*!*/;
4274 # at #
4275 #010909 4:46:40 server id 1 end_log_pos # Start: binlog v 4, server v #.##.## created 010909 4:…
4276 ROLLBACK/*!*/;
4277 # at #
4278 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4279 use `test`/*!*/;
4280 SET TIMESTAMP=1000000000/*!*/;
4281 SET @@session.pseudo_thread_id=#/*!*/;
4282 SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@sess…
4283 SET @@session.sql_mode=0/*!*/;
4284 SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
4285 /*!\C utf8 *//*!*/;
4286 SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=…
4287 SET @@session.lc_time_names=0/*!*/;
4288 SET @@session.collation_database=DEFAULT/*!*/;
4289 CREATE TABLE t1 (
4290 c_1_1 DATE,
4291 c_1_2 VARCHAR(255),
4292 c_1_n INT -- row number
4293 ) ENGINE=MyISAM DEFAULT CHARSET latin1
4294 /*!*/;
4295 # at #
4296 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4297 SET TIMESTAMP=1000000000/*!*/;
4298 CREATE TABLE t2 (
4299 c_2_1 DATE,
4300 c_2_2 VARCHAR(255),
4301 c_2_n INT -- row number
4302 ) ENGINE=MyISAM DEFAULT CHARSET latin1
4303 /*!*/;
4304 # at #
4305 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4306 SET TIMESTAMP=1000000000/*!*/;
4307 CREATE TABLE t3 (
4308 c_3_1 DATE,
4309 c_3_2 VARCHAR(255),
4310 c_3_n INT -- row number
4311 ) ENGINE=MyISAM DEFAULT CHARSET latin1
4312 /*!*/;
4313 # at #
4314 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4315 SET TIMESTAMP=1000000000/*!*/;
4316 BEGIN
4317 /*!*/;
4318 # at #
4319 # at #
4320 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
4321 #010909 4:46:40 server id 1 end_log_pos # Write_rows: table id # flags: STMT_END_F
4322 ### INSERT INTO `test`.`t1`
4323 ### SET
4324 ### @1='2008:01:01' /* DATE meta=0 nullable=1 is_null=0 */
4325 ### @2='VARCHAR-01-01' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4326 ### @3=11 /* INT meta=0 nullable=1 is_null=0 */
4327 ### INSERT INTO `test`.`t1`
4328 ### SET
4329 ### @1='2008:01:02' /* DATE meta=0 nullable=1 is_null=0 */
4330 ### @2='VARCHAR-01-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4331 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4332 ### INSERT INTO `test`.`t1`
4333 ### SET
4334 ### @1='2008:01:03' /* DATE meta=0 nullable=1 is_null=0 */
4335 ### @2='VARCHAR-01-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4336 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4337 ### INSERT INTO `test`.`t1`
4338 ### SET
4339 ### @1='2008:01:04' /* DATE meta=0 nullable=1 is_null=0 */
4340 ### @2='VARCHAR-01-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4341 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4342 ### INSERT INTO `test`.`t1`
4343 ### SET
4344 ### @1='2008:01:05' /* DATE meta=0 nullable=1 is_null=0 */
4345 ### @2='VARCHAR-01-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4346 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4347 ### INSERT INTO `test`.`t1`
4348 ### SET
4349 ### @1='2008:01:06' /* DATE meta=0 nullable=1 is_null=0 */
4350 ### @2='VARCHAR-01-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4351 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4352 ### INSERT INTO `test`.`t1`
4353 ### SET
4354 ### @1='2008:01:07' /* DATE meta=0 nullable=1 is_null=0 */
4355 ### @2='VARCHAR-01-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4356 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4357 ### INSERT INTO `test`.`t1`
4358 ### SET
4359 ### @1='2008:01:08' /* DATE meta=0 nullable=1 is_null=0 */
4360 ### @2='VARCHAR-01-08' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4361 ### @3=18 /* INT meta=0 nullable=1 is_null=0 */
4362 ### INSERT INTO `test`.`t1`
4363 ### SET
4364 ### @1='2008:01:09' /* DATE meta=0 nullable=1 is_null=0 */
4365 ### @2='VARCHAR-01-09' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4366 ### @3=19 /* INT meta=0 nullable=1 is_null=0 */
4367 # at #
4368 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4369 SET TIMESTAMP=1000000000/*!*/;
4370 COMMIT
4371 /*!*/;
4372 # at #
4373 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4374 SET TIMESTAMP=1000000000/*!*/;
4375 BEGIN
4376 /*!*/;
4377 # at #
4378 # at #
4379 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t2` mapped to number #
4380 #010909 4:46:40 server id 1 end_log_pos # Write_rows: table id # flags: STMT_END_F
4381 ### INSERT INTO `test`.`t2`
4382 ### SET
4383 ### @1='2008:02:01' /* DATE meta=0 nullable=1 is_null=0 */
4384 ### @2='VARCHAR-02-01' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4385 ### @3=21 /* INT meta=0 nullable=1 is_null=0 */
4386 ### INSERT INTO `test`.`t2`
4387 ### SET
4388 ### @1='2008:02:02' /* DATE meta=0 nullable=1 is_null=0 */
4389 ### @2='VARCHAR-02-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4390 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4391 ### INSERT INTO `test`.`t2`
4392 ### SET
4393 ### @1='2008:02:03' /* DATE meta=0 nullable=1 is_null=0 */
4394 ### @2='VARCHAR-02-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4395 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4396 ### INSERT INTO `test`.`t2`
4397 ### SET
4398 ### @1='2008:02:04' /* DATE meta=0 nullable=1 is_null=0 */
4399 ### @2='VARCHAR-02-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4400 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4401 ### INSERT INTO `test`.`t2`
4402 ### SET
4403 ### @1='2008:02:05' /* DATE meta=0 nullable=1 is_null=0 */
4404 ### @2='VARCHAR-02-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4405 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4406 ### INSERT INTO `test`.`t2`
4407 ### SET
4408 ### @1='2008:02:06' /* DATE meta=0 nullable=1 is_null=0 */
4409 ### @2='VARCHAR-02-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4410 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4411 ### INSERT INTO `test`.`t2`
4412 ### SET
4413 ### @1='2008:02:07' /* DATE meta=0 nullable=1 is_null=0 */
4414 ### @2='VARCHAR-02-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4415 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4416 ### INSERT INTO `test`.`t2`
4417 ### SET
4418 ### @1='2008:02:08' /* DATE meta=0 nullable=1 is_null=0 */
4419 ### @2='VARCHAR-02-08' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4420 ### @3=28 /* INT meta=0 nullable=1 is_null=0 */
4421 ### INSERT INTO `test`.`t2`
4422 ### SET
4423 ### @1='2008:02:09' /* DATE meta=0 nullable=1 is_null=0 */
4424 ### @2='VARCHAR-02-09' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4425 ### @3=29 /* INT meta=0 nullable=1 is_null=0 */
4426 # at #
4427 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4428 SET TIMESTAMP=1000000000/*!*/;
4429 COMMIT
4430 /*!*/;
4431 # at #
4432 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4433 SET TIMESTAMP=1000000000/*!*/;
4434 BEGIN
4435 /*!*/;
4436 # at #
4437 # at #
4438 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t3` mapped to number #
4439 #010909 4:46:40 server id 1 end_log_pos # Write_rows: table id # flags: STMT_END_F
4440 ### INSERT INTO `test`.`t3`
4441 ### SET
4442 ### @1='2008:03:01' /* DATE meta=0 nullable=1 is_null=0 */
4443 ### @2='VARCHAR-03-01' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4444 ### @3=31 /* INT meta=0 nullable=1 is_null=0 */
4445 ### INSERT INTO `test`.`t3`
4446 ### SET
4447 ### @1='2008:03:02' /* DATE meta=0 nullable=1 is_null=0 */
4448 ### @2='VARCHAR-03-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4449 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4450 ### INSERT INTO `test`.`t3`
4451 ### SET
4452 ### @1='2008:03:03' /* DATE meta=0 nullable=1 is_null=0 */
4453 ### @2='VARCHAR-03-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4454 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4455 ### INSERT INTO `test`.`t3`
4456 ### SET
4457 ### @1='2008:03:04' /* DATE meta=0 nullable=1 is_null=0 */
4458 ### @2='VARCHAR-03-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4459 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4460 ### INSERT INTO `test`.`t3`
4461 ### SET
4462 ### @1='2008:03:05' /* DATE meta=0 nullable=1 is_null=0 */
4463 ### @2='VARCHAR-03-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4464 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4465 ### INSERT INTO `test`.`t3`
4466 ### SET
4467 ### @1='2008:03:06' /* DATE meta=0 nullable=1 is_null=0 */
4468 ### @2='VARCHAR-03-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4469 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4470 ### INSERT INTO `test`.`t3`
4471 ### SET
4472 ### @1='2008:03:07' /* DATE meta=0 nullable=1 is_null=0 */
4473 ### @2='VARCHAR-03-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4474 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4475 ### INSERT INTO `test`.`t3`
4476 ### SET
4477 ### @1='2008:03:08' /* DATE meta=0 nullable=1 is_null=0 */
4478 ### @2='VARCHAR-03-08' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4479 ### @3=38 /* INT meta=0 nullable=1 is_null=0 */
4480 ### INSERT INTO `test`.`t3`
4481 ### SET
4482 ### @1='2008:03:09' /* DATE meta=0 nullable=1 is_null=0 */
4483 ### @2='VARCHAR-03-09' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4484 ### @3=39 /* INT meta=0 nullable=1 is_null=0 */
4485 # at #
4486 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4487 SET TIMESTAMP=1000000000/*!*/;
4488 COMMIT
4489 /*!*/;
4490 # at #
4491 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4492 SET TIMESTAMP=1000000000/*!*/;
4493 BEGIN
4494 /*!*/;
4495 # at #
4496 # at #
4497 # at #
4498 # at #
4499 # at #
4500 # at #
4501 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
4502 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t2` mapped to number #
4503 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t3` mapped to number #
4504 #010909 4:46:40 server id 1 end_log_pos # Update_rows: table id #
4505 #010909 4:46:40 server id 1 end_log_pos # Update_rows: table id #
4506 #010909 4:46:40 server id 1 end_log_pos # Update_rows: table id # flags: STMT_END_F
4507 ### UPDATE `test`.`t1`
4508 ### WHERE
4509 ### @1='2008:01:02' /* DATE meta=0 nullable=1 is_null=0 */
4510 ### @2='VARCHAR-01-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4511 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4512 ### SET
4513 ### @1='2018:01:02' /* DATE meta=0 nullable=1 is_null=0 */
4514 ### @2='VARCHAR-01-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4515 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4516 ### UPDATE `test`.`t1`
4517 ### WHERE
4518 ### @1='2008:01:03' /* DATE meta=0 nullable=1 is_null=0 */
4519 ### @2='VARCHAR-01-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4520 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4521 ### SET
4522 ### @1='2018:01:03' /* DATE meta=0 nullable=1 is_null=0 */
4523 ### @2='VARCHAR-01-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4524 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4525 ### UPDATE `test`.`t1`
4526 ### WHERE
4527 ### @1='2008:01:04' /* DATE meta=0 nullable=1 is_null=0 */
4528 ### @2='VARCHAR-01-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4529 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4530 ### SET
4531 ### @1='2018:01:04' /* DATE meta=0 nullable=1 is_null=0 */
4532 ### @2='VARCHAR-01-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4533 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4534 ### UPDATE `test`.`t1`
4535 ### WHERE
4536 ### @1='2008:01:05' /* DATE meta=0 nullable=1 is_null=0 */
4537 ### @2='VARCHAR-01-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4538 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4539 ### SET
4540 ### @1='2018:01:05' /* DATE meta=0 nullable=1 is_null=0 */
4541 ### @2='VARCHAR-01-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4542 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4543 ### UPDATE `test`.`t1`
4544 ### WHERE
4545 ### @1='2008:01:06' /* DATE meta=0 nullable=1 is_null=0 */
4546 ### @2='VARCHAR-01-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4547 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4548 ### SET
4549 ### @1='2018:01:06' /* DATE meta=0 nullable=1 is_null=0 */
4550 ### @2='VARCHAR-01-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4551 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4552 ### UPDATE `test`.`t1`
4553 ### WHERE
4554 ### @1='2008:01:07' /* DATE meta=0 nullable=1 is_null=0 */
4555 ### @2='VARCHAR-01-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4556 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4557 ### SET
4558 ### @1='2018:01:07' /* DATE meta=0 nullable=1 is_null=0 */
4559 ### @2='VARCHAR-01-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4560 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4561 ### UPDATE `test`.`t2`
4562 ### WHERE
4563 ### @1='2008:02:02' /* DATE meta=0 nullable=1 is_null=0 */
4564 ### @2='VARCHAR-02-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4565 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4566 ### SET
4567 ### @1='2028:02:02' /* DATE meta=0 nullable=1 is_null=0 */
4568 ### @2='VARCHAR-02-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4569 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4570 ### UPDATE `test`.`t2`
4571 ### WHERE
4572 ### @1='2008:02:03' /* DATE meta=0 nullable=1 is_null=0 */
4573 ### @2='VARCHAR-02-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4574 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4575 ### SET
4576 ### @1='2028:02:03' /* DATE meta=0 nullable=1 is_null=0 */
4577 ### @2='VARCHAR-02-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4578 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4579 ### UPDATE `test`.`t2`
4580 ### WHERE
4581 ### @1='2008:02:04' /* DATE meta=0 nullable=1 is_null=0 */
4582 ### @2='VARCHAR-02-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4583 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4584 ### SET
4585 ### @1='2028:02:04' /* DATE meta=0 nullable=1 is_null=0 */
4586 ### @2='VARCHAR-02-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4587 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4588 ### UPDATE `test`.`t2`
4589 ### WHERE
4590 ### @1='2008:02:05' /* DATE meta=0 nullable=1 is_null=0 */
4591 ### @2='VARCHAR-02-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4592 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4593 ### SET
4594 ### @1='2028:02:05' /* DATE meta=0 nullable=1 is_null=0 */
4595 ### @2='VARCHAR-02-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4596 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4597 ### UPDATE `test`.`t2`
4598 ### WHERE
4599 ### @1='2008:02:06' /* DATE meta=0 nullable=1 is_null=0 */
4600 ### @2='VARCHAR-02-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4601 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4602 ### SET
4603 ### @1='2028:02:06' /* DATE meta=0 nullable=1 is_null=0 */
4604 ### @2='VARCHAR-02-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4605 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4606 ### UPDATE `test`.`t2`
4607 ### WHERE
4608 ### @1='2008:02:07' /* DATE meta=0 nullable=1 is_null=0 */
4609 ### @2='VARCHAR-02-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4610 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4611 ### SET
4612 ### @1='2028:02:07' /* DATE meta=0 nullable=1 is_null=0 */
4613 ### @2='VARCHAR-02-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4614 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4615 ### UPDATE `test`.`t3`
4616 ### WHERE
4617 ### @1='2008:03:02' /* DATE meta=0 nullable=1 is_null=0 */
4618 ### @2='VARCHAR-03-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4619 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4620 ### SET
4621 ### @1='2038:03:02' /* DATE meta=0 nullable=1 is_null=0 */
4622 ### @2='VARCHAR-03-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4623 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4624 ### UPDATE `test`.`t3`
4625 ### WHERE
4626 ### @1='2008:03:03' /* DATE meta=0 nullable=1 is_null=0 */
4627 ### @2='VARCHAR-03-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4628 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4629 ### SET
4630 ### @1='2038:03:03' /* DATE meta=0 nullable=1 is_null=0 */
4631 ### @2='VARCHAR-03-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4632 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4633 ### UPDATE `test`.`t3`
4634 ### WHERE
4635 ### @1='2008:03:04' /* DATE meta=0 nullable=1 is_null=0 */
4636 ### @2='VARCHAR-03-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4637 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4638 ### SET
4639 ### @1='2038:03:04' /* DATE meta=0 nullable=1 is_null=0 */
4640 ### @2='VARCHAR-03-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4641 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4642 ### UPDATE `test`.`t3`
4643 ### WHERE
4644 ### @1='2008:03:05' /* DATE meta=0 nullable=1 is_null=0 */
4645 ### @2='VARCHAR-03-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4646 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4647 ### SET
4648 ### @1='2038:03:05' /* DATE meta=0 nullable=1 is_null=0 */
4649 ### @2='VARCHAR-03-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4650 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4651 ### UPDATE `test`.`t3`
4652 ### WHERE
4653 ### @1='2008:03:06' /* DATE meta=0 nullable=1 is_null=0 */
4654 ### @2='VARCHAR-03-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4655 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4656 ### SET
4657 ### @1='2038:03:06' /* DATE meta=0 nullable=1 is_null=0 */
4658 ### @2='VARCHAR-03-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4659 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4660 ### UPDATE `test`.`t3`
4661 ### WHERE
4662 ### @1='2008:03:07' /* DATE meta=0 nullable=1 is_null=0 */
4663 ### @2='VARCHAR-03-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4664 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4665 ### SET
4666 ### @1='2038:03:07' /* DATE meta=0 nullable=1 is_null=0 */
4667 ### @2='VARCHAR-03-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4668 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4669 # at #
4670 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4671 SET TIMESTAMP=1000000000/*!*/;
4672 COMMIT
4673 /*!*/;
4674 # at #
4675 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4676 SET TIMESTAMP=1000000000/*!*/;
4677 BEGIN
4678 /*!*/;
4679 # at #
4680 # at #
4681 # at #
4682 # at #
4683 # at #
4684 # at #
4685 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
4686 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t2` mapped to number #
4687 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t3` mapped to number #
4688 #010909 4:46:40 server id 1 end_log_pos # Delete_rows: table id #
4689 #010909 4:46:40 server id 1 end_log_pos # Delete_rows: table id #
4690 #010909 4:46:40 server id 1 end_log_pos # Delete_rows: table id # flags: STMT_END_F
4691 ### DELETE FROM `test`.`t1`
4692 ### WHERE
4693 ### @1='2018:01:02' /* DATE meta=0 nullable=1 is_null=0 */
4694 ### @2='VARCHAR-01-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4695 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4696 ### DELETE FROM `test`.`t1`
4697 ### WHERE
4698 ### @1='2018:01:03' /* DATE meta=0 nullable=1 is_null=0 */
4699 ### @2='VARCHAR-01-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4700 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4701 ### DELETE FROM `test`.`t1`
4702 ### WHERE
4703 ### @1='2018:01:04' /* DATE meta=0 nullable=1 is_null=0 */
4704 ### @2='VARCHAR-01-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4705 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4706 ### DELETE FROM `test`.`t1`
4707 ### WHERE
4708 ### @1='2018:01:05' /* DATE meta=0 nullable=1 is_null=0 */
4709 ### @2='VARCHAR-01-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4710 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4711 ### DELETE FROM `test`.`t1`
4712 ### WHERE
4713 ### @1='2018:01:06' /* DATE meta=0 nullable=1 is_null=0 */
4714 ### @2='VARCHAR-01-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4715 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4716 ### DELETE FROM `test`.`t1`
4717 ### WHERE
4718 ### @1='2018:01:07' /* DATE meta=0 nullable=1 is_null=0 */
4719 ### @2='VARCHAR-01-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4720 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4721 ### DELETE FROM `test`.`t2`
4722 ### WHERE
4723 ### @1='2028:02:02' /* DATE meta=0 nullable=1 is_null=0 */
4724 ### @2='VARCHAR-02-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4725 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4726 ### DELETE FROM `test`.`t2`
4727 ### WHERE
4728 ### @1='2028:02:03' /* DATE meta=0 nullable=1 is_null=0 */
4729 ### @2='VARCHAR-02-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4730 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4731 ### DELETE FROM `test`.`t2`
4732 ### WHERE
4733 ### @1='2028:02:04' /* DATE meta=0 nullable=1 is_null=0 */
4734 ### @2='VARCHAR-02-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4735 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4736 ### DELETE FROM `test`.`t2`
4737 ### WHERE
4738 ### @1='2028:02:05' /* DATE meta=0 nullable=1 is_null=0 */
4739 ### @2='VARCHAR-02-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4740 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4741 ### DELETE FROM `test`.`t2`
4742 ### WHERE
4743 ### @1='2028:02:06' /* DATE meta=0 nullable=1 is_null=0 */
4744 ### @2='VARCHAR-02-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4745 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4746 ### DELETE FROM `test`.`t2`
4747 ### WHERE
4748 ### @1='2028:02:07' /* DATE meta=0 nullable=1 is_null=0 */
4749 ### @2='VARCHAR-02-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4750 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4751 ### DELETE FROM `test`.`t3`
4752 ### WHERE
4753 ### @1='2038:03:02' /* DATE meta=0 nullable=1 is_null=0 */
4754 ### @2='VARCHAR-03-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4755 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4756 ### DELETE FROM `test`.`t3`
4757 ### WHERE
4758 ### @1='2038:03:03' /* DATE meta=0 nullable=1 is_null=0 */
4759 ### @2='VARCHAR-03-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4760 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4761 ### DELETE FROM `test`.`t3`
4762 ### WHERE
4763 ### @1='2038:03:04' /* DATE meta=0 nullable=1 is_null=0 */
4764 ### @2='VARCHAR-03-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4765 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4766 ### DELETE FROM `test`.`t3`
4767 ### WHERE
4768 ### @1='2038:03:05' /* DATE meta=0 nullable=1 is_null=0 */
4769 ### @2='VARCHAR-03-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4770 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4771 ### DELETE FROM `test`.`t3`
4772 ### WHERE
4773 ### @1='2038:03:06' /* DATE meta=0 nullable=1 is_null=0 */
4774 ### @2='VARCHAR-03-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4775 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4776 ### DELETE FROM `test`.`t3`
4777 ### WHERE
4778 ### @1='2038:03:07' /* DATE meta=0 nullable=1 is_null=0 */
4779 ### @2='VARCHAR-03-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4780 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4781 # at #
4782 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4783 SET TIMESTAMP=1000000000/*!*/;
4784 COMMIT
4785 /*!*/;
4786 # at #
4787 #010909 4:46:40 server id 1 end_log_pos # Rotate to master-bin.000002 pos: 4
4788 DELIMITER ;
4789 # End of log file
4790 ROLLBACK /* added by mysqlbinlog */;
4791 /*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
4792 /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;
4793 #
4794 # Cleanup.
4795 #
4796 DROP TABLE t1, t2, t3;
4797 #
4798 # ===========================
4799 # Test #4 - LOAD DATA INFILE.
4800 # ===========================
4801 #
4802 # Delete all existing binary logs.
4803 #
4804 RESET MASTER;
4805 #
4806 # Create a test table with selected data types.
4807 #
4808 CREATE TABLE t1 (
4809 c1 INT DEFAULT 100,
4810 c2 INT,
4811 c3 VARCHAR(60)
4812 ) ENGINE=MyISAM DEFAULT CHARSET latin1;
4813 #
4814 # Show how much rows are affected by each statement.
4815 #
4816 #
4817 # Load data.
4818 #
4819 LOAD DATA INFILE '../../std_data/loaddata5.dat'
4820 INTO TABLE t1 FIELDS TERMINATED BY '' ENCLOSED BY '' (c1,c2)
4821 SET c3 = 'Wow';
4822 affected rows: 3
4823 info: Records: 3 Deleted: 0 Skipped: 0 Warnings: 0
4824 #
4825 # Show what we have in the table.
4826 #
4827 SELECT * FROM t1;
4828 c1 c2 c3
4829 1 2 Wow
4830 3 4 Wow
4831 5 6 Wow
4832 affected rows: 3
4833 #
4834 # Hide how much rows are affected by each statement.
4835 #
4836 #
4837 # Flush all log buffers to the log file.
4838 #
4839 FLUSH LOGS;
4840 #
4841 # Call mysqlbinlog to display the log file contents.
4842 #
4843 /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/;
4844 /*!40019 SET @@session.max_insert_delayed_threads=0*/;
4845 /*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
4846 DELIMITER /*!*/;
4847 # at #
4848 #010909 4:46:40 server id 1 end_log_pos # Start: binlog v 4, server v #.##.## created 010909 4:…
4849 ROLLBACK/*!*/;
4850 # at #
4851 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4852 use `test`/*!*/;
4853 SET TIMESTAMP=1000000000/*!*/;
4854 SET @@session.pseudo_thread_id=#/*!*/;
4855 SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@sess…
4856 SET @@session.sql_mode=0/*!*/;
4857 SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
4858 /*!\C utf8 *//*!*/;
4859 SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=…
4860 SET @@session.lc_time_names=0/*!*/;
4861 SET @@session.collation_database=DEFAULT/*!*/;
4862 CREATE TABLE t1 (
4863 c1 INT DEFAULT 100,
4864 c2 INT,
4865 c3 VARCHAR(60)
4866 ) ENGINE=MyISAM DEFAULT CHARSET latin1
4867 /*!*/;
4868 # at #
4869 #010909 4:46:40 server id 1 end_log_pos # Query thread_id=# exec_time=# error_code=0
4870 SET TIMESTAMP=1000000000/*!*/;
4871 BEGIN
4872 /*!*/;
4873 # at #
4874 # at #
4875 #010909 4:46:40 server id 1 end_log_pos # Table_map: `test`.`t1` mapped to number #
4876 #010909 4:46:40 server id 1 end_log_pos # Write_rows: table id # flags: STMT_END_F
4877 ### INSERT INTO `test`.`t1`
4878 ### SET
4879 ### @1=1 /* INT meta=0 nullable=1 is_null=0 */
4880 ### @2=2 /* INT meta=0 nullable=1 is_null=0 */
4881 ### @3='Wow' /* VARSTRING(60) meta=60 nullable=1 is_null=0 */
4882 ### INSERT INTO `test`.`t1`
4883 ### SET
4884 ### @1=3 /* INT meta=0 nullable=1 is_null=0 */
4885 ### @2=4 /* INT meta=0 nullable=1 is_null=0 */
4886 ### @3='Wow' /* VARSTRING(60) meta=60 nullable=1 is_null=0 */
4887 ### INSERT INTO `test`.`t1`
4888 ### SET
4889 ### @1=5 /* INT meta=0 nullable=1 is_null=0 */
4890 ### @2=6 /* INT meta=0 nullable=1 is_null=0 */
4891 ### @3='Wow' /* VARSTRING(60) meta=60 nullable=1 is_null=0 */