Lines Matching refs:c_3_2

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=InnoDB 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 include/mysqlbinlog.inc
2249 /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/;
2250 /*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
2251 DELIMITER /*!*/;
2252 # at #
2253 # # server id # end_log_pos # CRC32 # Start: binlog v #, server v # created # at startup
2254 ROLLBACK/*!*/;
2255 # at #
2256 # # server id # end_log_pos # CRC32 # Previous-GTIDs
2257 # [empty]
2258 # at #
2259 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=no
2260 SET @@SESSION.GTID_NEXT= '#'/*!*/;
2261 # at #
2262 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
2263 use `test`/*!*/;
2264 SET TIMESTAMP=#/*!*/;
2265 SET @@session.pseudo_thread_id=#/*!*/;
2266 SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@sess…
2267 SET @@session.sql_mode=1436549152/*!*/;
2268 SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
2269 /*!\C utf8 *//*!*/;
2270 SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=…
2271 SET @@session.lc_time_names=0/*!*/;
2272 SET @@session.collation_database=DEFAULT/*!*/;
2273 SET @@session.explicit_defaults_for_timestamp=0/*!*/;
2274 CREATE TABLE t1 (
2275 c01 BIT,
2276 c02 BIT(64),
2277 c03 TINYINT,
2278 c04 TINYINT UNSIGNED,
2279 c05 TINYINT ZEROFILL,
2280 c06 BOOL,
2281 c07 SMALLINT,
2282 c08 SMALLINT UNSIGNED,
2283 c09 SMALLINT ZEROFILL,
2284 c10 MEDIUMINT,
2285 c11 MEDIUMINT UNSIGNED,
2286 c12 MEDIUMINT ZEROFILL,
2287 c13 INT,
2288 c14 INT UNSIGNED,
2289 c15 INT ZEROFILL,
2290 c16 BIGINT,
2291 c17 BIGINT UNSIGNED,
2292 c18 BIGINT ZEROFILL,
2293 c19 FLOAT,
2294 c20 FLOAT UNSIGNED,
2295 c21 FLOAT ZEROFILL,
2296 c22 DOUBLE,
2297 c23 DOUBLE UNSIGNED,
2298 c24 DOUBLE ZEROFILL,
2299 c25 DECIMAL,
2300 c26 DECIMAL UNSIGNED,
2301 c27 DECIMAL ZEROFILL,
2302 #
2303 c28 DATE,
2304 c29 DATETIME,
2305 c30 TIMESTAMP,
2306 c31 TIME,
2307 c32 YEAR,
2308 #
2309 c33 CHAR,
2310 c34 CHAR(0),
2311 c35 CHAR(1),
2312 c36 CHAR(255),
2313 c37 NATIONAL CHAR,
2314 c38 NATIONAL CHAR(0),
2315 c39 NATIONAL CHAR(1),
2316 c40 NATIONAL CHAR(255),
2317 c41 CHAR CHARACTER SET UCS2,
2318 c42 CHAR(0) CHARACTER SET UCS2,
2319 c43 CHAR(1) CHARACTER SET UCS2,
2320 c44 CHAR(255) CHARACTER SET UCS2,
2321 #
2322 c45 VARCHAR(0),
2323 c46 VARCHAR(1),
2324 c47 VARCHAR(255),
2325 c48 VARCHAR(261),
2326 c49 NATIONAL VARCHAR(0),
2327 c50 NATIONAL VARCHAR(1),
2328 c51 NATIONAL VARCHAR(255),
2329 c52 NATIONAL VARCHAR(261),
2330 c53 VARCHAR(0) CHARACTER SET UCS2,
2331 c54 VARCHAR(1) CHARACTER SET UCS2,
2332 c55 VARCHAR(255) CHARACTER SET UCS2,
2333 c56 VARCHAR(261) CHARACTER SET UCS2,
2334 #
2335 c57 BINARY,
2336 c58 BINARY(0),
2337 c59 BINARY(1),
2338 c60 BINARY(255),
2339 #
2340 c61 VARBINARY(0),
2341 c62 VARBINARY(1),
2342 c63 VARBINARY(255),
2343 c64 VARBINARY(261),
2344 #
2345 c65 TINYBLOB,
2346 c66 TINYTEXT,
2347 c67 TINYTEXT CHARACTER SET UCS2,
2348 c68 BLOB,
2349 c69 TEXT,
2350 c70 TEXT CHARACTER SET UCS2,
2351 c71 MEDIUMBLOB,
2352 c72 MEDIUMTEXT,
2353 c73 MEDIUMTEXT CHARACTER SET UCS2,
2354 c74 LONGBLOB,
2355 c75 LONGTEXT,
2356 c76 LONGTEXT CHARACTER SET UCS2,
2357 #
2358 c77 ENUM('a','b','c'),
2359 c78 SET('a','b','c'),
2360 #
2361 crn INT -- row number
2362 ) ENGINE=InnoDB DEFAULT CHARSET latin1
2363 /*!*/;
2364 # at #
2365 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=yes
2366 /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;
2367 SET @@SESSION.GTID_NEXT= '#'/*!*/;
2368 # at #
2369 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
2370 SET TIMESTAMP=#/*!*/;
2371 SET @@session.time_zone='SYSTEM'/*!*/;
2372 BEGIN
2373 /*!*/;
2374 # at #
2375 # # server id # end_log_pos # CRC32 # Table_map: `test`.`t1` mapped to number #
2376 # at #
2377 # # server id # end_log_pos # CRC32 # Write_rows: table id # flags: STMT_END_F
2378 ### INSERT INTO `test`.`t1`
2379 ### SET
2380 ### @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
2381 ### @2=b'0000000000000000000000000000000000000000000000000000000000000000' /* BIT(64) meta=2048 n…
2382 ### @3=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
2383 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2384 ### @5=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2385 ### @6=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2386 ### @7=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
2387 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2388 ### @9=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2389 ### @10=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2390 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2391 ### @12=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2392 ### @13=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
2393 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
2394 ### @15=0 /* INT meta=0 nullable=1 is_null=0 */
2395 ### @16=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
2396 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2397 ### @18=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2398 ### @19=-3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2399 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
2400 ### @21=0 /* FLOAT meta=4 nullable=1 is_null=0 */
2401 ### @22=-1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2402 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
2403 ### @24=0 /* DOUBLE meta=8 nullable=1 is_null=0 */
2404 ### @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2405 ### @26=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2406 ### @27=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2407 ### @28='1000:01:01' /* DATE meta=0 nullable=1 is_null=0 */
2408 ### @29='1000-01-01 00:00:00' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
2409 ### @30=75601 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
2410 ### @31='-838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
2411 ### @32=1901 /* YEAR meta=0 nullable=1 is_null=0 */
2412 ### @33='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2413 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2414 ### @35='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2415 ### @36='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2416 ### @37='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2417 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2418 ### @39='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2419 ### @40='' /* STRING(765) meta=57085 nullable=1 is_null=0 */
2420 ### @41='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2421 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2422 ### @43='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2423 ### @44='' /* STRING(510) meta=61182 nullable=1 is_null=0 */
2424 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2425 ### @46='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2426 ### @47='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2427 ### @48='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2428 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2429 ### @50='' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2430 ### @51='' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
2431 ### @52='' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
2432 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2433 ### @54='' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2434 ### @55='' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
2435 ### @56='' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
2436 ### @57='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2437 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2438 ### @59='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2439 ### @60='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2440 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2441 ### @62='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2442 ### @63='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2443 ### @64='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2444 ### @65='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2445 ### @66='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2446 ### @67='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2447 ### @68='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2448 ### @69='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2449 ### @70='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2450 ### @71='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2451 ### @72='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2452 ### @73='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2453 ### @74='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2454 ### @75='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2455 ### @76='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2456 ### @77=1 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2457 ### @78=b'00000000' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2458 ### @79=1 /* INT meta=0 nullable=1 is_null=0 */
2459 # at #
2460 # # server id # end_log_pos # CRC32 # Xid = #
2461 COMMIT/*!*/;
2462 # at #
2463 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=yes
2464 /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;
2465 SET @@SESSION.GTID_NEXT= '#'/*!*/;
2466 # at #
2467 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
2468 SET TIMESTAMP=#/*!*/;
2469 BEGIN
2470 /*!*/;
2471 # at #
2472 # # server id # end_log_pos # CRC32 # Table_map: `test`.`t1` mapped to number #
2473 # at #
2474 # # server id # end_log_pos # CRC32 # Write_rows: table id # flags: STMT_END_F
2475 ### INSERT INTO `test`.`t1`
2476 ### SET
2477 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
2478 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
2479 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
2480 ### @4=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2481 ### @5=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2482 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2483 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
2484 ### @8=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2485 ### @9=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2486 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2487 ### @11=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2488 ### @12=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2489 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
2490 ### @14=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2491 ### @15=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2492 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
2493 ### @17=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2494 ### @18=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2495 ### @19=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2496 ### @20=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2497 ### @21=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2498 ### @22=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2499 ### @23=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2500 ### @24=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2501 ### @25=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2502 ### @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2503 ### @27=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2504 ### @28='9999:12:31' /* DATE meta=0 nullable=1 is_null=0 */
2505 ### @29='9999-12-31 23:59:59' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
2506 ### @30=2146522447 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
2507 ### @31='838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
2508 ### @32=2155 /* YEAR meta=0 nullable=1 is_null=0 */
2509 ### @33='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2510 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2511 ### @35='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2512 ### @36='����������������������������������������������������������������������������������������…
2513 ### @37='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2514 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2515 ### @39='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2516 ### @40='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
2517 ### @41='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2518 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2519 ### @43='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2520 ### @44='����������������������������������������������������������������������������������������…
2521 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2522 ### @46='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2523 ### @47='����������������������������������������������������������������������������������������…
2524 ### @48='����������������������������������������������������������������������������������������…
2525 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2526 ### @50='￿' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2527 ### @51='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
2528 ### @52='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
2529 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2530 ### @54='��' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2531 ### @55='����������������������������������������������������������������������������������������…
2532 ### @56='����������������������������������������������������������������������������������������…
2533 ### @57='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2534 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2535 ### @59='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2536 ### @60='����������������������������������������������������������������������������������������…
2537 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2538 ### @62='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2539 ### @63='����������������������������������������������������������������������������������������…
2540 ### @64='����������������������������������������������������������������������������������������…
2541 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2542 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2543 ### @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT …
2544 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2545 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2546 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
2547 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2548 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2549 ### @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBL…
2550 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2551 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2552 ### @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT …
2553 ### @77=3 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2554 ### @78=b'00000111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2555 ### @79=2 /* INT meta=0 nullable=1 is_null=0 */
2556 # at #
2557 # # server id # end_log_pos # CRC32 # Xid = #
2558 COMMIT/*!*/;
2559 # at #
2560 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=yes
2561 /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;
2562 SET @@SESSION.GTID_NEXT= '#'/*!*/;
2563 # at #
2564 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
2565 SET TIMESTAMP=#/*!*/;
2566 BEGIN
2567 /*!*/;
2568 # at #
2569 # # server id # end_log_pos # CRC32 # Table_map: `test`.`t1` mapped to number #
2570 # at #
2571 # # server id # end_log_pos # CRC32 # Write_rows: table id # flags: STMT_END_F
2572 ### INSERT INTO `test`.`t1`
2573 ### SET
2574 ### @1=NULL /* BIT(1) meta=1 nullable=1 is_null=1 */
2575 ### @2=NULL /* BIT(64) meta=2048 nullable=1 is_null=1 */
2576 ### @3=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
2577 ### @4=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
2578 ### @5=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
2579 ### @6=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
2580 ### @7=NULL /* SHORTINT meta=0 nullable=1 is_null=1 */
2581 ### @8=NULL /* SHORTINT meta=0 nullable=1 is_null=1 */
2582 ### @9=NULL /* SHORTINT meta=0 nullable=1 is_null=1 */
2583 ### @10=NULL /* MEDIUMINT meta=0 nullable=1 is_null=1 */
2584 ### @11=NULL /* MEDIUMINT meta=0 nullable=1 is_null=1 */
2585 ### @12=NULL /* MEDIUMINT meta=0 nullable=1 is_null=1 */
2586 ### @13=NULL /* INT meta=0 nullable=1 is_null=1 */
2587 ### @14=NULL /* INT meta=0 nullable=1 is_null=1 */
2588 ### @15=NULL /* INT meta=0 nullable=1 is_null=1 */
2589 ### @16=NULL /* LONGINT meta=0 nullable=1 is_null=1 */
2590 ### @17=NULL /* LONGINT meta=0 nullable=1 is_null=1 */
2591 ### @18=NULL /* LONGINT meta=0 nullable=1 is_null=1 */
2592 ### @19=NULL /* FLOAT meta=4 nullable=1 is_null=1 */
2593 ### @20=NULL /* FLOAT meta=4 nullable=1 is_null=1 */
2594 ### @21=NULL /* FLOAT meta=4 nullable=1 is_null=1 */
2595 ### @22=NULL /* DOUBLE meta=8 nullable=1 is_null=1 */
2596 ### @23=NULL /* DOUBLE meta=8 nullable=1 is_null=1 */
2597 ### @24=NULL /* DOUBLE meta=8 nullable=1 is_null=1 */
2598 ### @25=NULL /* DECIMAL(10,0) meta=2560 nullable=1 is_null=1 */
2599 ### @26=NULL /* DECIMAL(10,0) meta=2560 nullable=1 is_null=1 */
2600 ### @27=NULL /* DECIMAL(10,0) meta=2560 nullable=1 is_null=1 */
2601 ### @28=NULL /* DATE meta=0 nullable=1 is_null=1 */
2602 ### @29=NULL /* DATETIME(0) meta=0 nullable=1 is_null=1 */
2603 ### @30=1000000000 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
2604 ### @31=NULL /* TIME(0) meta=0 nullable=1 is_null=1 */
2605 ### @32=NULL /* YEAR meta=0 nullable=1 is_null=1 */
2606 ### @33=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
2607 ### @34=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
2608 ### @35=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
2609 ### @36=NULL /* STRING(255) meta=65279 nullable=1 is_null=1 */
2610 ### @37=NULL /* STRING(3) meta=65027 nullable=1 is_null=1 */
2611 ### @38=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
2612 ### @39=NULL /* STRING(3) meta=65027 nullable=1 is_null=1 */
2613 ### @40=NULL /* STRING(765) meta=57085 nullable=1 is_null=1 */
2614 ### @41=NULL /* STRING(2) meta=65026 nullable=1 is_null=1 */
2615 ### @42=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
2616 ### @43=NULL /* STRING(2) meta=65026 nullable=1 is_null=1 */
2617 ### @44=NULL /* STRING(510) meta=61182 nullable=1 is_null=1 */
2618 ### @45=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
2619 ### @46=NULL /* VARSTRING(1) meta=1 nullable=1 is_null=1 */
2620 ### @47=NULL /* VARSTRING(255) meta=255 nullable=1 is_null=1 */
2621 ### @48=NULL /* VARSTRING(261) meta=261 nullable=1 is_null=1 */
2622 ### @49=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
2623 ### @50=NULL /* VARSTRING(3) meta=3 nullable=1 is_null=1 */
2624 ### @51=NULL /* VARSTRING(765) meta=765 nullable=1 is_null=1 */
2625 ### @52=NULL /* VARSTRING(783) meta=783 nullable=1 is_null=1 */
2626 ### @53=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
2627 ### @54=NULL /* VARSTRING(2) meta=2 nullable=1 is_null=1 */
2628 ### @55=NULL /* VARSTRING(510) meta=510 nullable=1 is_null=1 */
2629 ### @56=NULL /* VARSTRING(522) meta=522 nullable=1 is_null=1 */
2630 ### @57=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
2631 ### @58=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
2632 ### @59=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
2633 ### @60=NULL /* STRING(255) meta=65279 nullable=1 is_null=1 */
2634 ### @61=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
2635 ### @62=NULL /* VARSTRING(1) meta=1 nullable=1 is_null=1 */
2636 ### @63=NULL /* VARSTRING(255) meta=255 nullable=1 is_null=1 */
2637 ### @64=NULL /* VARSTRING(261) meta=261 nullable=1 is_null=1 */
2638 ### @65=NULL /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=1 */
2639 ### @66=NULL /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=1 */
2640 ### @67=NULL /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=1 */
2641 ### @68=NULL /* BLOB/TEXT meta=2 nullable=1 is_null=1 */
2642 ### @69=NULL /* BLOB/TEXT meta=2 nullable=1 is_null=1 */
2643 ### @70=NULL /* BLOB/TEXT meta=2 nullable=1 is_null=1 */
2644 ### @71=NULL /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=1 */
2645 ### @72=NULL /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=1 */
2646 ### @73=NULL /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=1 */
2647 ### @74=NULL /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=1 */
2648 ### @75=NULL /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=1 */
2649 ### @76=NULL /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=1 */
2650 ### @77=NULL /* ENUM(1 byte) meta=63233 nullable=1 is_null=1 */
2651 ### @78=NULL /* SET(1 bytes) meta=63489 nullable=1 is_null=1 */
2652 ### @79=3 /* INT meta=0 nullable=1 is_null=0 */
2653 ### INSERT INTO `test`.`t1`
2654 ### SET
2655 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
2656 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
2657 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
2658 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2659 ### @5=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2660 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2661 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
2662 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2663 ### @9=1 /* SHORTINT meta=0 nullable=1 is_null=0 */
2664 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2665 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2666 ### @12=1 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2667 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
2668 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
2669 ### @15=1 /* INT meta=0 nullable=1 is_null=0 */
2670 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
2671 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2672 ### @18=1 /* LONGINT meta=0 nullable=1 is_null=0 */
2673 ### @19=-1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
2674 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
2675 ### @21=1 /* FLOAT meta=4 nullable=1 is_null=0 */
2676 ### @22=-2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
2677 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
2678 ### @24=1 /* DOUBLE meta=8 nullable=1 is_null=0 */
2679 ### @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2680 ### @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2681 ### @27=1 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2682 ### @28='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
2683 ### @29='2008-08-04 16:18:06' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
2684 ### @30=1217855904 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
2685 ### @31='16:18:47' /* TIME(0) meta=0 nullable=1 is_null=0 */
2686 ### @32=2008 /* YEAR meta=0 nullable=1 is_null=0 */
2687 ### @33='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2688 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2689 ### @35='e' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2690 ### @36='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii…
2691 ### @37='ä' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2692 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2693 ### @39='ö' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2694 ### @40='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
2695 ### @41='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2696 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2697 ### @43='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2698 ### @44='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x0…
2699 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2700 ### @46='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2701 ### @47='eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee…
2702 ### @48='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii…
2703 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2704 ### @50='ä' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2705 ### @51='öööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö…
2706 ### @52='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
2707 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2708 ### @54='\x00�' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2709 ### @55='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x0…
2710 ### @56='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x0…
2711 ### @57='0' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2712 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2713 ### @59='1' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2714 ### @60='1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111…
2715 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2716 ### @62='b' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2717 ### @63='cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc…
2718 ### @64='\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27…
2719 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2720 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2721 ### @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT …
2722 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2723 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2724 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
2725 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2726 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2727 ### @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBL…
2728 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2729 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2730 ### @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT …
2731 ### @77=2 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2732 ### @78=b'00000110' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2733 ### @79=4 /* INT meta=0 nullable=1 is_null=0 */
2734 # at #
2735 # # server id # end_log_pos # CRC32 # Xid = #
2736 COMMIT/*!*/;
2737 # at #
2738 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=yes
2739 /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;
2740 SET @@SESSION.GTID_NEXT= '#'/*!*/;
2741 # at #
2742 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
2743 SET TIMESTAMP=#/*!*/;
2744 BEGIN
2745 /*!*/;
2746 # at #
2747 # # server id # end_log_pos # CRC32 # Table_map: `test`.`t1` mapped to number #
2748 # at #
2749 # # server id # end_log_pos # CRC32 # Update_rows: table id # flags: STMT_END_F
2750 ### UPDATE `test`.`t1`
2751 ### WHERE
2752 ### @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
2753 ### @2=b'0000000000000000000000000000000000000000000000000000000000000000' /* BIT(64) meta=2048 n…
2754 ### @3=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
2755 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2756 ### @5=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2757 ### @6=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2758 ### @7=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
2759 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2760 ### @9=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2761 ### @10=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2762 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2763 ### @12=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2764 ### @13=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
2765 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
2766 ### @15=0 /* INT meta=0 nullable=1 is_null=0 */
2767 ### @16=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
2768 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2769 ### @18=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2770 ### @19=-3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2771 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
2772 ### @21=0 /* FLOAT meta=4 nullable=1 is_null=0 */
2773 ### @22=-1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2774 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
2775 ### @24=0 /* DOUBLE meta=8 nullable=1 is_null=0 */
2776 ### @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2777 ### @26=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2778 ### @27=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2779 ### @28='1000:01:01' /* DATE meta=0 nullable=1 is_null=0 */
2780 ### @29='1000-01-01 00:00:00' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
2781 ### @30=75601 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
2782 ### @31='-838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
2783 ### @32=1901 /* YEAR meta=0 nullable=1 is_null=0 */
2784 ### @33='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2785 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2786 ### @35='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2787 ### @36='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2788 ### @37='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2789 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2790 ### @39='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2791 ### @40='' /* STRING(765) meta=57085 nullable=1 is_null=0 */
2792 ### @41='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2793 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2794 ### @43='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2795 ### @44='' /* STRING(510) meta=61182 nullable=1 is_null=0 */
2796 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2797 ### @46='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2798 ### @47='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2799 ### @48='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2800 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2801 ### @50='' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2802 ### @51='' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
2803 ### @52='' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
2804 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2805 ### @54='' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2806 ### @55='' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
2807 ### @56='' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
2808 ### @57='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2809 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2810 ### @59='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2811 ### @60='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2812 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2813 ### @62='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2814 ### @63='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2815 ### @64='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2816 ### @65='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2817 ### @66='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2818 ### @67='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2819 ### @68='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2820 ### @69='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2821 ### @70='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2822 ### @71='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2823 ### @72='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2824 ### @73='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2825 ### @74='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2826 ### @75='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2827 ### @76='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2828 ### @77=1 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2829 ### @78=b'00000000' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2830 ### @79=1 /* INT meta=0 nullable=1 is_null=0 */
2831 ### SET
2832 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
2833 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
2834 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
2835 ### @4=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2836 ### @5=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2837 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2838 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
2839 ### @8=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2840 ### @9=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2841 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2842 ### @11=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2843 ### @12=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2844 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
2845 ### @14=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2846 ### @15=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2847 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
2848 ### @17=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2849 ### @18=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2850 ### @19=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2851 ### @20=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2852 ### @21=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2853 ### @22=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2854 ### @23=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2855 ### @24=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2856 ### @25=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2857 ### @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2858 ### @27=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2859 ### @28='9999:12:31' /* DATE meta=0 nullable=1 is_null=0 */
2860 ### @29='9999-12-31 23:59:59' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
2861 ### @30=2146522447 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
2862 ### @31='838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
2863 ### @32=2155 /* YEAR meta=0 nullable=1 is_null=0 */
2864 ### @33='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2865 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2866 ### @35='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2867 ### @36='����������������������������������������������������������������������������������������…
2868 ### @37='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2869 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2870 ### @39='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2871 ### @40='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
2872 ### @41='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2873 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2874 ### @43='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2875 ### @44='����������������������������������������������������������������������������������������…
2876 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2877 ### @46='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2878 ### @47='����������������������������������������������������������������������������������������…
2879 ### @48='����������������������������������������������������������������������������������������…
2880 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2881 ### @50='￿' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2882 ### @51='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
2883 ### @52='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
2884 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2885 ### @54='��' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2886 ### @55='����������������������������������������������������������������������������������������…
2887 ### @56='����������������������������������������������������������������������������������������…
2888 ### @57='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2889 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2890 ### @59='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2891 ### @60='����������������������������������������������������������������������������������������…
2892 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2893 ### @62='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2894 ### @63='����������������������������������������������������������������������������������������…
2895 ### @64='����������������������������������������������������������������������������������������…
2896 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2897 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2898 ### @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT …
2899 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2900 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2901 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
2902 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2903 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2904 ### @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBL…
2905 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2906 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2907 ### @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT …
2908 ### @77=3 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2909 ### @78=b'00000111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2910 ### @79=1 /* INT meta=0 nullable=1 is_null=0 */
2911 # at #
2912 # # server id # end_log_pos # CRC32 # Xid = #
2913 COMMIT/*!*/;
2914 # at #
2915 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=yes
2916 /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;
2917 SET @@SESSION.GTID_NEXT= '#'/*!*/;
2918 # at #
2919 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
2920 SET TIMESTAMP=#/*!*/;
2921 BEGIN
2922 /*!*/;
2923 # at #
2924 # # server id # end_log_pos # CRC32 # Table_map: `test`.`t1` mapped to number #
2925 # at #
2926 # # server id # end_log_pos # CRC32 # Update_rows: table id # flags: STMT_END_F
2927 ### UPDATE `test`.`t1`
2928 ### WHERE
2929 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
2930 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
2931 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
2932 ### @4=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2933 ### @5=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2934 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2935 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
2936 ### @8=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2937 ### @9=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2938 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2939 ### @11=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2940 ### @12=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2941 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
2942 ### @14=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2943 ### @15=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2944 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
2945 ### @17=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2946 ### @18=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2947 ### @19=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2948 ### @20=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2949 ### @21=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2950 ### @22=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2951 ### @23=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2952 ### @24=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2953 ### @25=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2954 ### @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2955 ### @27=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2956 ### @28='9999:12:31' /* DATE meta=0 nullable=1 is_null=0 */
2957 ### @29='9999-12-31 23:59:59' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
2958 ### @30=2146522447 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
2959 ### @31='838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
2960 ### @32=2155 /* YEAR meta=0 nullable=1 is_null=0 */
2961 ### @33='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2962 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2963 ### @35='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2964 ### @36='����������������������������������������������������������������������������������������…
2965 ### @37='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2966 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2967 ### @39='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2968 ### @40='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
2969 ### @41='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2970 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2971 ### @43='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2972 ### @44='����������������������������������������������������������������������������������������…
2973 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2974 ### @46='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2975 ### @47='����������������������������������������������������������������������������������������…
2976 ### @48='����������������������������������������������������������������������������������������…
2977 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2978 ### @50='￿' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2979 ### @51='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
2980 ### @52='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
2981 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2982 ### @54='��' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2983 ### @55='����������������������������������������������������������������������������������������…
2984 ### @56='����������������������������������������������������������������������������������������…
2985 ### @57='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2986 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2987 ### @59='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2988 ### @60='����������������������������������������������������������������������������������������…
2989 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2990 ### @62='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2991 ### @63='����������������������������������������������������������������������������������������…
2992 ### @64='����������������������������������������������������������������������������������������…
2993 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2994 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2995 ### @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT …
2996 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2997 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2998 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
2999 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3000 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3001 ### @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBL…
3002 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3003 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3004 ### @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT …
3005 ### @77=3 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3006 ### @78=b'00000111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3007 ### @79=2 /* INT meta=0 nullable=1 is_null=0 */
3008 ### SET
3009 ### @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
3010 ### @2=b'0000000000000000000000000000000000000000000000000000000000000000' /* BIT(64) meta=2048 n…
3011 ### @3=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
3012 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3013 ### @5=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3014 ### @6=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3015 ### @7=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
3016 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3017 ### @9=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3018 ### @10=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3019 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3020 ### @12=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3021 ### @13=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
3022 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
3023 ### @15=0 /* INT meta=0 nullable=1 is_null=0 */
3024 ### @16=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
3025 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3026 ### @18=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3027 ### @19=-3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3028 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3029 ### @21=0 /* FLOAT meta=4 nullable=1 is_null=0 */
3030 ### @22=-1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3031 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3032 ### @24=0 /* DOUBLE meta=8 nullable=1 is_null=0 */
3033 ### @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3034 ### @26=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3035 ### @27=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3036 ### @28='1000:01:01' /* DATE meta=0 nullable=1 is_null=0 */
3037 ### @29='1000-01-01 00:00:00' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
3038 ### @30=75601 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3039 ### @31='-838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
3040 ### @32=1901 /* YEAR meta=0 nullable=1 is_null=0 */
3041 ### @33='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3042 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3043 ### @35='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3044 ### @36='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3045 ### @37='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3046 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3047 ### @39='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3048 ### @40='' /* STRING(765) meta=57085 nullable=1 is_null=0 */
3049 ### @41='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3050 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3051 ### @43='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3052 ### @44='' /* STRING(510) meta=61182 nullable=1 is_null=0 */
3053 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3054 ### @46='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3055 ### @47='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3056 ### @48='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3057 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3058 ### @50='' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3059 ### @51='' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
3060 ### @52='' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
3061 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3062 ### @54='' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3063 ### @55='' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
3064 ### @56='' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
3065 ### @57='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3066 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3067 ### @59='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3068 ### @60='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3069 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3070 ### @62='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3071 ### @63='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3072 ### @64='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3073 ### @65='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3074 ### @66='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3075 ### @67='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3076 ### @68='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3077 ### @69='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3078 ### @70='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3079 ### @71='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3080 ### @72='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3081 ### @73='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3082 ### @74='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3083 ### @75='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3084 ### @76='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3085 ### @77=1 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3086 ### @78=b'00000000' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3087 ### @79=2 /* INT meta=0 nullable=1 is_null=0 */
3088 # at #
3089 # # server id # end_log_pos # CRC32 # Xid = #
3090 COMMIT/*!*/;
3091 # at #
3092 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=yes
3093 /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;
3094 SET @@SESSION.GTID_NEXT= '#'/*!*/;
3095 # at #
3096 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
3097 SET TIMESTAMP=#/*!*/;
3098 BEGIN
3099 /*!*/;
3100 # at #
3101 # # server id # end_log_pos # CRC32 # Table_map: `test`.`t1` mapped to number #
3102 # at #
3103 # # server id # end_log_pos # CRC32 # Update_rows: table id # flags: STMT_END_F
3104 ### UPDATE `test`.`t1`
3105 ### WHERE
3106 ### @1=NULL /* BIT(1) meta=1 nullable=1 is_null=1 */
3107 ### @2=NULL /* BIT(64) meta=2048 nullable=1 is_null=1 */
3108 ### @3=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
3109 ### @4=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
3110 ### @5=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
3111 ### @6=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
3112 ### @7=NULL /* SHORTINT meta=0 nullable=1 is_null=1 */
3113 ### @8=NULL /* SHORTINT meta=0 nullable=1 is_null=1 */
3114 ### @9=NULL /* SHORTINT meta=0 nullable=1 is_null=1 */
3115 ### @10=NULL /* MEDIUMINT meta=0 nullable=1 is_null=1 */
3116 ### @11=NULL /* MEDIUMINT meta=0 nullable=1 is_null=1 */
3117 ### @12=NULL /* MEDIUMINT meta=0 nullable=1 is_null=1 */
3118 ### @13=NULL /* INT meta=0 nullable=1 is_null=1 */
3119 ### @14=NULL /* INT meta=0 nullable=1 is_null=1 */
3120 ### @15=NULL /* INT meta=0 nullable=1 is_null=1 */
3121 ### @16=NULL /* LONGINT meta=0 nullable=1 is_null=1 */
3122 ### @17=NULL /* LONGINT meta=0 nullable=1 is_null=1 */
3123 ### @18=NULL /* LONGINT meta=0 nullable=1 is_null=1 */
3124 ### @19=NULL /* FLOAT meta=4 nullable=1 is_null=1 */
3125 ### @20=NULL /* FLOAT meta=4 nullable=1 is_null=1 */
3126 ### @21=NULL /* FLOAT meta=4 nullable=1 is_null=1 */
3127 ### @22=NULL /* DOUBLE meta=8 nullable=1 is_null=1 */
3128 ### @23=NULL /* DOUBLE meta=8 nullable=1 is_null=1 */
3129 ### @24=NULL /* DOUBLE meta=8 nullable=1 is_null=1 */
3130 ### @25=NULL /* DECIMAL(10,0) meta=2560 nullable=1 is_null=1 */
3131 ### @26=NULL /* DECIMAL(10,0) meta=2560 nullable=1 is_null=1 */
3132 ### @27=NULL /* DECIMAL(10,0) meta=2560 nullable=1 is_null=1 */
3133 ### @28=NULL /* DATE meta=0 nullable=1 is_null=1 */
3134 ### @29=NULL /* DATETIME(0) meta=0 nullable=1 is_null=1 */
3135 ### @30=1000000000 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3136 ### @31=NULL /* TIME(0) meta=0 nullable=1 is_null=1 */
3137 ### @32=NULL /* YEAR meta=0 nullable=1 is_null=1 */
3138 ### @33=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
3139 ### @34=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
3140 ### @35=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
3141 ### @36=NULL /* STRING(255) meta=65279 nullable=1 is_null=1 */
3142 ### @37=NULL /* STRING(3) meta=65027 nullable=1 is_null=1 */
3143 ### @38=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
3144 ### @39=NULL /* STRING(3) meta=65027 nullable=1 is_null=1 */
3145 ### @40=NULL /* STRING(765) meta=57085 nullable=1 is_null=1 */
3146 ### @41=NULL /* STRING(2) meta=65026 nullable=1 is_null=1 */
3147 ### @42=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
3148 ### @43=NULL /* STRING(2) meta=65026 nullable=1 is_null=1 */
3149 ### @44=NULL /* STRING(510) meta=61182 nullable=1 is_null=1 */
3150 ### @45=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
3151 ### @46=NULL /* VARSTRING(1) meta=1 nullable=1 is_null=1 */
3152 ### @47=NULL /* VARSTRING(255) meta=255 nullable=1 is_null=1 */
3153 ### @48=NULL /* VARSTRING(261) meta=261 nullable=1 is_null=1 */
3154 ### @49=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
3155 ### @50=NULL /* VARSTRING(3) meta=3 nullable=1 is_null=1 */
3156 ### @51=NULL /* VARSTRING(765) meta=765 nullable=1 is_null=1 */
3157 ### @52=NULL /* VARSTRING(783) meta=783 nullable=1 is_null=1 */
3158 ### @53=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
3159 ### @54=NULL /* VARSTRING(2) meta=2 nullable=1 is_null=1 */
3160 ### @55=NULL /* VARSTRING(510) meta=510 nullable=1 is_null=1 */
3161 ### @56=NULL /* VARSTRING(522) meta=522 nullable=1 is_null=1 */
3162 ### @57=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
3163 ### @58=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
3164 ### @59=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
3165 ### @60=NULL /* STRING(255) meta=65279 nullable=1 is_null=1 */
3166 ### @61=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
3167 ### @62=NULL /* VARSTRING(1) meta=1 nullable=1 is_null=1 */
3168 ### @63=NULL /* VARSTRING(255) meta=255 nullable=1 is_null=1 */
3169 ### @64=NULL /* VARSTRING(261) meta=261 nullable=1 is_null=1 */
3170 ### @65=NULL /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=1 */
3171 ### @66=NULL /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=1 */
3172 ### @67=NULL /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=1 */
3173 ### @68=NULL /* BLOB/TEXT meta=2 nullable=1 is_null=1 */
3174 ### @69=NULL /* BLOB/TEXT meta=2 nullable=1 is_null=1 */
3175 ### @70=NULL /* BLOB/TEXT meta=2 nullable=1 is_null=1 */
3176 ### @71=NULL /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=1 */
3177 ### @72=NULL /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=1 */
3178 ### @73=NULL /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=1 */
3179 ### @74=NULL /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=1 */
3180 ### @75=NULL /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=1 */
3181 ### @76=NULL /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=1 */
3182 ### @77=NULL /* ENUM(1 byte) meta=63233 nullable=1 is_null=1 */
3183 ### @78=NULL /* SET(1 bytes) meta=63489 nullable=1 is_null=1 */
3184 ### @79=3 /* INT meta=0 nullable=1 is_null=0 */
3185 ### SET
3186 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
3187 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
3188 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
3189 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3190 ### @5=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3191 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3192 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
3193 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3194 ### @9=1 /* SHORTINT meta=0 nullable=1 is_null=0 */
3195 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3196 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3197 ### @12=1 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3198 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
3199 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
3200 ### @15=1 /* INT meta=0 nullable=1 is_null=0 */
3201 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
3202 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3203 ### @18=1 /* LONGINT meta=0 nullable=1 is_null=0 */
3204 ### @19=-1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3205 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3206 ### @21=1 /* FLOAT meta=4 nullable=1 is_null=0 */
3207 ### @22=-2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3208 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3209 ### @24=1 /* DOUBLE meta=8 nullable=1 is_null=0 */
3210 ### @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3211 ### @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3212 ### @27=1 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3213 ### @28='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
3214 ### @29='2008-08-04 16:18:06' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
3215 ### @30=1217855904 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3216 ### @31='16:18:47' /* TIME(0) meta=0 nullable=1 is_null=0 */
3217 ### @32=2008 /* YEAR meta=0 nullable=1 is_null=0 */
3218 ### @33='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3219 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3220 ### @35='e' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3221 ### @36='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii…
3222 ### @37='ä' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3223 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3224 ### @39='ö' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3225 ### @40='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
3226 ### @41='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3227 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3228 ### @43='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3229 ### @44='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x0…
3230 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3231 ### @46='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3232 ### @47='eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee…
3233 ### @48='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii…
3234 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3235 ### @50='ä' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3236 ### @51='öööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö…
3237 ### @52='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
3238 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3239 ### @54='\x00�' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3240 ### @55='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x0…
3241 ### @56='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x0…
3242 ### @57='0' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3243 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3244 ### @59='1' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3245 ### @60='1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111…
3246 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3247 ### @62='b' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3248 ### @63='cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc…
3249 ### @64='\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27…
3250 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3251 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3252 ### @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT …
3253 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3254 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3255 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
3256 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3257 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3258 ### @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBL…
3259 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3260 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3261 ### @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT …
3262 ### @77=2 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3263 ### @78=b'00000110' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3264 ### @79=3 /* INT meta=0 nullable=1 is_null=0 */
3265 # at #
3266 # # server id # end_log_pos # CRC32 # Xid = #
3267 COMMIT/*!*/;
3268 # at #
3269 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=yes
3270 /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;
3271 SET @@SESSION.GTID_NEXT= '#'/*!*/;
3272 # at #
3273 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
3274 SET TIMESTAMP=#/*!*/;
3275 BEGIN
3276 /*!*/;
3277 # at #
3278 # # server id # end_log_pos # CRC32 # Table_map: `test`.`t1` mapped to number #
3279 # at #
3280 # # server id # end_log_pos # CRC32 # Update_rows: table id # flags: STMT_END_F
3281 ### UPDATE `test`.`t1`
3282 ### WHERE
3283 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
3284 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
3285 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
3286 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3287 ### @5=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3288 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3289 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
3290 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3291 ### @9=1 /* SHORTINT meta=0 nullable=1 is_null=0 */
3292 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3293 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3294 ### @12=1 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3295 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
3296 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
3297 ### @15=1 /* INT meta=0 nullable=1 is_null=0 */
3298 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
3299 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3300 ### @18=1 /* LONGINT meta=0 nullable=1 is_null=0 */
3301 ### @19=-1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3302 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3303 ### @21=1 /* FLOAT meta=4 nullable=1 is_null=0 */
3304 ### @22=-2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3305 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3306 ### @24=1 /* DOUBLE meta=8 nullable=1 is_null=0 */
3307 ### @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3308 ### @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3309 ### @27=1 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3310 ### @28='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
3311 ### @29='2008-08-04 16:18:06' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
3312 ### @30=1217855904 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3313 ### @31='16:18:47' /* TIME(0) meta=0 nullable=1 is_null=0 */
3314 ### @32=2008 /* YEAR meta=0 nullable=1 is_null=0 */
3315 ### @33='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3316 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3317 ### @35='e' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3318 ### @36='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii…
3319 ### @37='ä' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3320 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3321 ### @39='ö' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3322 ### @40='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
3323 ### @41='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3324 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3325 ### @43='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3326 ### @44='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x0…
3327 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3328 ### @46='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3329 ### @47='eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee…
3330 ### @48='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii…
3331 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3332 ### @50='ä' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3333 ### @51='öööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö…
3334 ### @52='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
3335 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3336 ### @54='\x00�' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3337 ### @55='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x0…
3338 ### @56='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x0…
3339 ### @57='0' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3340 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3341 ### @59='1' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3342 ### @60='1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111…
3343 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3344 ### @62='b' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3345 ### @63='cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc…
3346 ### @64='\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27…
3347 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3348 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3349 ### @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT …
3350 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3351 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3352 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
3353 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3354 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3355 ### @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBL…
3356 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3357 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3358 ### @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT …
3359 ### @77=2 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3360 ### @78=b'00000110' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3361 ### @79=4 /* INT meta=0 nullable=1 is_null=0 */
3362 ### SET
3363 ### @1=NULL /* BIT(1) meta=1 nullable=1 is_null=1 */
3364 ### @2=NULL /* BIT(64) meta=2048 nullable=1 is_null=1 */
3365 ### @3=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
3366 ### @4=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
3367 ### @5=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
3368 ### @6=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
3369 ### @7=NULL /* SHORTINT meta=0 nullable=1 is_null=1 */
3370 ### @8=NULL /* SHORTINT meta=0 nullable=1 is_null=1 */
3371 ### @9=NULL /* SHORTINT meta=0 nullable=1 is_null=1 */
3372 ### @10=NULL /* MEDIUMINT meta=0 nullable=1 is_null=1 */
3373 ### @11=NULL /* MEDIUMINT meta=0 nullable=1 is_null=1 */
3374 ### @12=NULL /* MEDIUMINT meta=0 nullable=1 is_null=1 */
3375 ### @13=NULL /* INT meta=0 nullable=1 is_null=1 */
3376 ### @14=NULL /* INT meta=0 nullable=1 is_null=1 */
3377 ### @15=NULL /* INT meta=0 nullable=1 is_null=1 */
3378 ### @16=NULL /* LONGINT meta=0 nullable=1 is_null=1 */
3379 ### @17=NULL /* LONGINT meta=0 nullable=1 is_null=1 */
3380 ### @18=NULL /* LONGINT meta=0 nullable=1 is_null=1 */
3381 ### @19=NULL /* FLOAT meta=4 nullable=1 is_null=1 */
3382 ### @20=NULL /* FLOAT meta=4 nullable=1 is_null=1 */
3383 ### @21=NULL /* FLOAT meta=4 nullable=1 is_null=1 */
3384 ### @22=NULL /* DOUBLE meta=8 nullable=1 is_null=1 */
3385 ### @23=NULL /* DOUBLE meta=8 nullable=1 is_null=1 */
3386 ### @24=NULL /* DOUBLE meta=8 nullable=1 is_null=1 */
3387 ### @25=NULL /* DECIMAL(10,0) meta=2560 nullable=1 is_null=1 */
3388 ### @26=NULL /* DECIMAL(10,0) meta=2560 nullable=1 is_null=1 */
3389 ### @27=NULL /* DECIMAL(10,0) meta=2560 nullable=1 is_null=1 */
3390 ### @28=NULL /* DATE meta=0 nullable=1 is_null=1 */
3391 ### @29=NULL /* DATETIME(0) meta=0 nullable=1 is_null=1 */
3392 ### @30=1000000000 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3393 ### @31=NULL /* TIME(0) meta=0 nullable=1 is_null=1 */
3394 ### @32=NULL /* YEAR meta=0 nullable=1 is_null=1 */
3395 ### @33=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
3396 ### @34=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
3397 ### @35=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
3398 ### @36=NULL /* STRING(255) meta=65279 nullable=1 is_null=1 */
3399 ### @37=NULL /* STRING(3) meta=65027 nullable=1 is_null=1 */
3400 ### @38=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
3401 ### @39=NULL /* STRING(3) meta=65027 nullable=1 is_null=1 */
3402 ### @40=NULL /* STRING(765) meta=57085 nullable=1 is_null=1 */
3403 ### @41=NULL /* STRING(2) meta=65026 nullable=1 is_null=1 */
3404 ### @42=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
3405 ### @43=NULL /* STRING(2) meta=65026 nullable=1 is_null=1 */
3406 ### @44=NULL /* STRING(510) meta=61182 nullable=1 is_null=1 */
3407 ### @45=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
3408 ### @46=NULL /* VARSTRING(1) meta=1 nullable=1 is_null=1 */
3409 ### @47=NULL /* VARSTRING(255) meta=255 nullable=1 is_null=1 */
3410 ### @48=NULL /* VARSTRING(261) meta=261 nullable=1 is_null=1 */
3411 ### @49=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
3412 ### @50=NULL /* VARSTRING(3) meta=3 nullable=1 is_null=1 */
3413 ### @51=NULL /* VARSTRING(765) meta=765 nullable=1 is_null=1 */
3414 ### @52=NULL /* VARSTRING(783) meta=783 nullable=1 is_null=1 */
3415 ### @53=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
3416 ### @54=NULL /* VARSTRING(2) meta=2 nullable=1 is_null=1 */
3417 ### @55=NULL /* VARSTRING(510) meta=510 nullable=1 is_null=1 */
3418 ### @56=NULL /* VARSTRING(522) meta=522 nullable=1 is_null=1 */
3419 ### @57=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
3420 ### @58=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
3421 ### @59=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
3422 ### @60=NULL /* STRING(255) meta=65279 nullable=1 is_null=1 */
3423 ### @61=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
3424 ### @62=NULL /* VARSTRING(1) meta=1 nullable=1 is_null=1 */
3425 ### @63=NULL /* VARSTRING(255) meta=255 nullable=1 is_null=1 */
3426 ### @64=NULL /* VARSTRING(261) meta=261 nullable=1 is_null=1 */
3427 ### @65=NULL /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=1 */
3428 ### @66=NULL /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=1 */
3429 ### @67=NULL /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=1 */
3430 ### @68=NULL /* BLOB/TEXT meta=2 nullable=1 is_null=1 */
3431 ### @69=NULL /* BLOB/TEXT meta=2 nullable=1 is_null=1 */
3432 ### @70=NULL /* BLOB/TEXT meta=2 nullable=1 is_null=1 */
3433 ### @71=NULL /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=1 */
3434 ### @72=NULL /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=1 */
3435 ### @73=NULL /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=1 */
3436 ### @74=NULL /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=1 */
3437 ### @75=NULL /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=1 */
3438 ### @76=NULL /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=1 */
3439 ### @77=NULL /* ENUM(1 byte) meta=63233 nullable=1 is_null=1 */
3440 ### @78=NULL /* SET(1 bytes) meta=63489 nullable=1 is_null=1 */
3441 ### @79=4 /* INT meta=0 nullable=1 is_null=0 */
3442 # at #
3443 # # server id # end_log_pos # CRC32 # Xid = #
3444 COMMIT/*!*/;
3445 # at #
3446 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=yes
3447 /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;
3448 SET @@SESSION.GTID_NEXT= '#'/*!*/;
3449 # at #
3450 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
3451 SET TIMESTAMP=#/*!*/;
3452 BEGIN
3453 /*!*/;
3454 # at #
3455 # # server id # end_log_pos # CRC32 # Table_map: `test`.`t1` mapped to number #
3456 # at #
3457 # # server id # end_log_pos # CRC32 # Delete_rows: table id # flags: STMT_END_F
3458 ### DELETE FROM `test`.`t1`
3459 ### WHERE
3460 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
3461 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
3462 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
3463 ### @4=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
3464 ### @5=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
3465 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3466 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
3467 ### @8=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
3468 ### @9=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
3469 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3470 ### @11=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3471 ### @12=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3472 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
3473 ### @14=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
3474 ### @15=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
3475 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
3476 ### @17=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
3477 ### @18=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
3478 ### @19=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3479 ### @20=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3480 ### @21=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3481 ### @22=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3482 ### @23=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3483 ### @24=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3484 ### @25=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3485 ### @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3486 ### @27=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3487 ### @28='9999:12:31' /* DATE meta=0 nullable=1 is_null=0 */
3488 ### @29='9999-12-31 23:59:59' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
3489 ### @30=2146522447 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3490 ### @31='838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
3491 ### @32=2155 /* YEAR meta=0 nullable=1 is_null=0 */
3492 ### @33='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3493 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3494 ### @35='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3495 ### @36='����������������������������������������������������������������������������������������…
3496 ### @37='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3497 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3498 ### @39='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3499 ### @40='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
3500 ### @41='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3501 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3502 ### @43='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3503 ### @44='����������������������������������������������������������������������������������������…
3504 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3505 ### @46='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3506 ### @47='����������������������������������������������������������������������������������������…
3507 ### @48='����������������������������������������������������������������������������������������…
3508 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3509 ### @50='￿' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3510 ### @51='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
3511 ### @52='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿…
3512 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3513 ### @54='��' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3514 ### @55='����������������������������������������������������������������������������������������…
3515 ### @56='����������������������������������������������������������������������������������������…
3516 ### @57='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3517 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3518 ### @59='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3519 ### @60='����������������������������������������������������������������������������������������…
3520 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3521 ### @62='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3522 ### @63='����������������������������������������������������������������������������������������…
3523 ### @64='����������������������������������������������������������������������������������������…
3524 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3525 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3526 ### @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT …
3527 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3528 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3529 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
3530 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3531 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3532 ### @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBL…
3533 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3534 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3535 ### @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT …
3536 ### @77=3 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3537 ### @78=b'00000111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3538 ### @79=1 /* INT meta=0 nullable=1 is_null=0 */
3539 # at #
3540 # # server id # end_log_pos # CRC32 # Xid = #
3541 COMMIT/*!*/;
3542 # at #
3543 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=yes
3544 /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;
3545 SET @@SESSION.GTID_NEXT= '#'/*!*/;
3546 # at #
3547 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
3548 SET TIMESTAMP=#/*!*/;
3549 BEGIN
3550 /*!*/;
3551 # at #
3552 # # server id # end_log_pos # CRC32 # Table_map: `test`.`t1` mapped to number #
3553 # at #
3554 # # server id # end_log_pos # CRC32 # Delete_rows: table id # flags: STMT_END_F
3555 ### DELETE FROM `test`.`t1`
3556 ### WHERE
3557 ### @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
3558 ### @2=b'0000000000000000000000000000000000000000000000000000000000000000' /* BIT(64) meta=2048 n…
3559 ### @3=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
3560 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3561 ### @5=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3562 ### @6=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3563 ### @7=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
3564 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3565 ### @9=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3566 ### @10=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3567 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3568 ### @12=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3569 ### @13=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
3570 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
3571 ### @15=0 /* INT meta=0 nullable=1 is_null=0 */
3572 ### @16=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
3573 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3574 ### @18=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3575 ### @19=-3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3576 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3577 ### @21=0 /* FLOAT meta=4 nullable=1 is_null=0 */
3578 ### @22=-1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3579 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3580 ### @24=0 /* DOUBLE meta=8 nullable=1 is_null=0 */
3581 ### @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3582 ### @26=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3583 ### @27=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3584 ### @28='1000:01:01' /* DATE meta=0 nullable=1 is_null=0 */
3585 ### @29='1000-01-01 00:00:00' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
3586 ### @30=75601 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3587 ### @31='-838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
3588 ### @32=1901 /* YEAR meta=0 nullable=1 is_null=0 */
3589 ### @33='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3590 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3591 ### @35='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3592 ### @36='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3593 ### @37='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3594 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3595 ### @39='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3596 ### @40='' /* STRING(765) meta=57085 nullable=1 is_null=0 */
3597 ### @41='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3598 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3599 ### @43='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3600 ### @44='' /* STRING(510) meta=61182 nullable=1 is_null=0 */
3601 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3602 ### @46='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3603 ### @47='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3604 ### @48='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3605 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3606 ### @50='' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3607 ### @51='' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
3608 ### @52='' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
3609 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3610 ### @54='' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3611 ### @55='' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
3612 ### @56='' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
3613 ### @57='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3614 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3615 ### @59='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3616 ### @60='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3617 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3618 ### @62='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3619 ### @63='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3620 ### @64='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3621 ### @65='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3622 ### @66='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3623 ### @67='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3624 ### @68='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3625 ### @69='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3626 ### @70='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3627 ### @71='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3628 ### @72='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3629 ### @73='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3630 ### @74='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3631 ### @75='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3632 ### @76='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3633 ### @77=1 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3634 ### @78=b'00000000' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3635 ### @79=2 /* INT meta=0 nullable=1 is_null=0 */
3636 # at #
3637 # # server id # end_log_pos # CRC32 # Xid = #
3638 COMMIT/*!*/;
3639 # at #
3640 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=yes
3641 /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;
3642 SET @@SESSION.GTID_NEXT= '#'/*!*/;
3643 # at #
3644 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
3645 SET TIMESTAMP=#/*!*/;
3646 BEGIN
3647 /*!*/;
3648 # at #
3649 # # server id # end_log_pos # CRC32 # Table_map: `test`.`t1` mapped to number #
3650 # at #
3651 # # server id # end_log_pos # CRC32 # Delete_rows: table id # flags: STMT_END_F
3652 ### DELETE FROM `test`.`t1`
3653 ### WHERE
3654 ### @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
3655 ### @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 n…
3656 ### @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
3657 ### @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3658 ### @5=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3659 ### @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3660 ### @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
3661 ### @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3662 ### @9=1 /* SHORTINT meta=0 nullable=1 is_null=0 */
3663 ### @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3664 ### @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3665 ### @12=1 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3666 ### @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
3667 ### @14=0 /* INT meta=0 nullable=1 is_null=0 */
3668 ### @15=1 /* INT meta=0 nullable=1 is_null=0 */
3669 ### @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
3670 ### @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3671 ### @18=1 /* LONGINT meta=0 nullable=1 is_null=0 */
3672 ### @19=-1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3673 ### @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3674 ### @21=1 /* FLOAT meta=4 nullable=1 is_null=0 */
3675 ### @22=-2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3676 ### @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3677 ### @24=1 /* DOUBLE meta=8 nullable=1 is_null=0 */
3678 ### @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3679 ### @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3680 ### @27=1 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3681 ### @28='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
3682 ### @29='2008-08-04 16:18:06' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
3683 ### @30=1217855904 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3684 ### @31='16:18:47' /* TIME(0) meta=0 nullable=1 is_null=0 */
3685 ### @32=2008 /* YEAR meta=0 nullable=1 is_null=0 */
3686 ### @33='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3687 ### @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3688 ### @35='e' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3689 ### @36='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii…
3690 ### @37='ä' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3691 ### @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3692 ### @39='ö' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3693 ### @40='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
3694 ### @41='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3695 ### @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3696 ### @43='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3697 ### @44='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x0…
3698 ### @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3699 ### @46='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3700 ### @47='eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee…
3701 ### @48='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii…
3702 ### @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3703 ### @50='ä' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3704 ### @51='öööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö…
3705 ### @52='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü…
3706 ### @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3707 ### @54='\x00�' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3708 ### @55='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x0…
3709 ### @56='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x0…
3710 ### @57='0' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3711 ### @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3712 ### @59='1' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3713 ### @60='1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111…
3714 ### @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3715 ### @62='b' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3716 ### @63='cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc…
3717 ### @64='\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27…
3718 ### @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3719 ### @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3720 ### @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT …
3721 ### @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3722 ### @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3723 ### @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 …
3724 ### @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3725 ### @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3726 ### @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBL…
3727 ### @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3728 ### @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3729 ### @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT …
3730 ### @77=2 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3731 ### @78=b'00000110' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3732 ### @79=3 /* INT meta=0 nullable=1 is_null=0 */
3733 # at #
3734 # # server id # end_log_pos # CRC32 # Xid = #
3735 COMMIT/*!*/;
3736 # at #
3737 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=yes
3738 /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;
3739 SET @@SESSION.GTID_NEXT= '#'/*!*/;
3740 # at #
3741 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
3742 SET TIMESTAMP=#/*!*/;
3743 BEGIN
3744 /*!*/;
3745 # at #
3746 # # server id # end_log_pos # CRC32 # Table_map: `test`.`t1` mapped to number #
3747 # at #
3748 # # server id # end_log_pos # CRC32 # Delete_rows: table id # flags: STMT_END_F
3749 ### DELETE FROM `test`.`t1`
3750 ### WHERE
3751 ### @1=NULL /* BIT(1) meta=1 nullable=1 is_null=1 */
3752 ### @2=NULL /* BIT(64) meta=2048 nullable=1 is_null=1 */
3753 ### @3=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
3754 ### @4=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
3755 ### @5=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
3756 ### @6=NULL /* TINYINT meta=0 nullable=1 is_null=1 */
3757 ### @7=NULL /* SHORTINT meta=0 nullable=1 is_null=1 */
3758 ### @8=NULL /* SHORTINT meta=0 nullable=1 is_null=1 */
3759 ### @9=NULL /* SHORTINT meta=0 nullable=1 is_null=1 */
3760 ### @10=NULL /* MEDIUMINT meta=0 nullable=1 is_null=1 */
3761 ### @11=NULL /* MEDIUMINT meta=0 nullable=1 is_null=1 */
3762 ### @12=NULL /* MEDIUMINT meta=0 nullable=1 is_null=1 */
3763 ### @13=NULL /* INT meta=0 nullable=1 is_null=1 */
3764 ### @14=NULL /* INT meta=0 nullable=1 is_null=1 */
3765 ### @15=NULL /* INT meta=0 nullable=1 is_null=1 */
3766 ### @16=NULL /* LONGINT meta=0 nullable=1 is_null=1 */
3767 ### @17=NULL /* LONGINT meta=0 nullable=1 is_null=1 */
3768 ### @18=NULL /* LONGINT meta=0 nullable=1 is_null=1 */
3769 ### @19=NULL /* FLOAT meta=4 nullable=1 is_null=1 */
3770 ### @20=NULL /* FLOAT meta=4 nullable=1 is_null=1 */
3771 ### @21=NULL /* FLOAT meta=4 nullable=1 is_null=1 */
3772 ### @22=NULL /* DOUBLE meta=8 nullable=1 is_null=1 */
3773 ### @23=NULL /* DOUBLE meta=8 nullable=1 is_null=1 */
3774 ### @24=NULL /* DOUBLE meta=8 nullable=1 is_null=1 */
3775 ### @25=NULL /* DECIMAL(10,0) meta=2560 nullable=1 is_null=1 */
3776 ### @26=NULL /* DECIMAL(10,0) meta=2560 nullable=1 is_null=1 */
3777 ### @27=NULL /* DECIMAL(10,0) meta=2560 nullable=1 is_null=1 */
3778 ### @28=NULL /* DATE meta=0 nullable=1 is_null=1 */
3779 ### @29=NULL /* DATETIME(0) meta=0 nullable=1 is_null=1 */
3780 ### @30=1000000000 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3781 ### @31=NULL /* TIME(0) meta=0 nullable=1 is_null=1 */
3782 ### @32=NULL /* YEAR meta=0 nullable=1 is_null=1 */
3783 ### @33=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
3784 ### @34=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
3785 ### @35=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
3786 ### @36=NULL /* STRING(255) meta=65279 nullable=1 is_null=1 */
3787 ### @37=NULL /* STRING(3) meta=65027 nullable=1 is_null=1 */
3788 ### @38=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
3789 ### @39=NULL /* STRING(3) meta=65027 nullable=1 is_null=1 */
3790 ### @40=NULL /* STRING(765) meta=57085 nullable=1 is_null=1 */
3791 ### @41=NULL /* STRING(2) meta=65026 nullable=1 is_null=1 */
3792 ### @42=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
3793 ### @43=NULL /* STRING(2) meta=65026 nullable=1 is_null=1 */
3794 ### @44=NULL /* STRING(510) meta=61182 nullable=1 is_null=1 */
3795 ### @45=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
3796 ### @46=NULL /* VARSTRING(1) meta=1 nullable=1 is_null=1 */
3797 ### @47=NULL /* VARSTRING(255) meta=255 nullable=1 is_null=1 */
3798 ### @48=NULL /* VARSTRING(261) meta=261 nullable=1 is_null=1 */
3799 ### @49=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
3800 ### @50=NULL /* VARSTRING(3) meta=3 nullable=1 is_null=1 */
3801 ### @51=NULL /* VARSTRING(765) meta=765 nullable=1 is_null=1 */
3802 ### @52=NULL /* VARSTRING(783) meta=783 nullable=1 is_null=1 */
3803 ### @53=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
3804 ### @54=NULL /* VARSTRING(2) meta=2 nullable=1 is_null=1 */
3805 ### @55=NULL /* VARSTRING(510) meta=510 nullable=1 is_null=1 */
3806 ### @56=NULL /* VARSTRING(522) meta=522 nullable=1 is_null=1 */
3807 ### @57=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
3808 ### @58=NULL /* STRING(0) meta=65024 nullable=1 is_null=1 */
3809 ### @59=NULL /* STRING(1) meta=65025 nullable=1 is_null=1 */
3810 ### @60=NULL /* STRING(255) meta=65279 nullable=1 is_null=1 */
3811 ### @61=NULL /* VARSTRING(0) meta=0 nullable=1 is_null=1 */
3812 ### @62=NULL /* VARSTRING(1) meta=1 nullable=1 is_null=1 */
3813 ### @63=NULL /* VARSTRING(255) meta=255 nullable=1 is_null=1 */
3814 ### @64=NULL /* VARSTRING(261) meta=261 nullable=1 is_null=1 */
3815 ### @65=NULL /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=1 */
3816 ### @66=NULL /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=1 */
3817 ### @67=NULL /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=1 */
3818 ### @68=NULL /* BLOB/TEXT meta=2 nullable=1 is_null=1 */
3819 ### @69=NULL /* BLOB/TEXT meta=2 nullable=1 is_null=1 */
3820 ### @70=NULL /* BLOB/TEXT meta=2 nullable=1 is_null=1 */
3821 ### @71=NULL /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=1 */
3822 ### @72=NULL /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=1 */
3823 ### @73=NULL /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=1 */
3824 ### @74=NULL /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=1 */
3825 ### @75=NULL /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=1 */
3826 ### @76=NULL /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=1 */
3827 ### @77=NULL /* ENUM(1 byte) meta=63233 nullable=1 is_null=1 */
3828 ### @78=NULL /* SET(1 bytes) meta=63489 nullable=1 is_null=1 */
3829 ### @79=4 /* INT meta=0 nullable=1 is_null=0 */
3830 # at #
3831 # # server id # end_log_pos # CRC32 # Xid = #
3832 COMMIT/*!*/;
3833 # at #
3834 # # server id # end_log_pos # CRC32 # Rotate to master-bin.000002 pos: 4
3835 SET @@SESSION.GTID_NEXT= '#' /* added by mysqlbinlog */ /*!*/;
3836 DELIMITER ;
3837 # End of log file
3838 /*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
3839 /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;
3840 #
3841 # Cleanup.
3842 #
3843 DROP TABLE t1;
3844 #
3845 # =========================================
3846 # Test #2 - Multi-row insert/update/delete.
3847 # =========================================
3848 #
3849 # Delete all existing binary logs.
3850 #
3851 RESET MASTER;
3852 #
3853 # Create a test table with selected data types.
3854 #
3855 CREATE TABLE t1 (
3856 c28 DATE,
3857 c47 VARCHAR(24),
3858 crn INT -- row number
3859 ) ENGINE=InnoDB DEFAULT CHARSET latin1;
3860 #
3861 # Show how much rows are affected by each statement.
3862 #
3863 #
3864 # Multi-row insert.
3865 #
3866 INSERT INTO t1 VALUES
3867 ('2008-08-01','VARCHAR-01',1),
3868 ('2008-08-02','VARCHAR-02',2),
3869 ('2008-08-03','VARCHAR-03',3),
3870 ('2008-08-04','VARCHAR-04',4),
3871 ('2008-08-05','VARCHAR-05',5),
3872 ('2008-08-06','VARCHAR-06',6),
3873 ('2008-08-07','VARCHAR-07',7),
3874 ('2008-08-08','VARCHAR-08',8),
3875 ('2008-08-09','VARCHAR-09',9);
3876 affected rows: 9
3877 info: Records: 9 Duplicates: 0 Warnings: 0
3878 #
3879 # Multi-row update.
3880 #
3881 UPDATE t1 SET c28 = ADDDATE(c28,10) WHERE crn < 8;
3882 affected rows: 7
3883 info: Rows matched: 7 Changed: 7 Warnings: 0
3884 #
3885 # Show what we have in the table.
3886 #
3887 SELECT * FROM t1;
3888 c28 c47 crn
3889 2008-08-11 VARCHAR-01 1
3890 2008-08-12 VARCHAR-02 2
3891 2008-08-13 VARCHAR-03 3
3892 2008-08-14 VARCHAR-04 4
3893 2008-08-15 VARCHAR-05 5
3894 2008-08-16 VARCHAR-06 6
3895 2008-08-17 VARCHAR-07 7
3896 2008-08-08 VARCHAR-08 8
3897 2008-08-09 VARCHAR-09 9
3898 affected rows: 9
3899 #
3900 # Multi-row delete.
3901 #
3902 DELETE FROM t1 WHERE crn < 8;
3903 affected rows: 7
3904 #
3905 # Show what we have in the table.
3906 #
3907 SELECT * FROM t1;
3908 c28 c47 crn
3909 2008-08-08 VARCHAR-08 8
3910 2008-08-09 VARCHAR-09 9
3911 affected rows: 2
3912 #
3913 # Hide how much rows are affected by each statement.
3914 #
3915 #
3916 # Flush all log buffers to the log file.
3917 #
3918 FLUSH LOGS;
3919 #
3920 # Call mysqlbinlog to display the log file contents.
3921 #
3922 include/mysqlbinlog.inc
3923 /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/;
3924 /*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
3925 DELIMITER /*!*/;
3926 # at #
3927 # # server id # end_log_pos # CRC32 # Start: binlog v #, server v # created # at startup
3928 ROLLBACK/*!*/;
3929 # at #
3930 # # server id # end_log_pos # CRC32 # Previous-GTIDs
3931 # [empty]
3932 # at #
3933 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=no
3934 SET @@SESSION.GTID_NEXT= '#'/*!*/;
3935 # at #
3936 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
3937 use `test`/*!*/;
3938 SET TIMESTAMP=#/*!*/;
3939 SET @@session.pseudo_thread_id=#/*!*/;
3940 SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@sess…
3941 SET @@session.sql_mode=1436549152/*!*/;
3942 SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
3943 /*!\C utf8 *//*!*/;
3944 SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=…
3945 SET @@session.lc_time_names=0/*!*/;
3946 SET @@session.collation_database=DEFAULT/*!*/;
3947 CREATE TABLE t1 (
3948 c28 DATE,
3949 c47 VARCHAR(24),
3950 crn INT -- row number
3951 ) ENGINE=InnoDB DEFAULT CHARSET latin1
3952 /*!*/;
3953 # at #
3954 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=yes
3955 /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;
3956 SET @@SESSION.GTID_NEXT= '#'/*!*/;
3957 # at #
3958 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
3959 SET TIMESTAMP=#/*!*/;
3960 BEGIN
3961 /*!*/;
3962 # at #
3963 # # server id # end_log_pos # CRC32 # Table_map: `test`.`t1` mapped to number #
3964 # at #
3965 # # server id # end_log_pos # CRC32 # Write_rows: table id # flags: STMT_END_F
3966 ### INSERT INTO `test`.`t1`
3967 ### SET
3968 ### @1='2008:08:01' /* DATE meta=0 nullable=1 is_null=0 */
3969 ### @2='VARCHAR-01' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3970 ### @3=1 /* INT meta=0 nullable=1 is_null=0 */
3971 ### INSERT INTO `test`.`t1`
3972 ### SET
3973 ### @1='2008:08:02' /* DATE meta=0 nullable=1 is_null=0 */
3974 ### @2='VARCHAR-02' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3975 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
3976 ### INSERT INTO `test`.`t1`
3977 ### SET
3978 ### @1='2008:08:03' /* DATE meta=0 nullable=1 is_null=0 */
3979 ### @2='VARCHAR-03' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3980 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
3981 ### INSERT INTO `test`.`t1`
3982 ### SET
3983 ### @1='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
3984 ### @2='VARCHAR-04' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3985 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
3986 ### INSERT INTO `test`.`t1`
3987 ### SET
3988 ### @1='2008:08:05' /* DATE meta=0 nullable=1 is_null=0 */
3989 ### @2='VARCHAR-05' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3990 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
3991 ### INSERT INTO `test`.`t1`
3992 ### SET
3993 ### @1='2008:08:06' /* DATE meta=0 nullable=1 is_null=0 */
3994 ### @2='VARCHAR-06' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3995 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
3996 ### INSERT INTO `test`.`t1`
3997 ### SET
3998 ### @1='2008:08:07' /* DATE meta=0 nullable=1 is_null=0 */
3999 ### @2='VARCHAR-07' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4000 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4001 ### INSERT INTO `test`.`t1`
4002 ### SET
4003 ### @1='2008:08:08' /* DATE meta=0 nullable=1 is_null=0 */
4004 ### @2='VARCHAR-08' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4005 ### @3=8 /* INT meta=0 nullable=1 is_null=0 */
4006 ### INSERT INTO `test`.`t1`
4007 ### SET
4008 ### @1='2008:08:09' /* DATE meta=0 nullable=1 is_null=0 */
4009 ### @2='VARCHAR-09' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4010 ### @3=9 /* INT meta=0 nullable=1 is_null=0 */
4011 # at #
4012 # # server id # end_log_pos # CRC32 # Xid = #
4013 COMMIT/*!*/;
4014 # at #
4015 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=yes
4016 /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;
4017 SET @@SESSION.GTID_NEXT= '#'/*!*/;
4018 # at #
4019 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
4020 SET TIMESTAMP=#/*!*/;
4021 BEGIN
4022 /*!*/;
4023 # at #
4024 # # server id # end_log_pos # CRC32 # Table_map: `test`.`t1` mapped to number #
4025 # at #
4026 # # server id # end_log_pos # CRC32 # Update_rows: table id # flags: STMT_END_F
4027 ### UPDATE `test`.`t1`
4028 ### WHERE
4029 ### @1='2008:08:01' /* DATE meta=0 nullable=1 is_null=0 */
4030 ### @2='VARCHAR-01' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4031 ### @3=1 /* INT meta=0 nullable=1 is_null=0 */
4032 ### SET
4033 ### @1='2008:08:11' /* DATE meta=0 nullable=1 is_null=0 */
4034 ### @2='VARCHAR-01' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4035 ### @3=1 /* INT meta=0 nullable=1 is_null=0 */
4036 ### UPDATE `test`.`t1`
4037 ### WHERE
4038 ### @1='2008:08:02' /* DATE meta=0 nullable=1 is_null=0 */
4039 ### @2='VARCHAR-02' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4040 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4041 ### SET
4042 ### @1='2008:08:12' /* DATE meta=0 nullable=1 is_null=0 */
4043 ### @2='VARCHAR-02' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4044 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4045 ### UPDATE `test`.`t1`
4046 ### WHERE
4047 ### @1='2008:08:03' /* DATE meta=0 nullable=1 is_null=0 */
4048 ### @2='VARCHAR-03' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4049 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4050 ### SET
4051 ### @1='2008:08:13' /* DATE meta=0 nullable=1 is_null=0 */
4052 ### @2='VARCHAR-03' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4053 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4054 ### UPDATE `test`.`t1`
4055 ### WHERE
4056 ### @1='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
4057 ### @2='VARCHAR-04' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4058 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4059 ### SET
4060 ### @1='2008:08:14' /* DATE meta=0 nullable=1 is_null=0 */
4061 ### @2='VARCHAR-04' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4062 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4063 ### UPDATE `test`.`t1`
4064 ### WHERE
4065 ### @1='2008:08:05' /* DATE meta=0 nullable=1 is_null=0 */
4066 ### @2='VARCHAR-05' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4067 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4068 ### SET
4069 ### @1='2008:08:15' /* DATE meta=0 nullable=1 is_null=0 */
4070 ### @2='VARCHAR-05' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4071 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4072 ### UPDATE `test`.`t1`
4073 ### WHERE
4074 ### @1='2008:08:06' /* DATE meta=0 nullable=1 is_null=0 */
4075 ### @2='VARCHAR-06' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4076 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4077 ### SET
4078 ### @1='2008:08:16' /* DATE meta=0 nullable=1 is_null=0 */
4079 ### @2='VARCHAR-06' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4080 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4081 ### UPDATE `test`.`t1`
4082 ### WHERE
4083 ### @1='2008:08:07' /* DATE meta=0 nullable=1 is_null=0 */
4084 ### @2='VARCHAR-07' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4085 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4086 ### SET
4087 ### @1='2008:08:17' /* DATE meta=0 nullable=1 is_null=0 */
4088 ### @2='VARCHAR-07' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4089 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4090 # at #
4091 # # server id # end_log_pos # CRC32 # Xid = #
4092 COMMIT/*!*/;
4093 # at #
4094 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=yes
4095 /*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/;
4096 SET @@SESSION.GTID_NEXT= '#'/*!*/;
4097 # at #
4098 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
4099 SET TIMESTAMP=#/*!*/;
4100 BEGIN
4101 /*!*/;
4102 # at #
4103 # # server id # end_log_pos # CRC32 # Table_map: `test`.`t1` mapped to number #
4104 # at #
4105 # # server id # end_log_pos # CRC32 # Delete_rows: table id # flags: STMT_END_F
4106 ### DELETE FROM `test`.`t1`
4107 ### WHERE
4108 ### @1='2008:08:11' /* DATE meta=0 nullable=1 is_null=0 */
4109 ### @2='VARCHAR-01' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4110 ### @3=1 /* INT meta=0 nullable=1 is_null=0 */
4111 ### DELETE FROM `test`.`t1`
4112 ### WHERE
4113 ### @1='2008:08:12' /* DATE meta=0 nullable=1 is_null=0 */
4114 ### @2='VARCHAR-02' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4115 ### @3=2 /* INT meta=0 nullable=1 is_null=0 */
4116 ### DELETE FROM `test`.`t1`
4117 ### WHERE
4118 ### @1='2008:08:13' /* DATE meta=0 nullable=1 is_null=0 */
4119 ### @2='VARCHAR-03' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4120 ### @3=3 /* INT meta=0 nullable=1 is_null=0 */
4121 ### DELETE FROM `test`.`t1`
4122 ### WHERE
4123 ### @1='2008:08:14' /* DATE meta=0 nullable=1 is_null=0 */
4124 ### @2='VARCHAR-04' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4125 ### @3=4 /* INT meta=0 nullable=1 is_null=0 */
4126 ### DELETE FROM `test`.`t1`
4127 ### WHERE
4128 ### @1='2008:08:15' /* DATE meta=0 nullable=1 is_null=0 */
4129 ### @2='VARCHAR-05' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4130 ### @3=5 /* INT meta=0 nullable=1 is_null=0 */
4131 ### DELETE FROM `test`.`t1`
4132 ### WHERE
4133 ### @1='2008:08:16' /* DATE meta=0 nullable=1 is_null=0 */
4134 ### @2='VARCHAR-06' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4135 ### @3=6 /* INT meta=0 nullable=1 is_null=0 */
4136 ### DELETE FROM `test`.`t1`
4137 ### WHERE
4138 ### @1='2008:08:17' /* DATE meta=0 nullable=1 is_null=0 */
4139 ### @2='VARCHAR-07' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4140 ### @3=7 /* INT meta=0 nullable=1 is_null=0 */
4141 # at #
4142 # # server id # end_log_pos # CRC32 # Xid = #
4143 COMMIT/*!*/;
4144 # at #
4145 # # server id # end_log_pos # CRC32 # Rotate to master-bin.000002 pos: 4
4146 SET @@SESSION.GTID_NEXT= '#' /* added by mysqlbinlog */ /*!*/;
4147 DELIMITER ;
4148 # End of log file
4149 /*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
4150 /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;
4151 #
4152 # Cleanup.
4153 #
4154 DROP TABLE t1;
4155 #
4156 # ====================================
4157 # Test #3 - Multi-table update/delete.
4158 # ====================================
4159 #
4160 # Delete all existing binary logs.
4161 #
4162 RESET MASTER;
4163 #
4164 # Create test tables with selected data types.
4165 #
4166 CREATE TABLE t1 (
4167 c_1_1 DATE,
4168 c_1_2 VARCHAR(255),
4169 c_1_n INT -- row number
4170 ) ENGINE=InnoDB DEFAULT CHARSET latin1;
4171 CREATE TABLE t2 (
4172 c_2_1 DATE,
4173 c_2_2 VARCHAR(255),
4174 c_2_n INT -- row number
4175 ) ENGINE=InnoDB DEFAULT CHARSET latin1;
4176 CREATE TABLE t3 (
4177 c_3_1 DATE,
4178 c_3_2 VARCHAR(255),
4179 c_3_n INT -- row number
4180 ) ENGINE=InnoDB DEFAULT CHARSET latin1;
4181 #
4182 # Show how much rows are affected by each statement.
4183 #
4184 #
4185 # Insert data.
4186 #
4187 INSERT INTO t1 VALUES
4188 ('2008-01-01','VARCHAR-01-01',11),
4189 ('2008-01-02','VARCHAR-01-02',2),
4190 ('2008-01-03','VARCHAR-01-03',3),
4191 ('2008-01-04','VARCHAR-01-04',4),
4192 ('2008-01-05','VARCHAR-01-05',5),
4193 ('2008-01-06','VARCHAR-01-06',6),
4194 ('2008-01-07','VARCHAR-01-07',7),
4195 ('2008-01-08','VARCHAR-01-08',18),
4196 ('2008-01-09','VARCHAR-01-09',19);
4197 affected rows: 9
4198 info: Records: 9 Duplicates: 0 Warnings: 0
4199 INSERT INTO t2 VALUES
4200 ('2008-02-01','VARCHAR-02-01',21),
4201 ('2008-02-02','VARCHAR-02-02',2),
4202 ('2008-02-03','VARCHAR-02-03',3),
4203 ('2008-02-04','VARCHAR-02-04',4),
4204 ('2008-02-05','VARCHAR-02-05',5),
4205 ('2008-02-06','VARCHAR-02-06',6),
4206 ('2008-02-07','VARCHAR-02-07',7),
4207 ('2008-02-08','VARCHAR-02-08',28),
4208 ('2008-02-09','VARCHAR-02-09',29);
4209 affected rows: 9
4210 info: Records: 9 Duplicates: 0 Warnings: 0
4211 INSERT INTO t3 VALUES
4212 ('2008-03-01','VARCHAR-03-01',31),
4213 ('2008-03-02','VARCHAR-03-02',2),
4214 ('2008-03-03','VARCHAR-03-03',3),
4215 ('2008-03-04','VARCHAR-03-04',4),
4216 ('2008-03-05','VARCHAR-03-05',5),
4217 ('2008-03-06','VARCHAR-03-06',6),
4218 ('2008-03-07','VARCHAR-03-07',7),
4219 ('2008-03-08','VARCHAR-03-08',38),
4220 ('2008-03-09','VARCHAR-03-09',39);
4221 affected rows: 9
4222 info: Records: 9 Duplicates: 0 Warnings: 0
4223 ANALYZE TABLE t1;
4224 Table Op Msg_type Msg_text
4225 test.t1 analyze status OK
4226 affected rows: 1
4227 ANALYZE TABLE t2;
4228 Table Op Msg_type Msg_text
4229 test.t2 analyze status OK
4230 affected rows: 1
4231 ANALYZE TABLE t3;
4232 Table Op Msg_type Msg_text
4233 test.t3 analyze status OK
4234 affected rows: 1
4235 #
4236 # Multi-table update.
4237 #
4238 UPDATE t1,t2,t3 SET
4239 c_1_1 = ADDDATE(c_1_1,INTERVAL 10 YEAR),
4240 c_2_1 = ADDDATE(c_2_1,INTERVAL 20 YEAR),
4241 c_3_1 = ADDDATE(c_3_1,INTERVAL 30 YEAR)
4242 WHERE c_1_n = c_2_n AND c_2_n = c_3_n;
4243 affected rows: 18
4244 info: Rows matched: 18 Changed: 18 Warnings: 0
4245 #
4246 # Show what we have in the tables.
4247 #
4248 SELECT * FROM t1;
4249 c_1_1 c_1_2 c_1_n
4250 2008-01-01 VARCHAR-01-01 11
4251 2018-01-02 VARCHAR-01-02 2
4252 2018-01-03 VARCHAR-01-03 3
4253 2018-01-04 VARCHAR-01-04 4
4254 2018-01-05 VARCHAR-01-05 5
4255 2018-01-06 VARCHAR-01-06 6
4256 2018-01-07 VARCHAR-01-07 7
4257 2008-01-08 VARCHAR-01-08 18
4258 2008-01-09 VARCHAR-01-09 19
4259 affected rows: 9
4260 SELECT * FROM t2;
4261 c_2_1 c_2_2 c_2_n
4262 2008-02-01 VARCHAR-02-01 21
4263 2028-02-02 VARCHAR-02-02 2
4264 2028-02-03 VARCHAR-02-03 3
4265 2028-02-04 VARCHAR-02-04 4
4266 2028-02-05 VARCHAR-02-05 5
4267 2028-02-06 VARCHAR-02-06 6
4268 2028-02-07 VARCHAR-02-07 7
4269 2008-02-08 VARCHAR-02-08 28
4270 2008-02-09 VARCHAR-02-09 29
4271 affected rows: 9
4272 SELECT * FROM t3;
4273 c_3_1 c_3_2 c_3_n
4274 2008-03-01 VARCHAR-03-01 31
4275 2038-03-02 VARCHAR-03-02 2
4276 2038-03-03 VARCHAR-03-03 3
4277 2038-03-04 VARCHAR-03-04 4
4278 2038-03-05 VARCHAR-03-05 5
4279 2038-03-06 VARCHAR-03-06 6
4280 2038-03-07 VARCHAR-03-07 7
4281 2008-03-08 VARCHAR-03-08 38
4282 2008-03-09 VARCHAR-03-09 39
4283 affected rows: 9
4284 #
4285 # Multi-table delete.
4286 #
4287 DELETE FROM t1,t2,t3 USING t1 INNER JOIN t2 INNER JOIN t3
4288 WHERE c_1_n = c_2_n AND c_2_n = c_3_n;
4289 affected rows: 18
4290 #
4291 # Show what we have in the tables.
4292 #
4293 SELECT * FROM t1;
4294 c_1_1 c_1_2 c_1_n
4295 2008-01-01 VARCHAR-01-01 11
4296 2008-01-08 VARCHAR-01-08 18
4297 2008-01-09 VARCHAR-01-09 19
4298 affected rows: 3
4299 SELECT * FROM t2;
4300 c_2_1 c_2_2 c_2_n
4301 2008-02-01 VARCHAR-02-01 21
4302 2008-02-08 VARCHAR-02-08 28
4303 2008-02-09 VARCHAR-02-09 29
4304 affected rows: 3
4305 SELECT * FROM t3;
4306 c_3_1 c_3_2 c_3_n
4307 2008-03-01 VARCHAR-03-01 31
4308 2008-03-08 VARCHAR-03-08 38
4309 2008-03-09 VARCHAR-03-09 39
4310 affected rows: 3
4311 #
4312 # Hide how much rows are affected by each statement.
4313 #
4314 #
4315 # Flush all log buffers to the log file.
4316 #
4317 FLUSH LOGS;
4318 #
4319 # Call mysqlbinlog to display the log file contents.
4320 #
4321 include/mysqlbinlog.inc
4322 /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/;
4323 /*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
4324 DELIMITER /*!*/;
4325 # at #
4326 # # server id # end_log_pos # CRC32 # Start: binlog v #, server v # created # at startup
4327 ROLLBACK/*!*/;
4328 # at #
4329 # # server id # end_log_pos # CRC32 # Previous-GTIDs
4330 # [empty]
4331 # at #
4332 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=no
4333 SET @@SESSION.GTID_NEXT= '#'/*!*/;
4334 # at #
4335 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
4336 use `test`/*!*/;
4337 SET TIMESTAMP=#/*!*/;
4338 SET @@session.pseudo_thread_id=#/*!*/;
4339 SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@sess…
4340 SET @@session.sql_mode=1436549152/*!*/;
4341 SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
4342 /*!\C utf8 *//*!*/;
4343 SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=…
4344 SET @@session.lc_time_names=0/*!*/;
4345 SET @@session.collation_database=DEFAULT/*!*/;
4346 CREATE TABLE t1 (
4347 c_1_1 DATE,
4348 c_1_2 VARCHAR(255),
4349 c_1_n INT -- row number
4350 ) ENGINE=InnoDB DEFAULT CHARSET latin1
4351 /*!*/;
4352 # at #
4353 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=no
4354 SET @@SESSION.GTID_NEXT= '#'/*!*/;
4355 # at #
4356 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
4357 SET TIMESTAMP=#/*!*/;
4358 CREATE TABLE t2 (
4359 c_2_1 DATE,
4360 c_2_2 VARCHAR(255),
4361 c_2_n INT -- row number
4362 ) ENGINE=InnoDB DEFAULT CHARSET latin1
4363 /*!*/;
4364 # at #
4365 # # server id # end_log_pos # CRC32 # GTID last_committed=# sequence_number=# rbr_only=no
4366 SET @@SESSION.GTID_NEXT= '#'/*!*/;
4367 # at #
4368 # # server id # end_log_pos # CRC32 # Query thread_id=# exec_time=# error_code=0
4369 SET TIMESTAMP=#/*!*/;
4370 CREATE TABLE t3 (
4371 c_3_1 DATE,
4372 c_3_2 VARCHAR(255),