1SET NAMES 'utf8';
2#
3# Preparatory cleanup.
4#
5DROP TABLE IF EXISTS t1, t2, t3;
6#
7# We need a fixed timestamp to avoid varying results.
8#
9SET timestamp=1000000000;
10#
11# ===================================================
12# Test #1 - Insert/update/delete with all data types.
13# ===================================================
14#
15# Delete all existing binary logs.
16#
17RESET MASTER;
18#
19# Create a test table with all data types.
20#
21CREATE TABLE t1 (
22c01 BIT,
23c02 BIT(64),
24c03 TINYINT,
25c04 TINYINT UNSIGNED,
26c05 TINYINT ZEROFILL,
27c06 BOOL,
28c07 SMALLINT,
29c08 SMALLINT UNSIGNED,
30c09 SMALLINT ZEROFILL,
31c10 MEDIUMINT,
32c11 MEDIUMINT UNSIGNED,
33c12 MEDIUMINT ZEROFILL,
34c13 INT,
35c14 INT UNSIGNED,
36c15 INT ZEROFILL,
37c16 BIGINT,
38c17 BIGINT UNSIGNED,
39c18 BIGINT ZEROFILL,
40c19 FLOAT,
41c20 FLOAT UNSIGNED,
42c21 FLOAT ZEROFILL,
43c22 DOUBLE,
44c23 DOUBLE UNSIGNED,
45c24 DOUBLE ZEROFILL,
46c25 DECIMAL,
47c26 DECIMAL UNSIGNED,
48c27 DECIMAL ZEROFILL,
49#
50c28 DATE,
51c29 DATETIME,
52c30 TIMESTAMP,
53c31 TIME,
54c32 YEAR,
55#
56c33 CHAR,
57c34 CHAR(0),
58c35 CHAR(1),
59c36 CHAR(255),
60c37 NATIONAL CHAR,
61c38 NATIONAL CHAR(0),
62c39 NATIONAL CHAR(1),
63c40 NATIONAL CHAR(255),
64c41 CHAR CHARACTER SET UCS2,
65c42 CHAR(0) CHARACTER SET UCS2,
66c43 CHAR(1) CHARACTER SET UCS2,
67c44 CHAR(255) CHARACTER SET UCS2,
68#
69c45 VARCHAR(0),
70c46 VARCHAR(1),
71c47 VARCHAR(255),
72c48 VARCHAR(261),
73c49 NATIONAL VARCHAR(0),
74c50 NATIONAL VARCHAR(1),
75c51 NATIONAL VARCHAR(255),
76c52 NATIONAL VARCHAR(261),
77c53 VARCHAR(0) CHARACTER SET UCS2,
78c54 VARCHAR(1) CHARACTER SET UCS2,
79c55 VARCHAR(255) CHARACTER SET UCS2,
80c56 VARCHAR(261) CHARACTER SET UCS2,
81#
82c57 BINARY,
83c58 BINARY(0),
84c59 BINARY(1),
85c60 BINARY(255),
86#
87c61 VARBINARY(0),
88c62 VARBINARY(1),
89c63 VARBINARY(255),
90c64 VARBINARY(261),
91#
92c65 TINYBLOB,
93c66 TINYTEXT,
94c67 TINYTEXT CHARACTER SET UCS2,
95c68 BLOB,
96c69 TEXT,
97c70 TEXT CHARACTER SET UCS2,
98c71 MEDIUMBLOB,
99c72 MEDIUMTEXT,
100c73 MEDIUMTEXT CHARACTER SET UCS2,
101c74 LONGBLOB,
102c75 LONGTEXT,
103c76 LONGTEXT CHARACTER SET UCS2,
104#
105c77 ENUM('a','b','c'),
106c78 SET('a','b','c'),
107#
108crn INT -- row number
109) ENGINE=InnoDB DEFAULT CHARSET latin1;
110#
111# Insert minimum values.
112#
113INSERT INTO t1 VALUES (
114b'0',                         -- c01
115b'0000000000000000000000000000000000000000000000000000000000000000',  -- c02
116-128,                         -- c03
1170,                            -- c04
118000,                          -- c05
119false,                        -- c06
120-32768,                       -- c07
1210,                            -- c08
12200000,                        -- c09
123-8388608,                     -- c10
1240,                            -- c11
12500000000,                     -- c12
126-2147483648,                  -- c13
1270,                            -- c14
1280000000000,                   -- c15
129-9223372036854775808,         -- c16
1300,                            -- c17
13100000000000000000000,         -- c18
132-3.402823466E+38,             -- c19
1331.175494351E-38,              -- c20
134000000000000,                 -- c21
135-1.7976931348623E+308,        -- c22 three digits cut for ps-protocol
1362.2250738585072E-308,         -- c23 three digits cut for ps-protocol
1370000000000000000000000,       -- c24
138-9999999999,                  -- c25
1390,                            -- c26
1400000000000,                   -- 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#
2001                             -- crn -- row number
201);
202#
203# Insert maximum values.
204#
205INSERT INTO t1 VALUES (
206b'1',                         -- c01
207b'1111111111111111111111111111111111111111111111111111111111111111',  -- c02
208127,                          -- c03
209255,                          -- c04
210255,                          -- c05
211true,                         -- c06
21232767,                        -- c07
21365535,                        -- c08
21465535,                        -- c09
2158388607,                      -- c10
21616777215,                     -- c11
21716777215,                     -- c12
2182147483647,                   -- c13
2194294967295,                   -- c14
2204294967295,                   -- c15
2219223372036854775807,          -- c16
22218446744073709551615,         -- c17
22318446744073709551615,         -- c18
2243.402823466E+38,              -- c19
2253.402823466E+38,              -- c20
2263.402823466E+38,              -- c21
2271.7976931348623E+308,         -- c22 three digits cut for ps-protocol
2281.7976931348623E+308,         -- c23 three digits cut for ps-protocol
2291.7976931348623E+308,         -- c24 three digits cut for ps-protocol
2309999999999,                   -- c25
2319999999999,                   -- c26
2329999999999,                   -- 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#
240x'ff',                        -- c33
241'',                           -- c34
242x'ff',                        -- c35
243REPEAT(x'ff',255),            -- c36
244_utf8 x'efbfbf',              -- c37
245'',                           -- c38
246_utf8 x'efbfbf',              -- c39
247REPEAT(_utf8 x'efbfbf',255),  -- c40
248_ucs2 x'ffff',                -- c41
249'',                           -- c42
250_ucs2 x'ffff',                -- c43
251REPEAT(_ucs2 x'ffff',255),    -- c44
252#
253'',                           -- c45
254x'ff',                        -- c46
255REPEAT(x'ff',255),            -- c47
256REPEAT(x'ff',261),            -- c48
257'',                           -- c49
258_utf8 x'efbfbf',              -- c50
259REPEAT(_utf8 x'efbfbf',255),  -- c51
260REPEAT(_utf8 x'efbfbf',261),  -- c52
261'',                           -- c53
262_ucs2 x'ffff',                -- c54
263REPEAT(_ucs2 x'ffff',255),    -- c55
264REPEAT(_ucs2 x'ffff',261),    -- c56
265#
266x'ff',                        -- c57
267'',                           -- c58
268x'ff',                        -- c59
269REPEAT(x'ff',255),            -- c60
270#
271'',                           -- c61
272x'ff',                        -- c62
273REPEAT(x'ff',255),            -- c63
274REPEAT(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#
2922                             -- crn -- row number
293);
294#
295# Insert a row with NULL values and one with arbitrary values.
296#
297INSERT INTO t1 VALUES (
298NULL,                         -- c01
299NULL,                         -- c02
300NULL,                         -- c03
301NULL,                         -- c04
302NULL,                         -- c05
303NULL,                         -- c06
304NULL,                         -- c07
305NULL,                         -- c08
306NULL,                         -- c09
307NULL,                         -- c10
308NULL,                         -- c11
309NULL,                         -- c12
310NULL,                         -- c13
311NULL,                         -- c14
312NULL,                         -- c15
313NULL,                         -- c16
314NULL,                         -- c17
315NULL,                         -- c18
316NULL,                         -- c19
317NULL,                         -- c20
318NULL,                         -- c21
319NULL,                         -- c22
320NULL,                         -- c23
321NULL,                         -- c24
322NULL,                         -- c25
323NULL,                         -- c26
324NULL,                         -- c27
325#
326NULL,                         -- c28
327NULL,                         -- c29
328NULL,                         -- c30
329NULL,                         -- c31
330NULL,                         -- c32
331#
332NULL,                         -- c33
333NULL,                         -- c34
334NULL,                         -- c35
335NULL,                         -- c36
336NULL,                         -- c37
337NULL,                         -- c38
338NULL,                         -- c39
339NULL,                         -- c40
340NULL,                         -- c41
341NULL,                         -- c42
342NULL,                         -- c43
343NULL,                         -- c44
344#
345NULL,                         -- c45
346NULL,                         -- c46
347NULL,                         -- c47
348NULL,                         -- c48
349NULL,                         -- c49
350NULL,                         -- c50
351NULL,                         -- c51
352NULL,                         -- c52
353NULL,                         -- c53
354NULL,                         -- c54
355NULL,                         -- c55
356NULL,                         -- c56
357#
358NULL,                         -- c57
359NULL,                         -- c58
360NULL,                         -- c59
361NULL,                         -- c60
362#
363NULL,                         -- c61
364NULL,                         -- c62
365NULL,                         -- c63
366NULL,                         -- c64
367#
368NULL,                         -- c65
369NULL,                         -- c66
370NULL,                         -- c67
371NULL,                         -- c68
372NULL,                         -- c69
373NULL,                         -- c70
374NULL,                         -- c71
375NULL,                         -- c72
376NULL,                         -- c73
377NULL,                         -- c74
378NULL,                         -- c75
379NULL,                         -- c76
380#
381NULL,                         -- c77
382NULL,                         -- c78
383#
3843                             -- crn -- row number
385), (
386b'1',                         -- c01
387b'1111111111111111111111111111111111111111111111111111111111111111',  -- c02
388127,                          -- c03
3890,                            -- c04
390001,                          -- c05
391true,                         -- c06
39232767,                        -- c07
3930,                            -- c08
39400001,                        -- c09
3958388607,                      -- c10
3960,                            -- c11
39700000001,                     -- c12
3982147483647,                   -- c13
3990,                            -- c14
4000000000001,                   -- c15
4019223372036854775807,          -- c16
4020,                            -- c17
40300000000000000000001,         -- c18
404-1.175494351E-38,             -- c19
4051.175494351E-38,              -- c20
406000000000000001,              -- c21
407-2.2250738585072E-308,        -- c22
4082.2250738585072E-308,         -- c23
40900000000000000000000001,      -- c24
410-9999999999,                  -- c25
4119999999999,                   -- c26
4120000000001,                   -- 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
423REPEAT('i',255),              -- c36
424_utf8 x'c3a4',                -- c37
425'',                           -- c38
426_utf8 x'c3b6',                -- c39
427REPEAT(_utf8 x'c3bc',255),    -- c40
428_ucs2 x'00e4',                -- c41
429'',                           -- c42
430_ucs2 x'00f6',                -- c43
431REPEAT(_ucs2 x'00fc',255),    -- c44
432#
433'',                           -- c45
434'a',                          -- c46
435REPEAT('e',255),              -- c47
436REPEAT('i',261),              -- c48
437'',                           -- c49
438_utf8 x'c3a4',                -- c50
439REPEAT(_utf8 x'c3b6',255),    -- c51
440REPEAT(_utf8 x'c3bc',261),    -- c52
441'',                           -- c53
442_ucs2 x'00e4',                -- c54
443REPEAT(_ucs2 x'00f6',255),    -- c55
444REPEAT(_ucs2 x'00fc',261),    -- c56
445#
446'0',                          -- c57
447'',                           -- c58
448'1',                          -- c59
449REPEAT('1',255),              -- c60
450#
451'',                           -- c61
452'b',                          -- c62
453REPEAT('c',255),              -- c63
454REPEAT('\'',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#
479SELECT * FROM t1;
480c01	#
481c02	#
482c03	-128
483c04	0
484c05	000
485c06	0
486c07	-32768
487c08	0
488c09	00000
489c10	-8388608
490c11	0
491c12	00000000
492c13	-2147483648
493c14	0
494c15	0000000000
495c16	-9223372036854775808
496c17	0
497c18	00000000000000000000
498c19	-3.40282e38
499c20	1.17549e-38
500c21	000000000000
501c22	-1.7976931348623e308
502c23	2.2250738585072e-308
503c24	0000000000000000000000
504c25	-9999999999
505c26	0
506c27	0000000000
507c28	1000-01-01
508c29	1000-01-01 00:00:00
509c30	1970-01-02 00:00:01
510c31	-838:59:59
511c32	1901
512c33
513c34
514c35
515c36
516c37
517c38
518c39
519c40
520c41
521c42
522c43
523c44
524c45
525c46
526c47
527c48
528c49
529c50
530c51
531c52
532c53
533c54
534c55
535c56
536c57	#
537c58	#
538c59	#
539c60	#
540c61
541c62
542c63
543c64
544c65
545c66
546c67
547c68
548c69
549c70
550c71
551c72
552c73
553c74
554c75
555c76
556c77	a
557c78
558crn	1
559c01	#
560c02	#
561c03	127
562c04	255
563c05	255
564c06	1
565c07	32767
566c08	65535
567c09	65535
568c10	8388607
569c11	16777215
570c12	16777215
571c13	2147483647
572c14	4294967295
573c15	4294967295
574c16	9223372036854775807
575c17	18446744073709551615
576c18	18446744073709551615
577c19	3.40282e38
578c20	3.40282e38
579c21	003.40282e38
580c22	1.7976931348623e308
581c23	1.7976931348623e308
582c24	0001.7976931348623e308
583c25	9999999999
584c26	9999999999
585c27	9999999999
586c28	9999-12-31
587c29	9999-12-31 23:59:59
588c30	2038-01-08 03:14:07
589c31	838:59:59
590c32	2155
591c33	ÿ
592c34
593c35	ÿ
594c36	ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
595c37	￿
596c38
597c39	￿
598c40	￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿
599c41	￿
600c42
601c43	￿
602c44	￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿
603c45
604c46	ÿ
605c47	ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
606c48	ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
607c49
608c50	￿
609c51	￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿
610c52	￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿
611c53
612c54	￿
613c55	￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿
614c56	￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿
615c57	#
616c58	#
617c59	#
618c60	#
619c61
620c62	�
621c63	���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
622c64	���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
623c65	tinyblob
624c66	tinytext
625c67	tinytext-ucs2
626c68	blob
627c69	text
628c70	text-ucs2
629c71	mediumblob
630c72	mediumtext
631c73	mediumtext-ucs2
632c74	longblob
633c75	longtext
634c76	longtext-ucs2
635c77	c
636c78	a,b,c
637crn	2
638c01	#
639c02	#
640c03	NULL
641c04	NULL
642c05	NULL
643c06	NULL
644c07	NULL
645c08	NULL
646c09	NULL
647c10	NULL
648c11	NULL
649c12	NULL
650c13	NULL
651c14	NULL
652c15	NULL
653c16	NULL
654c17	NULL
655c18	NULL
656c19	NULL
657c20	NULL
658c21	NULL
659c22	NULL
660c23	NULL
661c24	NULL
662c25	NULL
663c26	NULL
664c27	NULL
665c28	NULL
666c29	NULL
667c30	2001-09-09 04:46:40
668c31	NULL
669c32	NULL
670c33	NULL
671c34	NULL
672c35	NULL
673c36	NULL
674c37	NULL
675c38	NULL
676c39	NULL
677c40	NULL
678c41	NULL
679c42	NULL
680c43	NULL
681c44	NULL
682c45	NULL
683c46	NULL
684c47	NULL
685c48	NULL
686c49	NULL
687c50	NULL
688c51	NULL
689c52	NULL
690c53	NULL
691c54	NULL
692c55	NULL
693c56	NULL
694c57	#
695c58	#
696c59	#
697c60	#
698c61	NULL
699c62	NULL
700c63	NULL
701c64	NULL
702c65	NULL
703c66	NULL
704c67	NULL
705c68	NULL
706c69	NULL
707c70	NULL
708c71	NULL
709c72	NULL
710c73	NULL
711c74	NULL
712c75	NULL
713c76	NULL
714c77	NULL
715c78	NULL
716crn	3
717c01	#
718c02	#
719c03	127
720c04	0
721c05	001
722c06	1
723c07	32767
724c08	0
725c09	00001
726c10	8388607
727c11	0
728c12	00000001
729c13	2147483647
730c14	0
731c15	0000000001
732c16	9223372036854775807
733c17	0
734c18	00000000000000000001
735c19	-1.17549e-38
736c20	1.17549e-38
737c21	000000000001
738c22	-2.2250738585072e-308
739c23	2.2250738585072e-308
740c24	0000000000000000000001
741c25	-9999999999
742c26	9999999999
743c27	0000000001
744c28	2008-08-04
745c29	2008-08-04 16:18:06
746c30	2008-08-04 16:18:24
747c31	16:18:47
748c32	2008
749c33	a
750c34
751c35	e
752c36	iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii
753c37	ä
754c38
755c39	ö
756c40	üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü
757c41	ä
758c42
759c43	ö
760c44	üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü
761c45
762c46	a
763c47	eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
764c48	iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii
765c49
766c50	ä
767c51	ööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö
768c52	üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü
769c53
770c54	ä
771c55	ööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö
772c56	üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü
773c57	#
774c58	#
775c59	#
776c60	#
777c61
778c62	b
779c63	ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
780c64	'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
781c65	tinyblob
782c66	tinytext
783c67	tinytext-ucs2
784c68	blob
785c69	text
786c70	text-ucs2
787c71	mediumblob
788c72	mediumtext
789c73	mediumtext-ucs2
790c74	longblob
791c75	longtext
792c76	longtext-ucs2
793c77	b
794c78	b,c
795crn	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#
805UPDATE t1 SET
806c01 = b'1',
807c02 = b'1111111111111111111111111111111111111111111111111111111111111111',
808c03 = 127,
809c04 = 255,
810c05 = 255,
811c06 = true,
812c07 = 32767,
813c08 = 65535,
814c09 = 65535,
815c10 = 8388607,
816c11 = 16777215,
817c12 = 16777215,
818c13 = 2147483647,
819c14 = 4294967295,
820c15 = 4294967295,
821c16 = 9223372036854775807,
822c17 = 18446744073709551615,
823c18 = 18446744073709551615,
824c19 = 3.402823466E+38,
825c20 = 3.402823466E+38,
826c21 = 3.402823466E+38,
827c22 = 1.7976931348623E+308,
828c23 = 1.7976931348623E+308,
829c24 = 1.7976931348623E+308,
830c25 = 9999999999,
831c26 = 9999999999,
832c27 = 9999999999,
833#
834c28 = '9999-12-31',
835c29 = '9999-12-31 23:59:59',
836c30 = '2038-01-08 03:14:07',
837c31 = '838:59:59',
838c32 = '2155',
839#
840c33 = x'ff',
841c34 = '',
842c35 = x'ff',
843c36 = REPEAT(x'ff',255),
844c37 = _utf8 x'efbfbf',
845c38 = '',
846c39 = _utf8 x'efbfbf',
847c40 = REPEAT(_utf8 x'efbfbf',255),
848c41 = _ucs2 x'ffff',
849c42 = '',
850c43 = _ucs2 x'ffff',
851c44 = REPEAT(_ucs2 x'ffff',255),
852#
853c45 = '',
854c46 = x'ff',
855c47 = REPEAT(x'ff',255),
856c48 = REPEAT(x'ff',261),
857c49 = '',
858c50 = _utf8 x'efbfbf',
859c51 = REPEAT(_utf8 x'efbfbf',255),
860c52 = REPEAT(_utf8 x'efbfbf',261),
861c53 = '',
862c54 = _ucs2 x'ffff',
863c55 = REPEAT(_ucs2 x'ffff',255),
864c56 = REPEAT(_ucs2 x'ffff',261),
865#
866c57 = x'ff',
867c58 = '',
868c59 = x'ff',
869c60 = REPEAT(x'ff',255),
870#
871c61 = '',
872c62 = x'ff',
873c63 = REPEAT(x'ff',255),
874c64 = REPEAT(x'ff',261),
875#
876c65 = 'tinyblob',
877c66 = 'tinytext',
878c67 = 'tinytext-ucs2',
879c68 = 'blob',
880c69 = 'text',
881c70 = 'text-ucs2',
882c71 = 'mediumblob',
883c72 = 'mediumtext',
884c73 = 'mediumtext-ucs2',
885c74 = 'longblob',
886c75 = 'longtext',
887c76 = 'longtext-ucs2',
888#
889c77 = 'c',
890c78 = 'a,b,c',
891#
892crn = crn
893#
894WHERE
895#
896c01 = b'0' AND
897c02 = b'0000000000000000000000000000000000000000000000000000000000000000' AND
898c03 = -128 AND
899c04 = 0 AND
900c05 = 000 AND
901c06 = false AND
902c07 = -32768 AND
903c08 = 0 AND
904c09 = 00000 AND
905c10 = -8388608 AND
906c11 = 0 AND
907c12 = 00000000 AND
908c13 = -2147483648 AND
909c14 = 0 AND
910c15 = 0000000000 AND
911c16 = -9223372036854775808 AND
912c17 = 0 AND
913c18 = 00000000000000000000 AND
914c19 < -3.402823465E+38 AND
915c20 < 1.175494352E-38 AND
916c21 = 000000000000 AND
917c22 < -1.7976931348622E+308 AND
918c23 < 2.2250738585073E-308 AND
919c24 = 0000000000000000000000 AND
920c25 = -9999999999 AND
921c26 = 0 AND
922c27 = 0000000000 AND
923#
924c28 = '1000-01-01' AND
925c29 = '1000-01-01 00:00:00' AND
926c30 = '1970-01-02 00:00:01' AND
927c31 = '-838:59:59' AND
928c32 = '1901' AND
929#
930c33 = '' AND
931c34 = '' AND
932c35 = '' AND
933c36 = '' AND
934c37 = '' AND
935c38 = '' AND
936c39 = '' AND
937c40 = '' AND
938c41 = '' AND
939c42 = '' AND
940c43 = '' AND
941c44 = '' AND
942#
943c45 = '' AND
944c46 = '' AND
945c47 = '' AND
946c48 = '' AND
947c49 = '' AND
948c50 = '' AND
949c51 = '' AND
950c52 = '' AND
951c53 = '' AND
952c54 = '' AND
953c55 = '' AND
954c56 = '' AND
955#
956# this does not reproduce the inserted value: c57 = '' AND
957c58 = '' AND
958# this does not reproduce the inserted value: c59 = '' AND
959# this does not reproduce the inserted value: c60 = '' AND
960#
961c61 = '' AND
962c62 = '' AND
963c63 = '' AND
964c64 = '' AND
965#
966c65 = '' AND
967c66 = '' AND
968c67 = '' AND
969c68 = '' AND
970c69 = '' AND
971c70 = '' AND
972c71 = '' AND
973c72 = '' AND
974c73 = '' AND
975c74 = '' AND
976c75 = '' AND
977c76 = '' AND
978#
979c77 = 'a' AND
980c78 = '' AND
981#
982crn = 1;
983affected rows: 1
984info: Rows matched: 1  Changed: 1  Warnings: 0
985#
986# Update max values to min values.
987#
988UPDATE t1 SET
989c01 = b'0',
990c02 = b'0000000000000000000000000000000000000000000000000000000000000000',
991c03 = -128,
992c04 = 0,
993c05 = 000,
994c06 = false,
995c07 = -32768,
996c08 = 0,
997c09 = 00000,
998c10 = -8388608,
999c11 = 0,
1000c12 = 00000000,
1001c13 = -2147483648,
1002c14 = 0,
1003c15 = 0000000000,
1004c16 = -9223372036854775808,
1005c17 = 0,
1006c18 = 00000000000000000000,
1007c19 = -3.402823466E+38,
1008c20 = 1.175494351E-38,
1009c21 = 000000000000,
1010c22 = -1.7976931348623E+308,
1011c23 = 2.2250738585072E-308,
1012c24 = 0000000000000000000000,
1013c25 = -9999999999,
1014c26 = 0,
1015c27 = 0000000000,
1016#
1017c28 = '1000-01-01',
1018c29 = '1000-01-01 00:00:00',
1019c30 = '1970-01-02 00:00:01',
1020c31 = '-838:59:59',
1021c32 = '1901',
1022#
1023c33 = '',
1024c34 = '',
1025c35 = '',
1026c36 = '',
1027c37 = '',
1028c38 = '',
1029c39 = '',
1030c40 = '',
1031c41 = '',
1032c42 = '',
1033c43 = '',
1034c44 = '',
1035#
1036c45 = '',
1037c46 = '',
1038c47 = '',
1039c48 = '',
1040c49 = '',
1041c50 = '',
1042c51 = '',
1043c52 = '',
1044c53 = '',
1045c54 = '',
1046c55 = '',
1047c56 = '',
1048#
1049c57 = '',
1050c58 = '',
1051c59 = '',
1052c60 = '',
1053#
1054c61 = '',
1055c62 = '',
1056c63 = '',
1057c64 = '',
1058#
1059c65 = '',
1060c66 = '',
1061c67 = '',
1062c68 = '',
1063c69 = '',
1064c70 = '',
1065c71 = '',
1066c72 = '',
1067c73 = '',
1068c74 = '',
1069c75 = '',
1070c76 = '',
1071#
1072c77 = 'a',
1073c78 = '',
1074#
1075crn = crn
1076#
1077WHERE
1078#
1079c01 = b'1' AND
1080# the below does not reproduce the inserted value:
1081#c02 = b'1111111111111111111111111111111111111111111111111111111111111111' AND
1082c03 = 127 AND
1083c04 = 255 AND
1084c05 = 255 AND
1085c06 = true AND
1086c07 = 32767 AND
1087c08 = 65535 AND
1088c09 = 65535 AND
1089c10 = 8388607 AND
1090c11 = 16777215 AND
1091c12 = 16777215 AND
1092c13 = 2147483647 AND
1093c14 = 4294967295 AND
1094c15 = 4294967295 AND
1095c16 = 9223372036854775807 AND
1096c17 = 18446744073709551615 AND
1097c18 = 18446744073709551615 AND
1098c19 > 3.402823465E+38 AND
1099c20 > 3.402823465E+38 AND
1100c21 > 3.402823465E+38 AND
1101c22 > 1.7976931348622E+308 AND
1102c23 > 1.7976931348622E+308 AND
1103c24 > 1.7976931348622E+308 AND
1104c25 = 9999999999 AND
1105c26 = 9999999999 AND
1106c27 = 9999999999 AND
1107#
1108c28 = '9999-12-31' AND
1109c29 = '9999-12-31 23:59:59' AND
1110c30 = '2038-01-08 03:14:07' AND
1111c31 = '838:59:59' AND
1112c32 = '2155' AND
1113#
1114c33 = x'ff' AND
1115c34 = '' AND
1116c35 = x'ff' AND
1117c36 = REPEAT(x'ff',255) AND
1118c37 = _utf8 x'efbfbf' AND
1119c38 = '' AND
1120c39 = _utf8 x'efbfbf' AND
1121c40 = REPEAT(_utf8 x'efbfbf',255) AND
1122c41 = _ucs2 x'ffff' AND
1123c42 = '' AND
1124c43 = _ucs2 x'ffff' AND
1125c44 = REPEAT(_ucs2 x'ffff',255) AND
1126#
1127c45 = '' AND
1128c46 = x'ff' AND
1129c47 = REPEAT(x'ff',255) AND
1130c48 = REPEAT(x'ff',261) AND
1131c49 = '' AND
1132c50 = _utf8 x'efbfbf' AND
1133c51 = REPEAT(_utf8 x'efbfbf',255) AND
1134c52 = REPEAT(_utf8 x'efbfbf',261) AND
1135c53 = '' AND
1136c54 = _ucs2 x'ffff' AND
1137c55 = REPEAT(_ucs2 x'ffff',255) AND
1138c56 = REPEAT(_ucs2 x'ffff',261) AND
1139#
1140c57 = x'ff' AND
1141c58 = '' AND
1142c59 = x'ff' AND
1143c60 = REPEAT(x'ff',255) AND
1144#
1145c61 = '' AND
1146c62 = x'ff' AND
1147c63 = REPEAT(x'ff',255) AND
1148c64 = REPEAT(x'ff',261) AND
1149#
1150c65 = 'tinyblob' AND
1151c66 = 'tinytext' AND
1152c67 = 'tinytext-ucs2' AND
1153c68 = 'blob' AND
1154c69 = 'text' AND
1155c70 = 'text-ucs2' AND
1156c71 = 'mediumblob' AND
1157c72 = 'mediumtext' AND
1158c73 = 'mediumtext-ucs2' AND
1159c74 = 'longblob' AND
1160c75 = 'longtext' AND
1161c76 = 'longtext-ucs2' AND
1162#
1163c77 = 'c' AND
1164c78 = 'a,b,c' AND
1165#
1166crn = 2;
1167affected rows: 1
1168info: Rows matched: 1  Changed: 1  Warnings: 0
1169#
1170# Update NULL values to arbitrary values.
1171#
1172UPDATE t1 SET
1173c01 = b'1',
1174c02 = b'1111111111111111111111111111111111111111111111111111111111111111',
1175c03 = 127,
1176c04 = 0,
1177c05 = 001,
1178c06 = true,
1179c07 = 32767,
1180c08 = 0,
1181c09 = 00001,
1182c10 = 8388607,
1183c11 = 0,
1184c12 = 00000001,
1185c13 = 2147483647,
1186c14 = 0,
1187c15 = 0000000001,
1188c16 = 9223372036854775807,
1189c17 = 0,
1190c18 = 00000000000000000001,
1191c19 = -1.175494351E-38,
1192c20 = 1.175494351E-38,
1193c21 = 000000000000001,
1194c22 = -2.2250738585072E-308,
1195c23 = 2.2250738585072E-308,
1196c24 = 00000000000000000000001,
1197c25 = -9999999999,
1198c26 = 9999999999,
1199c27 = 0000000001,
1200#
1201c28 = '2008-08-04',
1202c29 = '2008-08-04 16:18:06',
1203c30 = '2008-08-04 16:18:24',
1204c31 = '16:18:47',
1205c32 = '2008',
1206#
1207c33 = 'a',
1208c34 = '',
1209c35 = 'e',
1210c36 = REPEAT('i',255),
1211c37 = _utf8 x'c3a4',
1212c38 = '',
1213c39 = _utf8 x'c3b6',
1214c40 = REPEAT(_utf8 x'c3bc',255),
1215c41 = _ucs2 x'00e4',
1216c42 = '',
1217c43 = _ucs2 x'00f6',
1218c44 = REPEAT(_ucs2 x'00fc',255),
1219#
1220c45 = '',
1221c46 = 'a',
1222c47 = REPEAT('e',255),
1223c48 = REPEAT('i',261),
1224c49 = '',
1225c50 = _utf8 x'c3a4',
1226c51 = REPEAT(_utf8 x'c3b6',255),
1227c52 = REPEAT(_utf8 x'c3bc',261),
1228c53 = '',
1229c54 = _ucs2 x'00e4',
1230c55 = REPEAT(_ucs2 x'00f6',255),
1231c56 = REPEAT(_ucs2 x'00fc',261),
1232#
1233c57 = '0',
1234c58 = '',
1235c59 = '1',
1236c60 = REPEAT('1',255),
1237#
1238c61 = '',
1239c62 = 'b',
1240c63 = REPEAT('c',255),
1241c64 = 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;
1350affected rows: 1
1351info: Rows matched: 1  Changed: 1  Warnings: 0
1352#
1353# Update arbitrary values to NULL values.
1354#
1355UPDATE t1 SET
1356c01 = NULL,
1357c02 = NULL,
1358c03 = NULL,
1359c04 = NULL,
1360c05 = NULL,
1361c06 = NULL,
1362c07 = NULL,
1363c08 = NULL,
1364c09 = NULL,
1365c10 = NULL,
1366c11 = NULL,
1367c12 = NULL,
1368c13 = NULL,
1369c14 = NULL,
1370c15 = NULL,
1371c16 = NULL,
1372c17 = NULL,
1373c18 = NULL,
1374c19 = NULL,
1375c20 = NULL,
1376c21 = NULL,
1377c22 = NULL,
1378c23 = NULL,
1379c24 = NULL,
1380c25 = NULL,
1381c26 = NULL,
1382c27 = NULL,
1383#
1384c28 = NULL,
1385c29 = NULL,
1386c30 = NULL,
1387c31 = NULL,
1388c32 = NULL,
1389#
1390c33 = NULL,
1391c34 = NULL,
1392c35 = NULL,
1393c36 = NULL,
1394c37 = NULL,
1395c38 = NULL,
1396c39 = NULL,
1397c40 = NULL,
1398c41 = NULL,
1399c42 = NULL,
1400c43 = NULL,
1401c44 = NULL,
1402#
1403c45 = NULL,
1404c46 = NULL,
1405c47 = NULL,
1406c48 = NULL,
1407c49 = NULL,
1408c50 = NULL,
1409c51 = NULL,
1410c52 = NULL,
1411c53 = NULL,
1412c54 = NULL,
1413c55 = NULL,
1414c56 = NULL,
1415#
1416c57 = NULL,
1417c58 = NULL,
1418c59 = NULL,
1419c60 = NULL,
1420#
1421c61 = NULL,
1422c62 = NULL,
1423c63 = NULL,
1424c64 = NULL,
1425#
1426c65 = NULL,
1427c66 = NULL,
1428c67 = NULL,
1429c68 = NULL,
1430c69 = NULL,
1431c70 = NULL,
1432c71 = NULL,
1433c72 = NULL,
1434c73 = NULL,
1435c74 = NULL,
1436c75 = NULL,
1437c76 = NULL,
1438#
1439c77 = NULL,
1440c78 = NULL,
1441#
1442crn = crn
1443#
1444WHERE
1445#
1446c01 = b'1' AND
1447# the below does not reproduce the inserted value:
1448#c02 = b'1111111111111111111111111111111111111111111111111111111111111111' AND
1449c03 = 127 AND
1450c04 = 0 AND
1451c05 = 001 AND
1452c06 = true AND
1453c07 = 32767 AND
1454c08 = 0 AND
1455c09 = 00001 AND
1456c10 = 8388607 AND
1457c11 = 0 AND
1458c12 = 00000001 AND
1459c13 = 2147483647 AND
1460c14 = 0 AND
1461c15 = 0000000001 AND
1462c16 = 9223372036854775807 AND
1463c17 = 0 AND
1464c18 = 00000000000000000001 AND
1465c19 > -1.175494352E-38 AND
1466c20 < 1.175494352E-38 AND
1467c21 = 000000000000001 AND
1468c22 > -2.2250738585073E-308 AND
1469c23 < 2.2250738585073E-308 AND
1470c24 = 00000000000000000000001 AND
1471c25 = -9999999999 AND
1472c26 = 9999999999 AND
1473c27 = 0000000001 AND
1474#
1475c28 = '2008-08-04' AND
1476c29 = '2008-08-04 16:18:06' AND
1477c30 = '2008-08-04 16:18:24' AND
1478c31 = '16:18:47' AND
1479c32 = '2008' AND
1480#
1481c33 = 'a' AND
1482c34 = '' AND
1483c35 = 'e' AND
1484c36 = REPEAT('i',255) AND
1485c37 = _utf8 x'c3a4' AND
1486c38 = '' AND
1487c39 = _utf8 x'c3b6' AND
1488c40 = REPEAT(_utf8 x'c3bc',255) AND
1489c41 = _ucs2 x'00e4' AND
1490c42 = '' AND
1491c43 = _ucs2 x'00f6' AND
1492c44 = REPEAT(_ucs2 x'00fc',255) AND
1493#
1494c45 = '' AND
1495c46 = 'a' AND
1496c47 = REPEAT('e',255) AND
1497c48 = REPEAT('i',261) AND
1498c49 = '' AND
1499c50 = _utf8 x'c3a4' AND
1500c51 = REPEAT(_utf8 x'c3b6',255) AND
1501c52 = REPEAT(_utf8 x'c3bc',261) AND
1502c53 = '' AND
1503c54 = _ucs2 x'00e4' AND
1504c55 = REPEAT(_ucs2 x'00f6',255) AND
1505c56 = REPEAT(_ucs2 x'00fc',261) AND
1506#
1507c57 = '0' AND
1508c58 = '' AND
1509c59 = '1' AND
1510c60 = REPEAT('1',255) AND
1511#
1512c61 = '' AND
1513c62 = 'b' AND
1514c63 = REPEAT('c',255) AND
1515c64 = 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;
1534affected rows: 1
1535info: 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#
1541SELECT * FROM t1;
1542c01	#
1543c02	#
1544c03	127
1545c04	255
1546c05	255
1547c06	1
1548c07	32767
1549c08	65535
1550c09	65535
1551c10	8388607
1552c11	16777215
1553c12	16777215
1554c13	2147483647
1555c14	4294967295
1556c15	4294967295
1557c16	9223372036854775807
1558c17	18446744073709551615
1559c18	18446744073709551615
1560c19	3.40282e38
1561c20	3.40282e38
1562c21	003.40282e38
1563c22	1.7976931348623e308
1564c23	1.7976931348623e308
1565c24	0001.7976931348623e308
1566c25	9999999999
1567c26	9999999999
1568c27	9999999999
1569c28	9999-12-31
1570c29	9999-12-31 23:59:59
1571c30	2038-01-08 03:14:07
1572c31	838:59:59
1573c32	2155
1574c33	ÿ
1575c34
1576c35	ÿ
1577c36	ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
1578c37	￿
1579c38
1580c39	￿
1581c40	￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿
1582c41	￿
1583c42
1584c43	￿
1585c44	￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿
1586c45
1587c46	ÿ
1588c47	ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
1589c48	ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
1590c49
1591c50	￿
1592c51	￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿
1593c52	￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿
1594c53
1595c54	￿
1596c55	￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿
1597c56	￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿
1598c57	#
1599c58	#
1600c59	#
1601c60	#
1602c61
1603c62	�
1604c63	���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
1605c64	���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
1606c65	tinyblob
1607c66	tinytext
1608c67	tinytext-ucs2
1609c68	blob
1610c69	text
1611c70	text-ucs2
1612c71	mediumblob
1613c72	mediumtext
1614c73	mediumtext-ucs2
1615c74	longblob
1616c75	longtext
1617c76	longtext-ucs2
1618c77	c
1619c78	a,b,c
1620crn	1
1621c01	#
1622c02	#
1623c03	-128
1624c04	0
1625c05	000
1626c06	0
1627c07	-32768
1628c08	0
1629c09	00000
1630c10	-8388608
1631c11	0
1632c12	00000000
1633c13	-2147483648
1634c14	0
1635c15	0000000000
1636c16	-9223372036854775808
1637c17	0
1638c18	00000000000000000000
1639c19	-3.40282e38
1640c20	1.17549e-38
1641c21	000000000000
1642c22	-1.7976931348623e308
1643c23	2.2250738585072e-308
1644c24	0000000000000000000000
1645c25	-9999999999
1646c26	0
1647c27	0000000000
1648c28	1000-01-01
1649c29	1000-01-01 00:00:00
1650c30	1970-01-02 00:00:01
1651c31	-838:59:59
1652c32	1901
1653c33
1654c34
1655c35
1656c36
1657c37
1658c38
1659c39
1660c40
1661c41
1662c42
1663c43
1664c44
1665c45
1666c46
1667c47
1668c48
1669c49
1670c50
1671c51
1672c52
1673c53
1674c54
1675c55
1676c56
1677c57	#
1678c58	#
1679c59	#
1680c60	#
1681c61
1682c62
1683c63
1684c64
1685c65
1686c66
1687c67
1688c68
1689c69
1690c70
1691c71
1692c72
1693c73
1694c74
1695c75
1696c76
1697c77	a
1698c78
1699crn	2
1700c01	#
1701c02	#
1702c03	127
1703c04	0
1704c05	001
1705c06	1
1706c07	32767
1707c08	0
1708c09	00001
1709c10	8388607
1710c11	0
1711c12	00000001
1712c13	2147483647
1713c14	0
1714c15	0000000001
1715c16	9223372036854775807
1716c17	0
1717c18	00000000000000000001
1718c19	-1.17549e-38
1719c20	1.17549e-38
1720c21	000000000001
1721c22	-2.2250738585072e-308
1722c23	2.2250738585072e-308
1723c24	0000000000000000000001
1724c25	-9999999999
1725c26	9999999999
1726c27	0000000001
1727c28	2008-08-04
1728c29	2008-08-04 16:18:06
1729c30	2008-08-04 16:18:24
1730c31	16:18:47
1731c32	2008
1732c33	a
1733c34
1734c35	e
1735c36	iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii
1736c37	ä
1737c38
1738c39	ö
1739c40	üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü
1740c41	ä
1741c42
1742c43	ö
1743c44	üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü
1744c45
1745c46	a
1746c47	eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
1747c48	iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii
1748c49
1749c50	ä
1750c51	ööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö
1751c52	üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü
1752c53
1753c54	ä
1754c55	ööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö
1755c56	üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü
1756c57	#
1757c58	#
1758c59	#
1759c60	#
1760c61
1761c62	b
1762c63	ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
1763c64	'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
1764c65	tinyblob
1765c66	tinytext
1766c67	tinytext-ucs2
1767c68	blob
1768c69	text
1769c70	text-ucs2
1770c71	mediumblob
1771c72	mediumtext
1772c73	mediumtext-ucs2
1773c74	longblob
1774c75	longtext
1775c76	longtext-ucs2
1776c77	b
1777c78	b,c
1778crn	3
1779c01	#
1780c02	#
1781c03	NULL
1782c04	NULL
1783c05	NULL
1784c06	NULL
1785c07	NULL
1786c08	NULL
1787c09	NULL
1788c10	NULL
1789c11	NULL
1790c12	NULL
1791c13	NULL
1792c14	NULL
1793c15	NULL
1794c16	NULL
1795c17	NULL
1796c18	NULL
1797c19	NULL
1798c20	NULL
1799c21	NULL
1800c22	NULL
1801c23	NULL
1802c24	NULL
1803c25	NULL
1804c26	NULL
1805c27	NULL
1806c28	NULL
1807c29	NULL
1808c30	2001-09-09 04:46:40
1809c31	NULL
1810c32	NULL
1811c33	NULL
1812c34	NULL
1813c35	NULL
1814c36	NULL
1815c37	NULL
1816c38	NULL
1817c39	NULL
1818c40	NULL
1819c41	NULL
1820c42	NULL
1821c43	NULL
1822c44	NULL
1823c45	NULL
1824c46	NULL
1825c47	NULL
1826c48	NULL
1827c49	NULL
1828c50	NULL
1829c51	NULL
1830c52	NULL
1831c53	NULL
1832c54	NULL
1833c55	NULL
1834c56	NULL
1835c57	#
1836c58	#
1837c59	#
1838c60	#
1839c61	NULL
1840c62	NULL
1841c63	NULL
1842c64	NULL
1843c65	NULL
1844c66	NULL
1845c67	NULL
1846c68	NULL
1847c69	NULL
1848c70	NULL
1849c71	NULL
1850c72	NULL
1851c73	NULL
1852c74	NULL
1853c75	NULL
1854c76	NULL
1855c77	NULL
1856c78	NULL
1857crn	4
1858affected rows: 4
1859#
1860# Delete the row that has max values now.
1861#
1862DELETE FROM t1 WHERE
1863#
1864c01 = b'1' AND
1865# the below does not reproduce the inserted value:
1866#c02 = b'1111111111111111111111111111111111111111111111111111111111111111' AND
1867c03 = 127 AND
1868c04 = 255 AND
1869c05 = 255 AND
1870c06 = true AND
1871c07 = 32767 AND
1872c08 = 65535 AND
1873c09 = 65535 AND
1874c10 = 8388607 AND
1875c11 = 16777215 AND
1876c12 = 16777215 AND
1877c13 = 2147483647 AND
1878c14 = 4294967295 AND
1879c15 = 4294967295 AND
1880c16 = 9223372036854775807 AND
1881c17 = 18446744073709551615 AND
1882c18 = 18446744073709551615 AND
1883c19 > 3.402823465E+38 AND
1884c20 > 3.402823465E+38 AND
1885c21 > 3.402823465E+38 AND
1886c22 > 1.7976931348622E+308 AND
1887c23 > 1.7976931348622E+308 AND
1888c24 > 1.7976931348622E+308 AND
1889c25 = 9999999999 AND
1890c26 = 9999999999 AND
1891c27 = 9999999999 AND
1892#
1893c28 = '9999-12-31' AND
1894c29 = '9999-12-31 23:59:59' AND
1895c30 = '2038-01-08 03:14:07' AND
1896c31 = '838:59:59' AND
1897c32 = '2155' AND
1898#
1899c33 = x'ff' AND
1900c34 = '' AND
1901c35 = x'ff' AND
1902c36 = REPEAT(x'ff',255) AND
1903c37 = _utf8 x'efbfbf' AND
1904c38 = '' AND
1905c39 = _utf8 x'efbfbf' AND
1906c40 = REPEAT(_utf8 x'efbfbf',255) AND
1907c41 = _ucs2 x'ffff' AND
1908c42 = '' AND
1909c43 = _ucs2 x'ffff' AND
1910c44 = REPEAT(_ucs2 x'ffff',255) AND
1911#
1912c45 = '' AND
1913c46 = x'ff' AND
1914c47 = REPEAT(x'ff',255) AND
1915c48 = REPEAT(x'ff',261) AND
1916c49 = '' AND
1917c50 = _utf8 x'efbfbf' AND
1918c51 = REPEAT(_utf8 x'efbfbf',255) AND
1919c52 = REPEAT(_utf8 x'efbfbf',261) AND
1920c53 = '' AND
1921c54 = _ucs2 x'ffff' AND
1922c55 = REPEAT(_ucs2 x'ffff',255) AND
1923c56 = REPEAT(_ucs2 x'ffff',261) AND
1924#
1925c57 = x'ff' AND
1926c58 = '' AND
1927c59 = x'ff' AND
1928c60 = REPEAT(x'ff',255) AND
1929#
1930c61 = '' AND
1931c62 = x'ff' AND
1932c63 = REPEAT(x'ff',255) AND
1933c64 = REPEAT(x'ff',261) AND
1934#
1935c65 = 'tinyblob' AND
1936c66 = 'tinytext' AND
1937c67 = 'tinytext-ucs2' AND
1938c68 = 'blob' AND
1939c69 = 'text' AND
1940c70 = 'text-ucs2' AND
1941c71 = 'mediumblob' AND
1942c72 = 'mediumtext' AND
1943c73 = 'mediumtext-ucs2' AND
1944c74 = 'longblob' AND
1945c75 = 'longtext' AND
1946c76 = 'longtext-ucs2' AND
1947#
1948c77 = 'c' AND
1949c78 = 'a,b,c' AND
1950#
1951crn = 1;
1952affected rows: 1
1953#
1954# Delete the row that has min values now.
1955#
1956DELETE FROM t1 WHERE
1957#
1958c01 = b'0' AND
1959c02 = b'0000000000000000000000000000000000000000000000000000000000000000' AND
1960c03 = -128 AND
1961c04 = 0 AND
1962c05 = 000 AND
1963c06 = false AND
1964c07 = -32768 AND
1965c08 = 0 AND
1966c09 = 00000 AND
1967c10 = -8388608 AND
1968c11 = 0 AND
1969c12 = 00000000 AND
1970c13 = -2147483648 AND
1971c14 = 0 AND
1972c15 = 0000000000 AND
1973c16 = -9223372036854775808 AND
1974c17 = 0 AND
1975c18 = 00000000000000000000 AND
1976c19 < -3.402823465E+38 AND
1977c20 < 1.175494352E-38 AND
1978c21 = 000000000000 AND
1979c22 < -1.7976931348622E+308 AND
1980c23 < 2.2250738585073E-308 AND
1981c24 = 0000000000000000000000 AND
1982c25 = -9999999999 AND
1983c26 = 0 AND
1984c27 = 0000000000 AND
1985#
1986c28 = '1000-01-01' AND
1987c29 = '1000-01-01 00:00:00' AND
1988c30 = '1970-01-02 00:00:01' AND
1989c31 = '-838:59:59' AND
1990c32 = '1901' AND
1991#
1992c33 = '' AND
1993c34 = '' AND
1994c35 = '' AND
1995c36 = '' AND
1996c37 = '' AND
1997c38 = '' AND
1998c39 = '' AND
1999c40 = '' AND
2000c41 = '' AND
2001c42 = '' AND
2002c43 = '' AND
2003c44 = '' AND
2004#
2005c45 = '' AND
2006c46 = '' AND
2007c47 = '' AND
2008c48 = '' AND
2009c49 = '' AND
2010c50 = '' AND
2011c51 = '' AND
2012c52 = '' AND
2013c53 = '' AND
2014c54 = '' AND
2015c55 = '' AND
2016c56 = '' AND
2017#
2018# this does not reproduce the inserted value: c57 = '' AND
2019c58 = '' AND
2020# this does not reproduce the inserted value: c59 = '' AND
2021# this does not reproduce the inserted value: c60 = '' AND
2022#
2023c61 = '' AND
2024c62 = '' AND
2025c63 = '' AND
2026c64 = '' AND
2027#
2028c65 = '' AND
2029c66 = '' AND
2030c67 = '' AND
2031c68 = '' AND
2032c69 = '' AND
2033c70 = '' AND
2034c71 = '' AND
2035c72 = '' AND
2036c73 = '' AND
2037c74 = '' AND
2038c75 = '' AND
2039c76 = '' AND
2040#
2041c77 = 'a' AND
2042c78 = '' AND
2043#
2044crn = 2;
2045affected rows: 1
2046#
2047# Delete the row that has arbitrary values now.
2048#
2049DELETE FROM t1 WHERE
2050#
2051c01 = b'1' AND
2052# the below does not reproduce the inserted value:
2053#c02 = b'1111111111111111111111111111111111111111111111111111111111111111' AND
2054c03 = 127 AND
2055c04 = 0 AND
2056c05 = 001 AND
2057c06 = true AND
2058c07 = 32767 AND
2059c08 = 0 AND
2060c09 = 00001 AND
2061c10 = 8388607 AND
2062c11 = 0 AND
2063c12 = 00000001 AND
2064c13 = 2147483647 AND
2065c14 = 0 AND
2066c15 = 0000000001 AND
2067c16 = 9223372036854775807 AND
2068c17 = 0 AND
2069c18 = 00000000000000000001 AND
2070c19 > -1.175494352E-38 AND
2071c20 < 1.175494352E-38 AND
2072c21 = 000000000000001 AND
2073c22 > -2.2250738585073E-308 AND
2074c23 < 2.2250738585073E-308 AND
2075c24 = 00000000000000000000001 AND
2076c25 = -9999999999 AND
2077c26 = 9999999999 AND
2078c27 = 0000000001 AND
2079#
2080c28 = '2008-08-04' AND
2081c29 = '2008-08-04 16:18:06' AND
2082c30 = '2008-08-04 16:18:24' AND
2083c31 = '16:18:47' AND
2084c32 = '2008' AND
2085#
2086c33 = 'a' AND
2087c34 = '' AND
2088c35 = 'e' AND
2089c36 = REPEAT('i',255) AND
2090c37 = _utf8 x'c3a4' AND
2091c38 = '' AND
2092c39 = _utf8 x'c3b6' AND
2093c40 = REPEAT(_utf8 x'c3bc',255) AND
2094c41 = _ucs2 x'00e4' AND
2095c42 = '' AND
2096c43 = _ucs2 x'00f6' AND
2097c44 = REPEAT(_ucs2 x'00fc',255) AND
2098#
2099c45 = '' AND
2100c46 = 'a' AND
2101c47 = REPEAT('e',255) AND
2102c48 = REPEAT('i',261) AND
2103c49 = '' AND
2104c50 = _utf8 x'c3a4' AND
2105c51 = REPEAT(_utf8 x'c3b6',255) AND
2106c52 = REPEAT(_utf8 x'c3bc',261) AND
2107c53 = '' AND
2108c54 = _ucs2 x'00e4' AND
2109c55 = REPEAT(_ucs2 x'00f6',255) AND
2110c56 = REPEAT(_ucs2 x'00fc',261) AND
2111#
2112c57 = '0' AND
2113c58 = '' AND
2114c59 = '1' AND
2115c60 = REPEAT('1',255) AND
2116#
2117c61 = '' AND
2118c62 = 'b' AND
2119c63 = REPEAT('c',255) AND
2120c64 = 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;
2139affected rows: 1
2140#
2141# Delete the row that has NULL values now.
2142#
2143DELETE FROM t1 WHERE
2144#
2145c01 IS NULL AND
2146c02 IS NULL AND
2147c03 IS NULL AND
2148c04 IS NULL AND
2149c05 IS NULL AND
2150c06 IS NULL AND
2151c07 IS NULL AND
2152c08 IS NULL AND
2153c09 IS NULL AND
2154c10 IS NULL AND
2155c11 IS NULL AND
2156c12 IS NULL AND
2157c13 IS NULL AND
2158c14 IS NULL AND
2159c15 IS NULL AND
2160c16 IS NULL AND
2161c17 IS NULL AND
2162c18 IS NULL AND
2163c19 IS NULL AND
2164c20 IS NULL AND
2165c21 IS NULL AND
2166c22 IS NULL AND
2167c23 IS NULL AND
2168c24 IS NULL AND
2169c25 IS NULL AND
2170c26 IS NULL AND
2171c27 IS NULL AND
2172#
2173c28 IS NULL AND
2174c29 IS NULL AND
2175# this got a timestamp instead of NULL: c30 IS NULL AND
2176c31 IS NULL AND
2177c32 IS NULL AND
2178#
2179c33 IS NULL AND
2180c34 IS NULL AND
2181c35 IS NULL AND
2182c36 IS NULL AND
2183c37 IS NULL AND
2184c38 IS NULL AND
2185c39 IS NULL AND
2186c40 IS NULL AND
2187c41 IS NULL AND
2188c42 IS NULL AND
2189c43 IS NULL AND
2190c44 IS NULL AND
2191#
2192c45 IS NULL AND
2193c46 IS NULL AND
2194c47 IS NULL AND
2195c48 IS NULL AND
2196c49 IS NULL AND
2197c50 IS NULL AND
2198c51 IS NULL AND
2199c52 IS NULL AND
2200c53 IS NULL AND
2201c54 IS NULL AND
2202c55 IS NULL AND
2203c56 IS NULL AND
2204#
2205c57 IS NULL AND
2206c58 IS NULL AND
2207c59 IS NULL AND
2208c60 IS NULL AND
2209#
2210c61 IS NULL AND
2211c62 IS NULL AND
2212c63 IS NULL AND
2213c64 IS NULL AND
2214#
2215c65 IS NULL AND
2216c66 IS NULL AND
2217c67 IS NULL AND
2218c68 IS NULL AND
2219c69 IS NULL AND
2220c70 IS NULL AND
2221c71 IS NULL AND
2222c72 IS NULL AND
2223c73 IS NULL AND
2224c74 IS NULL AND
2225c75 IS NULL AND
2226c76 IS NULL AND
2227#
2228c77 IS NULL AND
2229c78 IS NULL AND
2230#
2231crn = 4;
2232affected rows: 1
2233#
2234# Show what we have in the table. Should be empty now.
2235#
2236SELECT * FROM t1;
2237affected 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#
2244FLUSH LOGS;
2245#
2246# Call mysqlbinlog to display the log file contents.
2247#
2248/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/;
2249/*!40019 SET @@session.max_insert_delayed_threads=0*/;
2250/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
2251DELIMITER /*!*/;
2252# at #
2253#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Start: binlog v 4, server v #.##.## created 010909  4:46:40 at startup
2254ROLLBACK/*!*/;
2255# at #
2256#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Previous-GTIDs
2257# [empty]
2258# at #
2259#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
2260SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
2261# at #
2262#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
2263use `test`/*!*/;
2264SET TIMESTAMP=1000000000/*!*/;
2265SET @@session.pseudo_thread_id=#/*!*/;
2266SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
2267SET @@session.sql_mode=1073741824/*!*/;
2268SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
2269/*!\C utf8 *//*!*/;
2270SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=8/*!*/;
2271SET @@session.lc_time_names=0/*!*/;
2272SET @@session.collation_database=DEFAULT/*!*/;
2273CREATE TABLE t1 (
2274c01 BIT,
2275c02 BIT(64),
2276c03 TINYINT,
2277c04 TINYINT UNSIGNED,
2278c05 TINYINT ZEROFILL,
2279c06 BOOL,
2280c07 SMALLINT,
2281c08 SMALLINT UNSIGNED,
2282c09 SMALLINT ZEROFILL,
2283c10 MEDIUMINT,
2284c11 MEDIUMINT UNSIGNED,
2285c12 MEDIUMINT ZEROFILL,
2286c13 INT,
2287c14 INT UNSIGNED,
2288c15 INT ZEROFILL,
2289c16 BIGINT,
2290c17 BIGINT UNSIGNED,
2291c18 BIGINT ZEROFILL,
2292c19 FLOAT,
2293c20 FLOAT UNSIGNED,
2294c21 FLOAT ZEROFILL,
2295c22 DOUBLE,
2296c23 DOUBLE UNSIGNED,
2297c24 DOUBLE ZEROFILL,
2298c25 DECIMAL,
2299c26 DECIMAL UNSIGNED,
2300c27 DECIMAL ZEROFILL,
2301#
2302c28 DATE,
2303c29 DATETIME,
2304c30 TIMESTAMP,
2305c31 TIME,
2306c32 YEAR,
2307#
2308c33 CHAR,
2309c34 CHAR(0),
2310c35 CHAR(1),
2311c36 CHAR(255),
2312c37 NATIONAL CHAR,
2313c38 NATIONAL CHAR(0),
2314c39 NATIONAL CHAR(1),
2315c40 NATIONAL CHAR(255),
2316c41 CHAR CHARACTER SET UCS2,
2317c42 CHAR(0) CHARACTER SET UCS2,
2318c43 CHAR(1) CHARACTER SET UCS2,
2319c44 CHAR(255) CHARACTER SET UCS2,
2320#
2321c45 VARCHAR(0),
2322c46 VARCHAR(1),
2323c47 VARCHAR(255),
2324c48 VARCHAR(261),
2325c49 NATIONAL VARCHAR(0),
2326c50 NATIONAL VARCHAR(1),
2327c51 NATIONAL VARCHAR(255),
2328c52 NATIONAL VARCHAR(261),
2329c53 VARCHAR(0) CHARACTER SET UCS2,
2330c54 VARCHAR(1) CHARACTER SET UCS2,
2331c55 VARCHAR(255) CHARACTER SET UCS2,
2332c56 VARCHAR(261) CHARACTER SET UCS2,
2333#
2334c57 BINARY,
2335c58 BINARY(0),
2336c59 BINARY(1),
2337c60 BINARY(255),
2338#
2339c61 VARBINARY(0),
2340c62 VARBINARY(1),
2341c63 VARBINARY(255),
2342c64 VARBINARY(261),
2343#
2344c65 TINYBLOB,
2345c66 TINYTEXT,
2346c67 TINYTEXT CHARACTER SET UCS2,
2347c68 BLOB,
2348c69 TEXT,
2349c70 TEXT CHARACTER SET UCS2,
2350c71 MEDIUMBLOB,
2351c72 MEDIUMTEXT,
2352c73 MEDIUMTEXT CHARACTER SET UCS2,
2353c74 LONGBLOB,
2354c75 LONGTEXT,
2355c76 LONGTEXT CHARACTER SET UCS2,
2356#
2357c77 ENUM('a','b','c'),
2358c78 SET('a','b','c'),
2359#
2360crn INT -- row number
2361) ENGINE=InnoDB DEFAULT CHARSET latin1
2362/*!*/;
2363# at #
2364#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
2365SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
2366# at #
2367#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
2368SET TIMESTAMP=1000000000/*!*/;
2369SET @@session.time_zone='SYSTEM'/*!*/;
2370BEGIN
2371/*!*/;
2372# at #
2373#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
2374# at #
2375#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Write_rows: table id # flags: STMT_END_F
2376### INSERT INTO `test`.`t1`
2377### SET
2378###   @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
2379###   @2=b'0000000000000000000000000000000000000000000000000000000000000000' /* BIT(64) meta=2048 nullable=1 is_null=0 */
2380###   @3=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
2381###   @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2382###   @5=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2383###   @6=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2384###   @7=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
2385###   @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2386###   @9=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2387###   @10=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2388###   @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2389###   @12=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2390###   @13=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
2391###   @14=0 /* INT meta=0 nullable=1 is_null=0 */
2392###   @15=0 /* INT meta=0 nullable=1 is_null=0 */
2393###   @16=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
2394###   @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2395###   @18=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2396###   @19=-3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2397###   @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
2398###   @21=0                    /* FLOAT meta=4 nullable=1 is_null=0 */
2399###   @22=-1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2400###   @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
2401###   @24=0 /* DOUBLE meta=8 nullable=1 is_null=0 */
2402###   @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2403###   @26=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2404###   @27=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2405###   @28='1000:01:01' /* DATE meta=0 nullable=1 is_null=0 */
2406###   @29='1000-01-01 00:00:00' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
2407###   @30=75601 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
2408###   @31='-838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
2409###   @32=1901 /* YEAR meta=0 nullable=1 is_null=0 */
2410###   @33='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2411###   @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2412###   @35='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2413###   @36='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2414###   @37='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2415###   @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2416###   @39='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2417###   @40='' /* STRING(765) meta=57085 nullable=1 is_null=0 */
2418###   @41='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2419###   @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2420###   @43='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2421###   @44='' /* STRING(510) meta=61182 nullable=1 is_null=0 */
2422###   @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2423###   @46='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2424###   @47='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2425###   @48='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2426###   @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2427###   @50='' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2428###   @51='' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
2429###   @52='' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
2430###   @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2431###   @54='' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2432###   @55='' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
2433###   @56='' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
2434###   @57='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2435###   @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2436###   @59='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2437###   @60='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2438###   @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2439###   @62='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2440###   @63='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2441###   @64='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2442###   @65='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2443###   @66='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2444###   @67='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2445###   @68='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2446###   @69='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2447###   @70='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2448###   @71='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2449###   @72='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2450###   @73='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2451###   @74='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2452###   @75='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2453###   @76='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2454###   @77=1 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2455###   @78=b'00000000' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2456###   @79=1 /* INT meta=0 nullable=1 is_null=0 */
2457# at #
2458#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
2459COMMIT/*!*/;
2460# at #
2461#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
2462SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
2463# at #
2464#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
2465SET TIMESTAMP=1000000000/*!*/;
2466BEGIN
2467/*!*/;
2468# at #
2469#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
2470# at #
2471#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Write_rows: table id # flags: STMT_END_F
2472### INSERT INTO `test`.`t1`
2473### SET
2474###   @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
2475###   @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 nullable=1 is_null=0 */
2476###   @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
2477###   @4=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2478###   @5=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2479###   @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2480###   @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
2481###   @8=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2482###   @9=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2483###   @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2484###   @11=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2485###   @12=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2486###   @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
2487###   @14=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2488###   @15=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2489###   @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
2490###   @17=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2491###   @18=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2492###   @19=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2493###   @20=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2494###   @21=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2495###   @22=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2496###   @23=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2497###   @24=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2498###   @25=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2499###   @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2500###   @27=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2501###   @28='9999:12:31' /* DATE meta=0 nullable=1 is_null=0 */
2502###   @29='9999-12-31 23:59:59' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
2503###   @30=2146522447 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
2504###   @31='838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
2505###   @32=2155 /* YEAR meta=0 nullable=1 is_null=0 */
2506###   @33='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2507###   @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2508###   @35='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2509###   @36='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2510###   @37='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2511###   @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2512###   @39='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2513###   @40='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* STRING(765) meta=57085 nullable=1 is_null=0 */
2514###   @41='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2515###   @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2516###   @43='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2517###   @44='������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* STRING(510) meta=61182 nullable=1 is_null=0 */
2518###   @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2519###   @46='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2520###   @47='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2521###   @48='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2522###   @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2523###   @50='￿' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2524###   @51='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
2525###   @52='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
2526###   @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2527###   @54='��' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2528###   @55='������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
2529###   @56='������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
2530###   @57='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2531###   @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2532###   @59='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2533###   @60='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2534###   @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2535###   @62='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2536###   @63='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2537###   @64='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2538###   @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2539###   @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2540###   @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2541###   @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2542###   @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2543###   @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2544###   @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2545###   @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2546###   @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2547###   @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2548###   @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2549###   @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2550###   @77=3 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2551###   @78=b'00000111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2552###   @79=2 /* INT meta=0 nullable=1 is_null=0 */
2553# at #
2554#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
2555COMMIT/*!*/;
2556# at #
2557#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
2558SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
2559# at #
2560#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
2561SET TIMESTAMP=1000000000/*!*/;
2562BEGIN
2563/*!*/;
2564# at #
2565#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
2566# at #
2567#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Write_rows: table id # flags: STMT_END_F
2568### INSERT INTO `test`.`t1`
2569### SET
2570###   @1=NULL /* type=16 meta=1 nullable=1 is_null=1 */
2571###   @2=NULL /* type=16 meta=2048 nullable=1 is_null=1 */
2572###   @3=NULL /* type=1 meta=0 nullable=1 is_null=1 */
2573###   @4=NULL /* type=1 meta=0 nullable=1 is_null=1 */
2574###   @5=NULL /* type=1 meta=0 nullable=1 is_null=1 */
2575###   @6=NULL /* type=1 meta=0 nullable=1 is_null=1 */
2576###   @7=NULL /* type=2 meta=0 nullable=1 is_null=1 */
2577###   @8=NULL /* type=2 meta=0 nullable=1 is_null=1 */
2578###   @9=NULL /* type=2 meta=0 nullable=1 is_null=1 */
2579###   @10=NULL /* type=9 meta=0 nullable=1 is_null=1 */
2580###   @11=NULL /* type=9 meta=0 nullable=1 is_null=1 */
2581###   @12=NULL /* type=9 meta=0 nullable=1 is_null=1 */
2582###   @13=NULL /* type=3 meta=0 nullable=1 is_null=1 */
2583###   @14=NULL /* type=3 meta=0 nullable=1 is_null=1 */
2584###   @15=NULL /* type=3 meta=0 nullable=1 is_null=1 */
2585###   @16=NULL /* type=8 meta=0 nullable=1 is_null=1 */
2586###   @17=NULL /* type=8 meta=0 nullable=1 is_null=1 */
2587###   @18=NULL /* type=8 meta=0 nullable=1 is_null=1 */
2588###   @19=NULL /* type=4 meta=4 nullable=1 is_null=1 */
2589###   @20=NULL /* type=4 meta=4 nullable=1 is_null=1 */
2590###   @21=NULL /* type=4 meta=4 nullable=1 is_null=1 */
2591###   @22=NULL /* type=5 meta=8 nullable=1 is_null=1 */
2592###   @23=NULL /* type=5 meta=8 nullable=1 is_null=1 */
2593###   @24=NULL /* type=5 meta=8 nullable=1 is_null=1 */
2594###   @25=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
2595###   @26=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
2596###   @27=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
2597###   @28=NULL /* type=14 meta=0 nullable=1 is_null=1 */
2598###   @29=NULL /* type=18 meta=0 nullable=1 is_null=1 */
2599###   @30=1000000000 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
2600###   @31=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
2601###   @32=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
2602###   @33=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
2603###   @34=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
2604###   @35=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
2605###   @36=NULL /* TIMESTAMP(0) meta=65279 nullable=1 is_null=1 */
2606###   @37=NULL /* TIMESTAMP(0) meta=65027 nullable=1 is_null=1 */
2607###   @38=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
2608###   @39=NULL /* TIMESTAMP(0) meta=65027 nullable=1 is_null=1 */
2609###   @40=NULL /* TIMESTAMP(0) meta=57085 nullable=1 is_null=1 */
2610###   @41=NULL /* TIMESTAMP(0) meta=65026 nullable=1 is_null=1 */
2611###   @42=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
2612###   @43=NULL /* TIMESTAMP(0) meta=65026 nullable=1 is_null=1 */
2613###   @44=NULL /* TIMESTAMP(0) meta=61182 nullable=1 is_null=1 */
2614###   @45=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
2615###   @46=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
2616###   @47=NULL /* TIMESTAMP(0) meta=255 nullable=1 is_null=1 */
2617###   @48=NULL /* TIMESTAMP(0) meta=261 nullable=1 is_null=1 */
2618###   @49=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
2619###   @50=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
2620###   @51=NULL /* TIMESTAMP(0) meta=765 nullable=1 is_null=1 */
2621###   @52=NULL /* TIMESTAMP(0) meta=783 nullable=1 is_null=1 */
2622###   @53=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
2623###   @54=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
2624###   @55=NULL /* TIMESTAMP(0) meta=510 nullable=1 is_null=1 */
2625###   @56=NULL /* TIMESTAMP(0) meta=522 nullable=1 is_null=1 */
2626###   @57=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
2627###   @58=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
2628###   @59=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
2629###   @60=NULL /* TIMESTAMP(0) meta=65279 nullable=1 is_null=1 */
2630###   @61=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
2631###   @62=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
2632###   @63=NULL /* TIMESTAMP(0) meta=255 nullable=1 is_null=1 */
2633###   @64=NULL /* TIMESTAMP(0) meta=261 nullable=1 is_null=1 */
2634###   @65=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
2635###   @66=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
2636###   @67=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
2637###   @68=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
2638###   @69=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
2639###   @70=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
2640###   @71=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
2641###   @72=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
2642###   @73=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
2643###   @74=NULL /* TIMESTAMP(0) meta=4 nullable=1 is_null=1 */
2644###   @75=NULL /* TIMESTAMP(0) meta=4 nullable=1 is_null=1 */
2645###   @76=NULL /* TIMESTAMP(0) meta=4 nullable=1 is_null=1 */
2646###   @77=NULL /* TIMESTAMP(0) meta=63233 nullable=1 is_null=1 */
2647###   @78=NULL /* TIMESTAMP(0) meta=63489 nullable=1 is_null=1 */
2648###   @79=3 /* INT meta=0 nullable=1 is_null=0 */
2649### INSERT INTO `test`.`t1`
2650### SET
2651###   @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
2652###   @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 nullable=1 is_null=0 */
2653###   @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
2654###   @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2655###   @5=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2656###   @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2657###   @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
2658###   @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2659###   @9=1 /* SHORTINT meta=0 nullable=1 is_null=0 */
2660###   @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2661###   @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2662###   @12=1 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2663###   @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
2664###   @14=0 /* INT meta=0 nullable=1 is_null=0 */
2665###   @15=1 /* INT meta=0 nullable=1 is_null=0 */
2666###   @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
2667###   @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2668###   @18=1 /* LONGINT meta=0 nullable=1 is_null=0 */
2669###   @19=-1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
2670###   @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
2671###   @21=1                    /* FLOAT meta=4 nullable=1 is_null=0 */
2672###   @22=-2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
2673###   @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
2674###   @24=1 /* DOUBLE meta=8 nullable=1 is_null=0 */
2675###   @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2676###   @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2677###   @27=1 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2678###   @28='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
2679###   @29='2008-08-04 16:18:06' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
2680###   @30=1217855904 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
2681###   @31='16:18:47' /* TIME(0) meta=0 nullable=1 is_null=0 */
2682###   @32=2008 /* YEAR meta=0 nullable=1 is_null=0 */
2683###   @33='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2684###   @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2685###   @35='e' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2686###   @36='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2687###   @37='ä' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2688###   @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2689###   @39='ö' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2690###   @40='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* STRING(765) meta=57085 nullable=1 is_null=0 */
2691###   @41='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2692###   @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2693###   @43='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2694###   @44='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* STRING(510) meta=61182 nullable=1 is_null=0 */
2695###   @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2696###   @46='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2697###   @47='eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2698###   @48='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2699###   @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2700###   @50='ä' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2701###   @51='ööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
2702###   @52='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
2703###   @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2704###   @54='\x00�' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2705###   @55='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
2706###   @56='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
2707###   @57='0' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2708###   @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2709###   @59='1' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2710###   @60='111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2711###   @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2712###   @62='b' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2713###   @63='ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2714###   @64='\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2715###   @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2716###   @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2717###   @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2718###   @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2719###   @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2720###   @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2721###   @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2722###   @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2723###   @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2724###   @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2725###   @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2726###   @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2727###   @77=2 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2728###   @78=b'00000110' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2729###   @79=4 /* INT meta=0 nullable=1 is_null=0 */
2730# at #
2731#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
2732COMMIT/*!*/;
2733# at #
2734#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
2735SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
2736# at #
2737#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
2738SET TIMESTAMP=1000000000/*!*/;
2739BEGIN
2740/*!*/;
2741# at #
2742#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
2743# at #
2744#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Update_rows: table id # flags: STMT_END_F
2745### UPDATE `test`.`t1`
2746### WHERE
2747###   @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
2748###   @2=b'0000000000000000000000000000000000000000000000000000000000000000' /* BIT(64) meta=2048 nullable=1 is_null=0 */
2749###   @3=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
2750###   @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2751###   @5=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2752###   @6=0 /* TINYINT meta=0 nullable=1 is_null=0 */
2753###   @7=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
2754###   @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2755###   @9=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
2756###   @10=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2757###   @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2758###   @12=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2759###   @13=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
2760###   @14=0 /* INT meta=0 nullable=1 is_null=0 */
2761###   @15=0 /* INT meta=0 nullable=1 is_null=0 */
2762###   @16=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
2763###   @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2764###   @18=0 /* LONGINT meta=0 nullable=1 is_null=0 */
2765###   @19=-3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2766###   @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
2767###   @21=0                    /* FLOAT meta=4 nullable=1 is_null=0 */
2768###   @22=-1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2769###   @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
2770###   @24=0 /* DOUBLE meta=8 nullable=1 is_null=0 */
2771###   @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2772###   @26=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2773###   @27=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2774###   @28='1000:01:01' /* DATE meta=0 nullable=1 is_null=0 */
2775###   @29='1000-01-01 00:00:00' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
2776###   @30=75601 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
2777###   @31='-838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
2778###   @32=1901 /* YEAR meta=0 nullable=1 is_null=0 */
2779###   @33='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2780###   @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2781###   @35='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2782###   @36='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2783###   @37='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2784###   @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2785###   @39='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2786###   @40='' /* STRING(765) meta=57085 nullable=1 is_null=0 */
2787###   @41='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2788###   @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2789###   @43='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2790###   @44='' /* STRING(510) meta=61182 nullable=1 is_null=0 */
2791###   @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2792###   @46='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2793###   @47='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2794###   @48='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2795###   @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2796###   @50='' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2797###   @51='' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
2798###   @52='' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
2799###   @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2800###   @54='' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2801###   @55='' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
2802###   @56='' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
2803###   @57='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2804###   @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2805###   @59='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2806###   @60='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2807###   @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2808###   @62='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2809###   @63='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2810###   @64='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2811###   @65='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2812###   @66='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2813###   @67='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2814###   @68='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2815###   @69='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2816###   @70='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2817###   @71='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2818###   @72='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2819###   @73='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2820###   @74='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2821###   @75='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2822###   @76='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2823###   @77=1 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2824###   @78=b'00000000' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2825###   @79=1 /* INT meta=0 nullable=1 is_null=0 */
2826### SET
2827###   @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
2828###   @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 nullable=1 is_null=0 */
2829###   @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
2830###   @4=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2831###   @5=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2832###   @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2833###   @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
2834###   @8=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2835###   @9=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2836###   @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2837###   @11=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2838###   @12=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2839###   @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
2840###   @14=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2841###   @15=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2842###   @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
2843###   @17=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2844###   @18=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2845###   @19=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2846###   @20=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2847###   @21=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2848###   @22=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2849###   @23=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2850###   @24=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2851###   @25=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2852###   @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2853###   @27=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2854###   @28='9999:12:31' /* DATE meta=0 nullable=1 is_null=0 */
2855###   @29='9999-12-31 23:59:59' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
2856###   @30=2146522447 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
2857###   @31='838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
2858###   @32=2155 /* YEAR meta=0 nullable=1 is_null=0 */
2859###   @33='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2860###   @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2861###   @35='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2862###   @36='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2863###   @37='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2864###   @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2865###   @39='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2866###   @40='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* STRING(765) meta=57085 nullable=1 is_null=0 */
2867###   @41='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2868###   @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2869###   @43='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2870###   @44='������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* STRING(510) meta=61182 nullable=1 is_null=0 */
2871###   @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2872###   @46='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2873###   @47='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2874###   @48='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2875###   @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2876###   @50='￿' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2877###   @51='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
2878###   @52='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
2879###   @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2880###   @54='��' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2881###   @55='������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
2882###   @56='������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
2883###   @57='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2884###   @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2885###   @59='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2886###   @60='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2887###   @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2888###   @62='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2889###   @63='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2890###   @64='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2891###   @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2892###   @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2893###   @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2894###   @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2895###   @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2896###   @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2897###   @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2898###   @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2899###   @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2900###   @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2901###   @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2902###   @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2903###   @77=3 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
2904###   @78=b'00000111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
2905###   @79=1 /* INT meta=0 nullable=1 is_null=0 */
2906# at #
2907#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
2908COMMIT/*!*/;
2909# at #
2910#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
2911SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
2912# at #
2913#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
2914SET TIMESTAMP=1000000000/*!*/;
2915BEGIN
2916/*!*/;
2917# at #
2918#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
2919# at #
2920#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Update_rows: table id # flags: STMT_END_F
2921### UPDATE `test`.`t1`
2922### WHERE
2923###   @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
2924###   @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 nullable=1 is_null=0 */
2925###   @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
2926###   @4=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2927###   @5=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
2928###   @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
2929###   @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
2930###   @8=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2931###   @9=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
2932###   @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2933###   @11=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2934###   @12=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
2935###   @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
2936###   @14=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2937###   @15=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
2938###   @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
2939###   @17=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2940###   @18=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
2941###   @19=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2942###   @20=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2943###   @21=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
2944###   @22=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2945###   @23=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2946###   @24=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
2947###   @25=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2948###   @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2949###   @27=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
2950###   @28='9999:12:31' /* DATE meta=0 nullable=1 is_null=0 */
2951###   @29='9999-12-31 23:59:59' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
2952###   @30=2146522447 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
2953###   @31='838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
2954###   @32=2155 /* YEAR meta=0 nullable=1 is_null=0 */
2955###   @33='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2956###   @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2957###   @35='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2958###   @36='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2959###   @37='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2960###   @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2961###   @39='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
2962###   @40='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* STRING(765) meta=57085 nullable=1 is_null=0 */
2963###   @41='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2964###   @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2965###   @43='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
2966###   @44='������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* STRING(510) meta=61182 nullable=1 is_null=0 */
2967###   @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2968###   @46='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2969###   @47='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2970###   @48='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2971###   @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2972###   @50='￿' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
2973###   @51='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
2974###   @52='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
2975###   @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2976###   @54='��' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
2977###   @55='������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
2978###   @56='������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
2979###   @57='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2980###   @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
2981###   @59='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
2982###   @60='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is_null=0 */
2983###   @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
2984###   @62='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
2985###   @63='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
2986###   @64='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
2987###   @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2988###   @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2989###   @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
2990###   @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2991###   @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2992###   @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
2993###   @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2994###   @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2995###   @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
2996###   @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2997###   @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2998###   @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
2999###   @77=3 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3000###   @78=b'00000111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3001###   @79=2 /* INT meta=0 nullable=1 is_null=0 */
3002### SET
3003###   @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
3004###   @2=b'0000000000000000000000000000000000000000000000000000000000000000' /* BIT(64) meta=2048 nullable=1 is_null=0 */
3005###   @3=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
3006###   @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3007###   @5=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3008###   @6=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3009###   @7=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
3010###   @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3011###   @9=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3012###   @10=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3013###   @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3014###   @12=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3015###   @13=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
3016###   @14=0 /* INT meta=0 nullable=1 is_null=0 */
3017###   @15=0 /* INT meta=0 nullable=1 is_null=0 */
3018###   @16=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
3019###   @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3020###   @18=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3021###   @19=-3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3022###   @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3023###   @21=0                    /* FLOAT meta=4 nullable=1 is_null=0 */
3024###   @22=-1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3025###   @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3026###   @24=0 /* DOUBLE meta=8 nullable=1 is_null=0 */
3027###   @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3028###   @26=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3029###   @27=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3030###   @28='1000:01:01' /* DATE meta=0 nullable=1 is_null=0 */
3031###   @29='1000-01-01 00:00:00' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
3032###   @30=75601 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3033###   @31='-838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
3034###   @32=1901 /* YEAR meta=0 nullable=1 is_null=0 */
3035###   @33='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3036###   @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3037###   @35='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3038###   @36='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3039###   @37='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3040###   @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3041###   @39='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3042###   @40='' /* STRING(765) meta=57085 nullable=1 is_null=0 */
3043###   @41='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3044###   @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3045###   @43='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3046###   @44='' /* STRING(510) meta=61182 nullable=1 is_null=0 */
3047###   @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3048###   @46='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3049###   @47='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3050###   @48='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3051###   @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3052###   @50='' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3053###   @51='' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
3054###   @52='' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
3055###   @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3056###   @54='' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3057###   @55='' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
3058###   @56='' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
3059###   @57='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3060###   @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3061###   @59='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3062###   @60='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3063###   @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3064###   @62='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3065###   @63='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3066###   @64='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3067###   @65='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3068###   @66='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3069###   @67='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3070###   @68='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3071###   @69='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3072###   @70='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3073###   @71='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3074###   @72='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3075###   @73='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3076###   @74='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3077###   @75='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3078###   @76='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3079###   @77=1 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3080###   @78=b'00000000' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3081###   @79=2 /* INT meta=0 nullable=1 is_null=0 */
3082# at #
3083#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
3084COMMIT/*!*/;
3085# at #
3086#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
3087SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
3088# at #
3089#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
3090SET TIMESTAMP=1000000000/*!*/;
3091BEGIN
3092/*!*/;
3093# at #
3094#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
3095# at #
3096#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Update_rows: table id # flags: STMT_END_F
3097### UPDATE `test`.`t1`
3098### WHERE
3099###   @1=NULL /* type=16 meta=1 nullable=1 is_null=1 */
3100###   @2=NULL /* type=16 meta=2048 nullable=1 is_null=1 */
3101###   @3=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3102###   @4=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3103###   @5=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3104###   @6=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3105###   @7=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3106###   @8=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3107###   @9=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3108###   @10=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3109###   @11=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3110###   @12=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3111###   @13=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3112###   @14=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3113###   @15=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3114###   @16=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3115###   @17=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3116###   @18=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3117###   @19=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3118###   @20=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3119###   @21=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3120###   @22=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3121###   @23=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3122###   @24=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3123###   @25=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3124###   @26=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3125###   @27=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3126###   @28=NULL /* type=14 meta=0 nullable=1 is_null=1 */
3127###   @29=NULL /* type=18 meta=0 nullable=1 is_null=1 */
3128###   @30=1000000000 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3129###   @31=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3130###   @32=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3131###   @33=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
3132###   @34=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
3133###   @35=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
3134###   @36=NULL /* TIMESTAMP(0) meta=65279 nullable=1 is_null=1 */
3135###   @37=NULL /* TIMESTAMP(0) meta=65027 nullable=1 is_null=1 */
3136###   @38=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
3137###   @39=NULL /* TIMESTAMP(0) meta=65027 nullable=1 is_null=1 */
3138###   @40=NULL /* TIMESTAMP(0) meta=57085 nullable=1 is_null=1 */
3139###   @41=NULL /* TIMESTAMP(0) meta=65026 nullable=1 is_null=1 */
3140###   @42=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
3141###   @43=NULL /* TIMESTAMP(0) meta=65026 nullable=1 is_null=1 */
3142###   @44=NULL /* TIMESTAMP(0) meta=61182 nullable=1 is_null=1 */
3143###   @45=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3144###   @46=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3145###   @47=NULL /* TIMESTAMP(0) meta=255 nullable=1 is_null=1 */
3146###   @48=NULL /* TIMESTAMP(0) meta=261 nullable=1 is_null=1 */
3147###   @49=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3148###   @50=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
3149###   @51=NULL /* TIMESTAMP(0) meta=765 nullable=1 is_null=1 */
3150###   @52=NULL /* TIMESTAMP(0) meta=783 nullable=1 is_null=1 */
3151###   @53=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3152###   @54=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
3153###   @55=NULL /* TIMESTAMP(0) meta=510 nullable=1 is_null=1 */
3154###   @56=NULL /* TIMESTAMP(0) meta=522 nullable=1 is_null=1 */
3155###   @57=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
3156###   @58=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
3157###   @59=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
3158###   @60=NULL /* TIMESTAMP(0) meta=65279 nullable=1 is_null=1 */
3159###   @61=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3160###   @62=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3161###   @63=NULL /* TIMESTAMP(0) meta=255 nullable=1 is_null=1 */
3162###   @64=NULL /* TIMESTAMP(0) meta=261 nullable=1 is_null=1 */
3163###   @65=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3164###   @66=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3165###   @67=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3166###   @68=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
3167###   @69=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
3168###   @70=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
3169###   @71=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
3170###   @72=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
3171###   @73=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
3172###   @74=NULL /* TIMESTAMP(0) meta=4 nullable=1 is_null=1 */
3173###   @75=NULL /* TIMESTAMP(0) meta=4 nullable=1 is_null=1 */
3174###   @76=NULL /* TIMESTAMP(0) meta=4 nullable=1 is_null=1 */
3175###   @77=NULL /* TIMESTAMP(0) meta=63233 nullable=1 is_null=1 */
3176###   @78=NULL /* TIMESTAMP(0) meta=63489 nullable=1 is_null=1 */
3177###   @79=3 /* INT meta=0 nullable=1 is_null=0 */
3178### SET
3179###   @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
3180###   @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 nullable=1 is_null=0 */
3181###   @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
3182###   @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3183###   @5=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3184###   @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3185###   @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
3186###   @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3187###   @9=1 /* SHORTINT meta=0 nullable=1 is_null=0 */
3188###   @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3189###   @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3190###   @12=1 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3191###   @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
3192###   @14=0 /* INT meta=0 nullable=1 is_null=0 */
3193###   @15=1 /* INT meta=0 nullable=1 is_null=0 */
3194###   @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
3195###   @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3196###   @18=1 /* LONGINT meta=0 nullable=1 is_null=0 */
3197###   @19=-1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3198###   @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3199###   @21=1                    /* FLOAT meta=4 nullable=1 is_null=0 */
3200###   @22=-2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3201###   @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3202###   @24=1 /* DOUBLE meta=8 nullable=1 is_null=0 */
3203###   @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3204###   @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3205###   @27=1 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3206###   @28='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
3207###   @29='2008-08-04 16:18:06' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
3208###   @30=1217855904 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3209###   @31='16:18:47' /* TIME(0) meta=0 nullable=1 is_null=0 */
3210###   @32=2008 /* YEAR meta=0 nullable=1 is_null=0 */
3211###   @33='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3212###   @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3213###   @35='e' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3214###   @36='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3215###   @37='ä' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3216###   @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3217###   @39='ö' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3218###   @40='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* STRING(765) meta=57085 nullable=1 is_null=0 */
3219###   @41='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3220###   @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3221###   @43='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3222###   @44='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* STRING(510) meta=61182 nullable=1 is_null=0 */
3223###   @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3224###   @46='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3225###   @47='eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3226###   @48='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3227###   @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3228###   @50='ä' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3229###   @51='ööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
3230###   @52='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
3231###   @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3232###   @54='\x00�' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3233###   @55='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
3234###   @56='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
3235###   @57='0' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3236###   @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3237###   @59='1' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3238###   @60='111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3239###   @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3240###   @62='b' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3241###   @63='ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3242###   @64='\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3243###   @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3244###   @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3245###   @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3246###   @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3247###   @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3248###   @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3249###   @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3250###   @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3251###   @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3252###   @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3253###   @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3254###   @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3255###   @77=2 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3256###   @78=b'00000110' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3257###   @79=3 /* INT meta=0 nullable=1 is_null=0 */
3258# at #
3259#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
3260COMMIT/*!*/;
3261# at #
3262#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
3263SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
3264# at #
3265#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
3266SET TIMESTAMP=1000000000/*!*/;
3267BEGIN
3268/*!*/;
3269# at #
3270#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
3271# at #
3272#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Update_rows: table id # flags: STMT_END_F
3273### UPDATE `test`.`t1`
3274### WHERE
3275###   @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
3276###   @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 nullable=1 is_null=0 */
3277###   @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
3278###   @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3279###   @5=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3280###   @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3281###   @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
3282###   @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3283###   @9=1 /* SHORTINT meta=0 nullable=1 is_null=0 */
3284###   @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3285###   @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3286###   @12=1 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3287###   @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
3288###   @14=0 /* INT meta=0 nullable=1 is_null=0 */
3289###   @15=1 /* INT meta=0 nullable=1 is_null=0 */
3290###   @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
3291###   @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3292###   @18=1 /* LONGINT meta=0 nullable=1 is_null=0 */
3293###   @19=-1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3294###   @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3295###   @21=1                    /* FLOAT meta=4 nullable=1 is_null=0 */
3296###   @22=-2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3297###   @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3298###   @24=1 /* DOUBLE meta=8 nullable=1 is_null=0 */
3299###   @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3300###   @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3301###   @27=1 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3302###   @28='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
3303###   @29='2008-08-04 16:18:06' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
3304###   @30=1217855904 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3305###   @31='16:18:47' /* TIME(0) meta=0 nullable=1 is_null=0 */
3306###   @32=2008 /* YEAR meta=0 nullable=1 is_null=0 */
3307###   @33='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3308###   @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3309###   @35='e' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3310###   @36='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3311###   @37='ä' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3312###   @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3313###   @39='ö' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3314###   @40='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* STRING(765) meta=57085 nullable=1 is_null=0 */
3315###   @41='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3316###   @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3317###   @43='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3318###   @44='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* STRING(510) meta=61182 nullable=1 is_null=0 */
3319###   @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3320###   @46='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3321###   @47='eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3322###   @48='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3323###   @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3324###   @50='ä' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3325###   @51='ööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
3326###   @52='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
3327###   @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3328###   @54='\x00�' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3329###   @55='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
3330###   @56='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
3331###   @57='0' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3332###   @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3333###   @59='1' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3334###   @60='111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3335###   @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3336###   @62='b' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3337###   @63='ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3338###   @64='\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3339###   @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3340###   @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3341###   @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3342###   @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3343###   @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3344###   @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3345###   @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3346###   @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3347###   @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3348###   @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3349###   @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3350###   @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3351###   @77=2 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3352###   @78=b'00000110' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3353###   @79=4 /* INT meta=0 nullable=1 is_null=0 */
3354### SET
3355###   @1=NULL /* type=16 meta=1 nullable=1 is_null=1 */
3356###   @2=NULL /* type=16 meta=2048 nullable=1 is_null=1 */
3357###   @3=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3358###   @4=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3359###   @5=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3360###   @6=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3361###   @7=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3362###   @8=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3363###   @9=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3364###   @10=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3365###   @11=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3366###   @12=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3367###   @13=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3368###   @14=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3369###   @15=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3370###   @16=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3371###   @17=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3372###   @18=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3373###   @19=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3374###   @20=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3375###   @21=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3376###   @22=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3377###   @23=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3378###   @24=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3379###   @25=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3380###   @26=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3381###   @27=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3382###   @28=NULL /* type=14 meta=0 nullable=1 is_null=1 */
3383###   @29=NULL /* type=18 meta=0 nullable=1 is_null=1 */
3384###   @30=1000000000 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3385###   @31=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3386###   @32=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3387###   @33=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
3388###   @34=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
3389###   @35=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
3390###   @36=NULL /* TIMESTAMP(0) meta=65279 nullable=1 is_null=1 */
3391###   @37=NULL /* TIMESTAMP(0) meta=65027 nullable=1 is_null=1 */
3392###   @38=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
3393###   @39=NULL /* TIMESTAMP(0) meta=65027 nullable=1 is_null=1 */
3394###   @40=NULL /* TIMESTAMP(0) meta=57085 nullable=1 is_null=1 */
3395###   @41=NULL /* TIMESTAMP(0) meta=65026 nullable=1 is_null=1 */
3396###   @42=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
3397###   @43=NULL /* TIMESTAMP(0) meta=65026 nullable=1 is_null=1 */
3398###   @44=NULL /* TIMESTAMP(0) meta=61182 nullable=1 is_null=1 */
3399###   @45=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3400###   @46=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3401###   @47=NULL /* TIMESTAMP(0) meta=255 nullable=1 is_null=1 */
3402###   @48=NULL /* TIMESTAMP(0) meta=261 nullable=1 is_null=1 */
3403###   @49=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3404###   @50=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
3405###   @51=NULL /* TIMESTAMP(0) meta=765 nullable=1 is_null=1 */
3406###   @52=NULL /* TIMESTAMP(0) meta=783 nullable=1 is_null=1 */
3407###   @53=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3408###   @54=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
3409###   @55=NULL /* TIMESTAMP(0) meta=510 nullable=1 is_null=1 */
3410###   @56=NULL /* TIMESTAMP(0) meta=522 nullable=1 is_null=1 */
3411###   @57=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
3412###   @58=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
3413###   @59=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
3414###   @60=NULL /* TIMESTAMP(0) meta=65279 nullable=1 is_null=1 */
3415###   @61=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3416###   @62=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3417###   @63=NULL /* TIMESTAMP(0) meta=255 nullable=1 is_null=1 */
3418###   @64=NULL /* TIMESTAMP(0) meta=261 nullable=1 is_null=1 */
3419###   @65=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3420###   @66=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3421###   @67=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3422###   @68=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
3423###   @69=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
3424###   @70=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
3425###   @71=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
3426###   @72=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
3427###   @73=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
3428###   @74=NULL /* TIMESTAMP(0) meta=4 nullable=1 is_null=1 */
3429###   @75=NULL /* TIMESTAMP(0) meta=4 nullable=1 is_null=1 */
3430###   @76=NULL /* TIMESTAMP(0) meta=4 nullable=1 is_null=1 */
3431###   @77=NULL /* TIMESTAMP(0) meta=63233 nullable=1 is_null=1 */
3432###   @78=NULL /* TIMESTAMP(0) meta=63489 nullable=1 is_null=1 */
3433###   @79=4 /* INT meta=0 nullable=1 is_null=0 */
3434# at #
3435#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
3436COMMIT/*!*/;
3437# at #
3438#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
3439SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
3440# at #
3441#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
3442SET TIMESTAMP=1000000000/*!*/;
3443BEGIN
3444/*!*/;
3445# at #
3446#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
3447# at #
3448#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Delete_rows: table id # flags: STMT_END_F
3449### DELETE FROM `test`.`t1`
3450### WHERE
3451###   @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
3452###   @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 nullable=1 is_null=0 */
3453###   @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
3454###   @4=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
3455###   @5=-1 (255) /* TINYINT meta=0 nullable=1 is_null=0 */
3456###   @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3457###   @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
3458###   @8=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
3459###   @9=-1 (65535) /* SHORTINT meta=0 nullable=1 is_null=0 */
3460###   @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3461###   @11=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3462###   @12=-1 (16777215) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3463###   @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
3464###   @14=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
3465###   @15=-1 (4294967295) /* INT meta=0 nullable=1 is_null=0 */
3466###   @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
3467###   @17=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
3468###   @18=-1 (18446744073709551615) /* LONGINT meta=0 nullable=1 is_null=0 */
3469###   @19=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3470###   @20=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3471###   @21=3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3472###   @22=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3473###   @23=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3474###   @24=1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3475###   @25=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3476###   @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3477###   @27=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3478###   @28='9999:12:31' /* DATE meta=0 nullable=1 is_null=0 */
3479###   @29='9999-12-31 23:59:59' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
3480###   @30=2146522447 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3481###   @31='838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
3482###   @32=2155 /* YEAR meta=0 nullable=1 is_null=0 */
3483###   @33='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3484###   @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3485###   @35='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3486###   @36='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3487###   @37='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3488###   @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3489###   @39='￿' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3490###   @40='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* STRING(765) meta=57085 nullable=1 is_null=0 */
3491###   @41='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3492###   @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3493###   @43='��' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3494###   @44='������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* STRING(510) meta=61182 nullable=1 is_null=0 */
3495###   @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3496###   @46='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3497###   @47='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3498###   @48='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3499###   @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3500###   @50='￿' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3501###   @51='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
3502###   @52='￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿￿' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
3503###   @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3504###   @54='��' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3505###   @55='������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
3506###   @56='������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
3507###   @57='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3508###   @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3509###   @59='�' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3510###   @60='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3511###   @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3512###   @62='�' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3513###   @63='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3514###   @64='���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3515###   @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3516###   @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3517###   @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3518###   @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3519###   @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3520###   @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3521###   @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3522###   @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3523###   @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3524###   @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3525###   @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3526###   @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3527###   @77=3 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3528###   @78=b'00000111' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3529###   @79=1 /* INT meta=0 nullable=1 is_null=0 */
3530# at #
3531#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
3532COMMIT/*!*/;
3533# at #
3534#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
3535SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
3536# at #
3537#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
3538SET TIMESTAMP=1000000000/*!*/;
3539BEGIN
3540/*!*/;
3541# at #
3542#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
3543# at #
3544#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Delete_rows: table id # flags: STMT_END_F
3545### DELETE FROM `test`.`t1`
3546### WHERE
3547###   @1=b'0' /* BIT(1) meta=1 nullable=1 is_null=0 */
3548###   @2=b'0000000000000000000000000000000000000000000000000000000000000000' /* BIT(64) meta=2048 nullable=1 is_null=0 */
3549###   @3=-128 (128) /* TINYINT meta=0 nullable=1 is_null=0 */
3550###   @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3551###   @5=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3552###   @6=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3553###   @7=-32768 (32768) /* SHORTINT meta=0 nullable=1 is_null=0 */
3554###   @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3555###   @9=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3556###   @10=-8388608 (8388608) /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3557###   @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3558###   @12=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3559###   @13=-2147483648 (2147483648) /* INT meta=0 nullable=1 is_null=0 */
3560###   @14=0 /* INT meta=0 nullable=1 is_null=0 */
3561###   @15=0 /* INT meta=0 nullable=1 is_null=0 */
3562###   @16=-9223372036854775808 (9223372036854775808) /* LONGINT meta=0 nullable=1 is_null=0 */
3563###   @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3564###   @18=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3565###   @19=-3.402... /* FLOAT meta=4 nullable=1 is_null=0 */
3566###   @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3567###   @21=0                    /* FLOAT meta=4 nullable=1 is_null=0 */
3568###   @22=-1.797... /* DOUBLE meta=8 nullable=1 is_null=0 */
3569###   @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3570###   @24=0 /* DOUBLE meta=8 nullable=1 is_null=0 */
3571###   @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3572###   @26=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3573###   @27=0 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3574###   @28='1000:01:01' /* DATE meta=0 nullable=1 is_null=0 */
3575###   @29='1000-01-01 00:00:00' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
3576###   @30=75601 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3577###   @31='-838:59:59' /* TIME(0) meta=0 nullable=1 is_null=0 */
3578###   @32=1901 /* YEAR meta=0 nullable=1 is_null=0 */
3579###   @33='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3580###   @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3581###   @35='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3582###   @36='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3583###   @37='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3584###   @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3585###   @39='' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3586###   @40='' /* STRING(765) meta=57085 nullable=1 is_null=0 */
3587###   @41='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3588###   @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3589###   @43='' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3590###   @44='' /* STRING(510) meta=61182 nullable=1 is_null=0 */
3591###   @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3592###   @46='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3593###   @47='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3594###   @48='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3595###   @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3596###   @50='' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3597###   @51='' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
3598###   @52='' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
3599###   @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3600###   @54='' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3601###   @55='' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
3602###   @56='' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
3603###   @57='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3604###   @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3605###   @59='' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3606###   @60='' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3607###   @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3608###   @62='' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3609###   @63='' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3610###   @64='' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3611###   @65='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3612###   @66='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3613###   @67='' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3614###   @68='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3615###   @69='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3616###   @70='' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3617###   @71='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3618###   @72='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3619###   @73='' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3620###   @74='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3621###   @75='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3622###   @76='' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3623###   @77=1 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3624###   @78=b'00000000' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3625###   @79=2 /* INT meta=0 nullable=1 is_null=0 */
3626# at #
3627#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
3628COMMIT/*!*/;
3629# at #
3630#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
3631SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
3632# at #
3633#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
3634SET TIMESTAMP=1000000000/*!*/;
3635BEGIN
3636/*!*/;
3637# at #
3638#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
3639# at #
3640#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Delete_rows: table id # flags: STMT_END_F
3641### DELETE FROM `test`.`t1`
3642### WHERE
3643###   @1=b'1' /* BIT(1) meta=1 nullable=1 is_null=0 */
3644###   @2=b'1111111111111111111111111111111111111111111111111111111111111111' /* BIT(64) meta=2048 nullable=1 is_null=0 */
3645###   @3=127 /* TINYINT meta=0 nullable=1 is_null=0 */
3646###   @4=0 /* TINYINT meta=0 nullable=1 is_null=0 */
3647###   @5=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3648###   @6=1 /* TINYINT meta=0 nullable=1 is_null=0 */
3649###   @7=32767 /* SHORTINT meta=0 nullable=1 is_null=0 */
3650###   @8=0 /* SHORTINT meta=0 nullable=1 is_null=0 */
3651###   @9=1 /* SHORTINT meta=0 nullable=1 is_null=0 */
3652###   @10=8388607 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3653###   @11=0 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3654###   @12=1 /* MEDIUMINT meta=0 nullable=1 is_null=0 */
3655###   @13=2147483647 /* INT meta=0 nullable=1 is_null=0 */
3656###   @14=0 /* INT meta=0 nullable=1 is_null=0 */
3657###   @15=1 /* INT meta=0 nullable=1 is_null=0 */
3658###   @16=9223372036854775807 /* LONGINT meta=0 nullable=1 is_null=0 */
3659###   @17=0 /* LONGINT meta=0 nullable=1 is_null=0 */
3660###   @18=1 /* LONGINT meta=0 nullable=1 is_null=0 */
3661###   @19=-1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3662###   @20=1.175... /* FLOAT meta=4 nullable=1 is_null=0 */
3663###   @21=1                    /* FLOAT meta=4 nullable=1 is_null=0 */
3664###   @22=-2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3665###   @23=2.225... /* DOUBLE meta=8 nullable=1 is_null=0 */
3666###   @24=1 /* DOUBLE meta=8 nullable=1 is_null=0 */
3667###   @25=-9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3668###   @26=9999999999 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3669###   @27=1 /* DECIMAL(10,0) meta=2560 nullable=1 is_null=0 */
3670###   @28='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
3671###   @29='2008-08-04 16:18:06' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
3672###   @30=1217855904 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3673###   @31='16:18:47' /* TIME(0) meta=0 nullable=1 is_null=0 */
3674###   @32=2008 /* YEAR meta=0 nullable=1 is_null=0 */
3675###   @33='a' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3676###   @34='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3677###   @35='e' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3678###   @36='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3679###   @37='ä' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3680###   @38='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3681###   @39='ö' /* STRING(3) meta=65027 nullable=1 is_null=0 */
3682###   @40='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* STRING(765) meta=57085 nullable=1 is_null=0 */
3683###   @41='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3684###   @42='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3685###   @43='\x00�' /* STRING(2) meta=65026 nullable=1 is_null=0 */
3686###   @44='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* STRING(510) meta=61182 nullable=1 is_null=0 */
3687###   @45='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3688###   @46='a' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3689###   @47='eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3690###   @48='iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3691###   @49='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3692###   @50='ä' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
3693###   @51='ööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööööö' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
3694###   @52='üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü' /* VARSTRING(783) meta=783 nullable=1 is_null=0 */
3695###   @53='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3696###   @54='\x00�' /* VARSTRING(2) meta=2 nullable=1 is_null=0 */
3697###   @55='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(510) meta=510 nullable=1 is_null=0 */
3698###   @56='\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�\x00�' /* VARSTRING(522) meta=522 nullable=1 is_null=0 */
3699###   @57='0' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3700###   @58='' /* STRING(0) meta=65024 nullable=1 is_null=0 */
3701###   @59='1' /* STRING(1) meta=65025 nullable=1 is_null=0 */
3702###   @60='111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111' /* STRING(255) meta=65279 nullable=1 is_null=0 */
3703###   @61='' /* VARSTRING(0) meta=0 nullable=1 is_null=0 */
3704###   @62='b' /* VARSTRING(1) meta=1 nullable=1 is_null=0 */
3705###   @63='ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
3706###   @64='\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27\x27' /* VARSTRING(261) meta=261 nullable=1 is_null=0 */
3707###   @65='tinyblob' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3708###   @66='tinytext' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3709###   @67='\x00t\x00i\x00n\x00y\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* TINYBLOB/TINYTEXT meta=1 nullable=1 is_null=0 */
3710###   @68='blob' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3711###   @69='text' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3712###   @70='\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* BLOB/TEXT meta=2 nullable=1 is_null=0 */
3713###   @71='mediumblob' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3714###   @72='mediumtext' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3715###   @73='\x00m\x00e\x00d\x00i\x00u\x00m\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* MEDIUMBLOB/MEDIUMTEXT meta=3 nullable=1 is_null=0 */
3716###   @74='longblob' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3717###   @75='longtext' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3718###   @76='\x00l\x00o\x00n\x00g\x00t\x00e\x00x\x00t\x00-\x00u\x00c\x00s\x002' /* LONGBLOB/LONGTEXT meta=4 nullable=1 is_null=0 */
3719###   @77=2 /* ENUM(1 byte) meta=63233 nullable=1 is_null=0 */
3720###   @78=b'00000110' /* SET(1 bytes) meta=63489 nullable=1 is_null=0 */
3721###   @79=3 /* INT meta=0 nullable=1 is_null=0 */
3722# at #
3723#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
3724COMMIT/*!*/;
3725# at #
3726#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
3727SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
3728# at #
3729#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
3730SET TIMESTAMP=1000000000/*!*/;
3731BEGIN
3732/*!*/;
3733# at #
3734#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
3735# at #
3736#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Delete_rows: table id # flags: STMT_END_F
3737### DELETE FROM `test`.`t1`
3738### WHERE
3739###   @1=NULL /* type=16 meta=1 nullable=1 is_null=1 */
3740###   @2=NULL /* type=16 meta=2048 nullable=1 is_null=1 */
3741###   @3=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3742###   @4=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3743###   @5=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3744###   @6=NULL /* type=1 meta=0 nullable=1 is_null=1 */
3745###   @7=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3746###   @8=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3747###   @9=NULL /* type=2 meta=0 nullable=1 is_null=1 */
3748###   @10=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3749###   @11=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3750###   @12=NULL /* type=9 meta=0 nullable=1 is_null=1 */
3751###   @13=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3752###   @14=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3753###   @15=NULL /* type=3 meta=0 nullable=1 is_null=1 */
3754###   @16=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3755###   @17=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3756###   @18=NULL /* type=8 meta=0 nullable=1 is_null=1 */
3757###   @19=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3758###   @20=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3759###   @21=NULL /* type=4 meta=4 nullable=1 is_null=1 */
3760###   @22=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3761###   @23=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3762###   @24=NULL /* type=5 meta=8 nullable=1 is_null=1 */
3763###   @25=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3764###   @26=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3765###   @27=NULL /* type=246 meta=2560 nullable=1 is_null=1 */
3766###   @28=NULL /* type=14 meta=0 nullable=1 is_null=1 */
3767###   @29=NULL /* type=18 meta=0 nullable=1 is_null=1 */
3768###   @30=1000000000 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
3769###   @31=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3770###   @32=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3771###   @33=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
3772###   @34=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
3773###   @35=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
3774###   @36=NULL /* TIMESTAMP(0) meta=65279 nullable=1 is_null=1 */
3775###   @37=NULL /* TIMESTAMP(0) meta=65027 nullable=1 is_null=1 */
3776###   @38=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
3777###   @39=NULL /* TIMESTAMP(0) meta=65027 nullable=1 is_null=1 */
3778###   @40=NULL /* TIMESTAMP(0) meta=57085 nullable=1 is_null=1 */
3779###   @41=NULL /* TIMESTAMP(0) meta=65026 nullable=1 is_null=1 */
3780###   @42=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
3781###   @43=NULL /* TIMESTAMP(0) meta=65026 nullable=1 is_null=1 */
3782###   @44=NULL /* TIMESTAMP(0) meta=61182 nullable=1 is_null=1 */
3783###   @45=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3784###   @46=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3785###   @47=NULL /* TIMESTAMP(0) meta=255 nullable=1 is_null=1 */
3786###   @48=NULL /* TIMESTAMP(0) meta=261 nullable=1 is_null=1 */
3787###   @49=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3788###   @50=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
3789###   @51=NULL /* TIMESTAMP(0) meta=765 nullable=1 is_null=1 */
3790###   @52=NULL /* TIMESTAMP(0) meta=783 nullable=1 is_null=1 */
3791###   @53=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3792###   @54=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
3793###   @55=NULL /* TIMESTAMP(0) meta=510 nullable=1 is_null=1 */
3794###   @56=NULL /* TIMESTAMP(0) meta=522 nullable=1 is_null=1 */
3795###   @57=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
3796###   @58=NULL /* TIMESTAMP(0) meta=65024 nullable=1 is_null=1 */
3797###   @59=NULL /* TIMESTAMP(0) meta=65025 nullable=1 is_null=1 */
3798###   @60=NULL /* TIMESTAMP(0) meta=65279 nullable=1 is_null=1 */
3799###   @61=NULL /* TIMESTAMP(0) meta=0 nullable=1 is_null=1 */
3800###   @62=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3801###   @63=NULL /* TIMESTAMP(0) meta=255 nullable=1 is_null=1 */
3802###   @64=NULL /* TIMESTAMP(0) meta=261 nullable=1 is_null=1 */
3803###   @65=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3804###   @66=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3805###   @67=NULL /* TIMESTAMP(0) meta=1 nullable=1 is_null=1 */
3806###   @68=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
3807###   @69=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
3808###   @70=NULL /* TIMESTAMP(0) meta=2 nullable=1 is_null=1 */
3809###   @71=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
3810###   @72=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
3811###   @73=NULL /* TIMESTAMP(0) meta=3 nullable=1 is_null=1 */
3812###   @74=NULL /* TIMESTAMP(0) meta=4 nullable=1 is_null=1 */
3813###   @75=NULL /* TIMESTAMP(0) meta=4 nullable=1 is_null=1 */
3814###   @76=NULL /* TIMESTAMP(0) meta=4 nullable=1 is_null=1 */
3815###   @77=NULL /* TIMESTAMP(0) meta=63233 nullable=1 is_null=1 */
3816###   @78=NULL /* TIMESTAMP(0) meta=63489 nullable=1 is_null=1 */
3817###   @79=4 /* INT meta=0 nullable=1 is_null=0 */
3818# at #
3819#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
3820COMMIT/*!*/;
3821SET @@SESSION.GTID_NEXT= 'GTID' /* added by mysqlbinlog */ /*!*/;
3822# at #
3823#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Rotate to master-bin.000002  pos: 4
3824DELIMITER ;
3825# End of log file
3826ROLLBACK /* added by mysqlbinlog */;
3827/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
3828/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;
3829#
3830# Cleanup.
3831#
3832DROP TABLE t1;
3833#
3834# =========================================
3835# Test #2 - Multi-row insert/update/delete.
3836# =========================================
3837#
3838# Delete all existing binary logs.
3839#
3840RESET MASTER;
3841#
3842# Create a test table with selected data types.
3843#
3844CREATE TABLE t1 (
3845c28 DATE,
3846c47 VARCHAR(24),
3847crn INT -- row number
3848) ENGINE=InnoDB DEFAULT CHARSET latin1;
3849#
3850# Show how much rows are affected by each statement.
3851#
3852#
3853# Multi-row insert.
3854#
3855INSERT INTO t1 VALUES
3856('2008-08-01','VARCHAR-01',1),
3857('2008-08-02','VARCHAR-02',2),
3858('2008-08-03','VARCHAR-03',3),
3859('2008-08-04','VARCHAR-04',4),
3860('2008-08-05','VARCHAR-05',5),
3861('2008-08-06','VARCHAR-06',6),
3862('2008-08-07','VARCHAR-07',7),
3863('2008-08-08','VARCHAR-08',8),
3864('2008-08-09','VARCHAR-09',9);
3865affected rows: 9
3866info: Records: 9  Duplicates: 0  Warnings: 0
3867#
3868# Multi-row update.
3869#
3870UPDATE t1 SET c28 = ADDDATE(c28,10) WHERE crn < 8;
3871affected rows: 7
3872info: Rows matched: 7  Changed: 7  Warnings: 0
3873#
3874# Show what we have in the table.
3875#
3876SELECT * FROM t1;
3877c28	c47	crn
38782008-08-11	VARCHAR-01	1
38792008-08-12	VARCHAR-02	2
38802008-08-13	VARCHAR-03	3
38812008-08-14	VARCHAR-04	4
38822008-08-15	VARCHAR-05	5
38832008-08-16	VARCHAR-06	6
38842008-08-17	VARCHAR-07	7
38852008-08-08	VARCHAR-08	8
38862008-08-09	VARCHAR-09	9
3887affected rows: 9
3888#
3889# Multi-row delete.
3890#
3891DELETE FROM t1 WHERE crn < 8;
3892affected rows: 7
3893#
3894# Show what we have in the table.
3895#
3896SELECT * FROM t1;
3897c28	c47	crn
38982008-08-08	VARCHAR-08	8
38992008-08-09	VARCHAR-09	9
3900affected rows: 2
3901#
3902# Hide how much rows are affected by each statement.
3903#
3904#
3905# Flush all log buffers to the log file.
3906#
3907FLUSH LOGS;
3908#
3909# Call mysqlbinlog to display the log file contents.
3910#
3911/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/;
3912/*!40019 SET @@session.max_insert_delayed_threads=0*/;
3913/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
3914DELIMITER /*!*/;
3915# at #
3916#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Start: binlog v 4, server v #.##.## created 010909  4:46:40 at startup
3917ROLLBACK/*!*/;
3918# at #
3919#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Previous-GTIDs
3920# [empty]
3921# at #
3922#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
3923SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
3924# at #
3925#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
3926use `test`/*!*/;
3927SET TIMESTAMP=1000000000/*!*/;
3928SET @@session.pseudo_thread_id=#/*!*/;
3929SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
3930SET @@session.sql_mode=1073741824/*!*/;
3931SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
3932/*!\C utf8 *//*!*/;
3933SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=8/*!*/;
3934SET @@session.lc_time_names=0/*!*/;
3935SET @@session.collation_database=DEFAULT/*!*/;
3936CREATE TABLE t1 (
3937c28 DATE,
3938c47 VARCHAR(24),
3939crn INT -- row number
3940) ENGINE=InnoDB DEFAULT CHARSET latin1
3941/*!*/;
3942# at #
3943#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
3944SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
3945# at #
3946#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
3947SET TIMESTAMP=1000000000/*!*/;
3948BEGIN
3949/*!*/;
3950# at #
3951#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
3952# at #
3953#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Write_rows: table id # flags: STMT_END_F
3954### INSERT INTO `test`.`t1`
3955### SET
3956###   @1='2008:08:01' /* DATE meta=0 nullable=1 is_null=0 */
3957###   @2='VARCHAR-01' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3958###   @3=1 /* INT meta=0 nullable=1 is_null=0 */
3959### INSERT INTO `test`.`t1`
3960### SET
3961###   @1='2008:08:02' /* DATE meta=0 nullable=1 is_null=0 */
3962###   @2='VARCHAR-02' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3963###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
3964### INSERT INTO `test`.`t1`
3965### SET
3966###   @1='2008:08:03' /* DATE meta=0 nullable=1 is_null=0 */
3967###   @2='VARCHAR-03' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3968###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
3969### INSERT INTO `test`.`t1`
3970### SET
3971###   @1='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
3972###   @2='VARCHAR-04' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3973###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
3974### INSERT INTO `test`.`t1`
3975### SET
3976###   @1='2008:08:05' /* DATE meta=0 nullable=1 is_null=0 */
3977###   @2='VARCHAR-05' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3978###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
3979### INSERT INTO `test`.`t1`
3980### SET
3981###   @1='2008:08:06' /* DATE meta=0 nullable=1 is_null=0 */
3982###   @2='VARCHAR-06' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3983###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
3984### INSERT INTO `test`.`t1`
3985### SET
3986###   @1='2008:08:07' /* DATE meta=0 nullable=1 is_null=0 */
3987###   @2='VARCHAR-07' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3988###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
3989### INSERT INTO `test`.`t1`
3990### SET
3991###   @1='2008:08:08' /* DATE meta=0 nullable=1 is_null=0 */
3992###   @2='VARCHAR-08' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3993###   @3=8 /* INT meta=0 nullable=1 is_null=0 */
3994### INSERT INTO `test`.`t1`
3995### SET
3996###   @1='2008:08:09' /* DATE meta=0 nullable=1 is_null=0 */
3997###   @2='VARCHAR-09' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
3998###   @3=9 /* INT meta=0 nullable=1 is_null=0 */
3999# at #
4000#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
4001COMMIT/*!*/;
4002# at #
4003#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4004SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4005# at #
4006#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4007SET TIMESTAMP=1000000000/*!*/;
4008BEGIN
4009/*!*/;
4010# at #
4011#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
4012# at #
4013#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Update_rows: table id # flags: STMT_END_F
4014### UPDATE `test`.`t1`
4015### WHERE
4016###   @1='2008:08:01' /* DATE meta=0 nullable=1 is_null=0 */
4017###   @2='VARCHAR-01' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4018###   @3=1 /* INT meta=0 nullable=1 is_null=0 */
4019### SET
4020###   @1='2008:08:11' /* DATE meta=0 nullable=1 is_null=0 */
4021###   @2='VARCHAR-01' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4022###   @3=1 /* INT meta=0 nullable=1 is_null=0 */
4023### UPDATE `test`.`t1`
4024### WHERE
4025###   @1='2008:08:02' /* DATE meta=0 nullable=1 is_null=0 */
4026###   @2='VARCHAR-02' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4027###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4028### SET
4029###   @1='2008:08:12' /* DATE meta=0 nullable=1 is_null=0 */
4030###   @2='VARCHAR-02' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4031###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4032### UPDATE `test`.`t1`
4033### WHERE
4034###   @1='2008:08:03' /* DATE meta=0 nullable=1 is_null=0 */
4035###   @2='VARCHAR-03' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4036###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4037### SET
4038###   @1='2008:08:13' /* DATE meta=0 nullable=1 is_null=0 */
4039###   @2='VARCHAR-03' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4040###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4041### UPDATE `test`.`t1`
4042### WHERE
4043###   @1='2008:08:04' /* DATE meta=0 nullable=1 is_null=0 */
4044###   @2='VARCHAR-04' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4045###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4046### SET
4047###   @1='2008:08:14' /* DATE meta=0 nullable=1 is_null=0 */
4048###   @2='VARCHAR-04' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4049###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4050### UPDATE `test`.`t1`
4051### WHERE
4052###   @1='2008:08:05' /* DATE meta=0 nullable=1 is_null=0 */
4053###   @2='VARCHAR-05' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4054###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4055### SET
4056###   @1='2008:08:15' /* DATE meta=0 nullable=1 is_null=0 */
4057###   @2='VARCHAR-05' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4058###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4059### UPDATE `test`.`t1`
4060### WHERE
4061###   @1='2008:08:06' /* DATE meta=0 nullable=1 is_null=0 */
4062###   @2='VARCHAR-06' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4063###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4064### SET
4065###   @1='2008:08:16' /* DATE meta=0 nullable=1 is_null=0 */
4066###   @2='VARCHAR-06' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4067###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4068### UPDATE `test`.`t1`
4069### WHERE
4070###   @1='2008:08:07' /* DATE meta=0 nullable=1 is_null=0 */
4071###   @2='VARCHAR-07' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4072###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4073### SET
4074###   @1='2008:08:17' /* DATE meta=0 nullable=1 is_null=0 */
4075###   @2='VARCHAR-07' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4076###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4077# at #
4078#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
4079COMMIT/*!*/;
4080# at #
4081#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4082SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4083# at #
4084#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4085SET TIMESTAMP=1000000000/*!*/;
4086BEGIN
4087/*!*/;
4088# at #
4089#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
4090# at #
4091#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Delete_rows: table id # flags: STMT_END_F
4092### DELETE FROM `test`.`t1`
4093### WHERE
4094###   @1='2008:08:11' /* DATE meta=0 nullable=1 is_null=0 */
4095###   @2='VARCHAR-01' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4096###   @3=1 /* INT meta=0 nullable=1 is_null=0 */
4097### DELETE FROM `test`.`t1`
4098### WHERE
4099###   @1='2008:08:12' /* DATE meta=0 nullable=1 is_null=0 */
4100###   @2='VARCHAR-02' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4101###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4102### DELETE FROM `test`.`t1`
4103### WHERE
4104###   @1='2008:08:13' /* DATE meta=0 nullable=1 is_null=0 */
4105###   @2='VARCHAR-03' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4106###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4107### DELETE FROM `test`.`t1`
4108### WHERE
4109###   @1='2008:08:14' /* DATE meta=0 nullable=1 is_null=0 */
4110###   @2='VARCHAR-04' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4111###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4112### DELETE FROM `test`.`t1`
4113### WHERE
4114###   @1='2008:08:15' /* DATE meta=0 nullable=1 is_null=0 */
4115###   @2='VARCHAR-05' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4116###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4117### DELETE FROM `test`.`t1`
4118### WHERE
4119###   @1='2008:08:16' /* DATE meta=0 nullable=1 is_null=0 */
4120###   @2='VARCHAR-06' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4121###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4122### DELETE FROM `test`.`t1`
4123### WHERE
4124###   @1='2008:08:17' /* DATE meta=0 nullable=1 is_null=0 */
4125###   @2='VARCHAR-07' /* VARSTRING(24) meta=24 nullable=1 is_null=0 */
4126###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4127# at #
4128#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
4129COMMIT/*!*/;
4130SET @@SESSION.GTID_NEXT= 'GTID' /* added by mysqlbinlog */ /*!*/;
4131# at #
4132#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Rotate to master-bin.000002  pos: 4
4133DELIMITER ;
4134# End of log file
4135ROLLBACK /* added by mysqlbinlog */;
4136/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
4137/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;
4138#
4139# Cleanup.
4140#
4141DROP TABLE t1;
4142#
4143# ====================================
4144# Test #3 - Multi-table update/delete.
4145# ====================================
4146#
4147# Delete all existing binary logs.
4148#
4149RESET MASTER;
4150#
4151# Create test tables with selected data types.
4152#
4153CREATE TABLE t1 (
4154c_1_1 DATE,
4155c_1_2 VARCHAR(255),
4156c_1_n INT -- row number
4157) ENGINE=InnoDB DEFAULT CHARSET latin1;
4158CREATE TABLE t2 (
4159c_2_1 DATE,
4160c_2_2 VARCHAR(255),
4161c_2_n INT -- row number
4162) ENGINE=InnoDB DEFAULT CHARSET latin1;
4163CREATE TABLE t3 (
4164c_3_1 DATE,
4165c_3_2 VARCHAR(255),
4166c_3_n INT -- row number
4167) ENGINE=InnoDB DEFAULT CHARSET latin1;
4168#
4169# Show how much rows are affected by each statement.
4170#
4171#
4172# Insert data.
4173#
4174INSERT INTO t1 VALUES
4175('2008-01-01','VARCHAR-01-01',11),
4176('2008-01-02','VARCHAR-01-02',2),
4177('2008-01-03','VARCHAR-01-03',3),
4178('2008-01-04','VARCHAR-01-04',4),
4179('2008-01-05','VARCHAR-01-05',5),
4180('2008-01-06','VARCHAR-01-06',6),
4181('2008-01-07','VARCHAR-01-07',7),
4182('2008-01-08','VARCHAR-01-08',18),
4183('2008-01-09','VARCHAR-01-09',19);
4184affected rows: 9
4185info: Records: 9  Duplicates: 0  Warnings: 0
4186INSERT INTO t2 VALUES
4187('2008-02-01','VARCHAR-02-01',21),
4188('2008-02-02','VARCHAR-02-02',2),
4189('2008-02-03','VARCHAR-02-03',3),
4190('2008-02-04','VARCHAR-02-04',4),
4191('2008-02-05','VARCHAR-02-05',5),
4192('2008-02-06','VARCHAR-02-06',6),
4193('2008-02-07','VARCHAR-02-07',7),
4194('2008-02-08','VARCHAR-02-08',28),
4195('2008-02-09','VARCHAR-02-09',29);
4196affected rows: 9
4197info: Records: 9  Duplicates: 0  Warnings: 0
4198INSERT INTO t3 VALUES
4199('2008-03-01','VARCHAR-03-01',31),
4200('2008-03-02','VARCHAR-03-02',2),
4201('2008-03-03','VARCHAR-03-03',3),
4202('2008-03-04','VARCHAR-03-04',4),
4203('2008-03-05','VARCHAR-03-05',5),
4204('2008-03-06','VARCHAR-03-06',6),
4205('2008-03-07','VARCHAR-03-07',7),
4206('2008-03-08','VARCHAR-03-08',38),
4207('2008-03-09','VARCHAR-03-09',39);
4208affected rows: 9
4209info: Records: 9  Duplicates: 0  Warnings: 0
4210ANALYZE TABLE t1;
4211Table	Op	Msg_type	Msg_text
4212test.t1	analyze	status	OK
4213affected rows: 1
4214ANALYZE TABLE t2;
4215Table	Op	Msg_type	Msg_text
4216test.t2	analyze	status	OK
4217affected rows: 1
4218ANALYZE TABLE t3;
4219Table	Op	Msg_type	Msg_text
4220test.t3	analyze	status	OK
4221affected rows: 1
4222#
4223# Multi-table update.
4224#
4225UPDATE t1,t2,t3 SET
4226c_1_1 = ADDDATE(c_1_1,INTERVAL 10 YEAR),
4227c_2_1 = ADDDATE(c_2_1,INTERVAL 20 YEAR),
4228c_3_1 = ADDDATE(c_3_1,INTERVAL 30 YEAR)
4229WHERE c_1_n = c_2_n AND c_2_n = c_3_n;
4230affected rows: 18
4231info: Rows matched: 18  Changed: 18  Warnings: 0
4232#
4233# Show what we have in the tables.
4234#
4235SELECT * FROM t1;
4236c_1_1	c_1_2	c_1_n
42372008-01-01	VARCHAR-01-01	11
42382018-01-02	VARCHAR-01-02	2
42392018-01-03	VARCHAR-01-03	3
42402018-01-04	VARCHAR-01-04	4
42412018-01-05	VARCHAR-01-05	5
42422018-01-06	VARCHAR-01-06	6
42432018-01-07	VARCHAR-01-07	7
42442008-01-08	VARCHAR-01-08	18
42452008-01-09	VARCHAR-01-09	19
4246affected rows: 9
4247SELECT * FROM t2;
4248c_2_1	c_2_2	c_2_n
42492008-02-01	VARCHAR-02-01	21
42502028-02-02	VARCHAR-02-02	2
42512028-02-03	VARCHAR-02-03	3
42522028-02-04	VARCHAR-02-04	4
42532028-02-05	VARCHAR-02-05	5
42542028-02-06	VARCHAR-02-06	6
42552028-02-07	VARCHAR-02-07	7
42562008-02-08	VARCHAR-02-08	28
42572008-02-09	VARCHAR-02-09	29
4258affected rows: 9
4259SELECT * FROM t3;
4260c_3_1	c_3_2	c_3_n
42612008-03-01	VARCHAR-03-01	31
42622038-03-02	VARCHAR-03-02	2
42632038-03-03	VARCHAR-03-03	3
42642038-03-04	VARCHAR-03-04	4
42652038-03-05	VARCHAR-03-05	5
42662038-03-06	VARCHAR-03-06	6
42672038-03-07	VARCHAR-03-07	7
42682008-03-08	VARCHAR-03-08	38
42692008-03-09	VARCHAR-03-09	39
4270affected rows: 9
4271#
4272# Multi-table delete.
4273#
4274DELETE FROM t1,t2,t3 USING t1 INNER JOIN t2 INNER JOIN t3
4275WHERE c_1_n = c_2_n AND c_2_n = c_3_n;
4276affected rows: 18
4277#
4278# Show what we have in the tables.
4279#
4280SELECT * FROM t1;
4281c_1_1	c_1_2	c_1_n
42822008-01-01	VARCHAR-01-01	11
42832008-01-08	VARCHAR-01-08	18
42842008-01-09	VARCHAR-01-09	19
4285affected rows: 3
4286SELECT * FROM t2;
4287c_2_1	c_2_2	c_2_n
42882008-02-01	VARCHAR-02-01	21
42892008-02-08	VARCHAR-02-08	28
42902008-02-09	VARCHAR-02-09	29
4291affected rows: 3
4292SELECT * FROM t3;
4293c_3_1	c_3_2	c_3_n
42942008-03-01	VARCHAR-03-01	31
42952008-03-08	VARCHAR-03-08	38
42962008-03-09	VARCHAR-03-09	39
4297affected rows: 3
4298#
4299# Hide how much rows are affected by each statement.
4300#
4301#
4302# Flush all log buffers to the log file.
4303#
4304FLUSH LOGS;
4305#
4306# Call mysqlbinlog to display the log file contents.
4307#
4308/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/;
4309/*!40019 SET @@session.max_insert_delayed_threads=0*/;
4310/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
4311DELIMITER /*!*/;
4312# at #
4313#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Start: binlog v 4, server v #.##.## created 010909  4:46:40 at startup
4314ROLLBACK/*!*/;
4315# at #
4316#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Previous-GTIDs
4317# [empty]
4318# at #
4319#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4320SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4321# at #
4322#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4323use `test`/*!*/;
4324SET TIMESTAMP=1000000000/*!*/;
4325SET @@session.pseudo_thread_id=#/*!*/;
4326SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
4327SET @@session.sql_mode=1073741824/*!*/;
4328SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
4329/*!\C utf8 *//*!*/;
4330SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=8/*!*/;
4331SET @@session.lc_time_names=0/*!*/;
4332SET @@session.collation_database=DEFAULT/*!*/;
4333CREATE TABLE t1 (
4334c_1_1 DATE,
4335c_1_2 VARCHAR(255),
4336c_1_n INT -- row number
4337) ENGINE=InnoDB DEFAULT CHARSET latin1
4338/*!*/;
4339# at #
4340#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4341SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4342# at #
4343#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4344SET TIMESTAMP=1000000000/*!*/;
4345CREATE TABLE t2 (
4346c_2_1 DATE,
4347c_2_2 VARCHAR(255),
4348c_2_n INT -- row number
4349) ENGINE=InnoDB DEFAULT CHARSET latin1
4350/*!*/;
4351# at #
4352#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4353SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4354# at #
4355#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4356SET TIMESTAMP=1000000000/*!*/;
4357CREATE TABLE t3 (
4358c_3_1 DATE,
4359c_3_2 VARCHAR(255),
4360c_3_n INT -- row number
4361) ENGINE=InnoDB DEFAULT CHARSET latin1
4362/*!*/;
4363# at #
4364#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4365SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4366# at #
4367#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4368SET TIMESTAMP=1000000000/*!*/;
4369BEGIN
4370/*!*/;
4371# at #
4372#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
4373# at #
4374#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Write_rows: table id # flags: STMT_END_F
4375### INSERT INTO `test`.`t1`
4376### SET
4377###   @1='2008:01:01' /* DATE meta=0 nullable=1 is_null=0 */
4378###   @2='VARCHAR-01-01' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4379###   @3=11 /* INT meta=0 nullable=1 is_null=0 */
4380### INSERT INTO `test`.`t1`
4381### SET
4382###   @1='2008:01:02' /* DATE meta=0 nullable=1 is_null=0 */
4383###   @2='VARCHAR-01-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4384###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4385### INSERT INTO `test`.`t1`
4386### SET
4387###   @1='2008:01:03' /* DATE meta=0 nullable=1 is_null=0 */
4388###   @2='VARCHAR-01-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4389###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4390### INSERT INTO `test`.`t1`
4391### SET
4392###   @1='2008:01:04' /* DATE meta=0 nullable=1 is_null=0 */
4393###   @2='VARCHAR-01-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4394###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4395### INSERT INTO `test`.`t1`
4396### SET
4397###   @1='2008:01:05' /* DATE meta=0 nullable=1 is_null=0 */
4398###   @2='VARCHAR-01-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4399###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4400### INSERT INTO `test`.`t1`
4401### SET
4402###   @1='2008:01:06' /* DATE meta=0 nullable=1 is_null=0 */
4403###   @2='VARCHAR-01-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4404###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4405### INSERT INTO `test`.`t1`
4406### SET
4407###   @1='2008:01:07' /* DATE meta=0 nullable=1 is_null=0 */
4408###   @2='VARCHAR-01-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4409###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4410### INSERT INTO `test`.`t1`
4411### SET
4412###   @1='2008:01:08' /* DATE meta=0 nullable=1 is_null=0 */
4413###   @2='VARCHAR-01-08' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4414###   @3=18 /* INT meta=0 nullable=1 is_null=0 */
4415### INSERT INTO `test`.`t1`
4416### SET
4417###   @1='2008:01:09' /* DATE meta=0 nullable=1 is_null=0 */
4418###   @2='VARCHAR-01-09' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4419###   @3=19 /* INT meta=0 nullable=1 is_null=0 */
4420# at #
4421#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
4422COMMIT/*!*/;
4423# at #
4424#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4425SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4426# at #
4427#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4428SET TIMESTAMP=1000000000/*!*/;
4429BEGIN
4430/*!*/;
4431# at #
4432#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t2` mapped to number #
4433# at #
4434#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Write_rows: table id # flags: STMT_END_F
4435### INSERT INTO `test`.`t2`
4436### SET
4437###   @1='2008:02:01' /* DATE meta=0 nullable=1 is_null=0 */
4438###   @2='VARCHAR-02-01' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4439###   @3=21 /* INT meta=0 nullable=1 is_null=0 */
4440### INSERT INTO `test`.`t2`
4441### SET
4442###   @1='2008:02:02' /* DATE meta=0 nullable=1 is_null=0 */
4443###   @2='VARCHAR-02-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4444###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4445### INSERT INTO `test`.`t2`
4446### SET
4447###   @1='2008:02:03' /* DATE meta=0 nullable=1 is_null=0 */
4448###   @2='VARCHAR-02-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4449###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4450### INSERT INTO `test`.`t2`
4451### SET
4452###   @1='2008:02:04' /* DATE meta=0 nullable=1 is_null=0 */
4453###   @2='VARCHAR-02-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4454###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4455### INSERT INTO `test`.`t2`
4456### SET
4457###   @1='2008:02:05' /* DATE meta=0 nullable=1 is_null=0 */
4458###   @2='VARCHAR-02-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4459###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4460### INSERT INTO `test`.`t2`
4461### SET
4462###   @1='2008:02:06' /* DATE meta=0 nullable=1 is_null=0 */
4463###   @2='VARCHAR-02-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4464###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4465### INSERT INTO `test`.`t2`
4466### SET
4467###   @1='2008:02:07' /* DATE meta=0 nullable=1 is_null=0 */
4468###   @2='VARCHAR-02-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4469###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4470### INSERT INTO `test`.`t2`
4471### SET
4472###   @1='2008:02:08' /* DATE meta=0 nullable=1 is_null=0 */
4473###   @2='VARCHAR-02-08' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4474###   @3=28 /* INT meta=0 nullable=1 is_null=0 */
4475### INSERT INTO `test`.`t2`
4476### SET
4477###   @1='2008:02:09' /* DATE meta=0 nullable=1 is_null=0 */
4478###   @2='VARCHAR-02-09' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4479###   @3=29 /* INT meta=0 nullable=1 is_null=0 */
4480# at #
4481#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
4482COMMIT/*!*/;
4483# at #
4484#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4485SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4486# at #
4487#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4488SET TIMESTAMP=1000000000/*!*/;
4489BEGIN
4490/*!*/;
4491# at #
4492#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t3` mapped to number #
4493# at #
4494#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Write_rows: table id # flags: STMT_END_F
4495### INSERT INTO `test`.`t3`
4496### SET
4497###   @1='2008:03:01' /* DATE meta=0 nullable=1 is_null=0 */
4498###   @2='VARCHAR-03-01' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4499###   @3=31 /* INT meta=0 nullable=1 is_null=0 */
4500### INSERT INTO `test`.`t3`
4501### SET
4502###   @1='2008:03:02' /* DATE meta=0 nullable=1 is_null=0 */
4503###   @2='VARCHAR-03-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4504###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4505### INSERT INTO `test`.`t3`
4506### SET
4507###   @1='2008:03:03' /* DATE meta=0 nullable=1 is_null=0 */
4508###   @2='VARCHAR-03-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4509###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4510### INSERT INTO `test`.`t3`
4511### SET
4512###   @1='2008:03:04' /* DATE meta=0 nullable=1 is_null=0 */
4513###   @2='VARCHAR-03-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4514###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4515### INSERT INTO `test`.`t3`
4516### SET
4517###   @1='2008:03:05' /* DATE meta=0 nullable=1 is_null=0 */
4518###   @2='VARCHAR-03-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4519###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4520### INSERT INTO `test`.`t3`
4521### SET
4522###   @1='2008:03:06' /* DATE meta=0 nullable=1 is_null=0 */
4523###   @2='VARCHAR-03-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4524###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4525### INSERT INTO `test`.`t3`
4526### SET
4527###   @1='2008:03:07' /* DATE meta=0 nullable=1 is_null=0 */
4528###   @2='VARCHAR-03-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4529###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4530### INSERT INTO `test`.`t3`
4531### SET
4532###   @1='2008:03:08' /* DATE meta=0 nullable=1 is_null=0 */
4533###   @2='VARCHAR-03-08' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4534###   @3=38 /* INT meta=0 nullable=1 is_null=0 */
4535### INSERT INTO `test`.`t3`
4536### SET
4537###   @1='2008:03:09' /* DATE meta=0 nullable=1 is_null=0 */
4538###   @2='VARCHAR-03-09' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4539###   @3=39 /* INT meta=0 nullable=1 is_null=0 */
4540# at #
4541#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
4542COMMIT/*!*/;
4543# at #
4544#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4545SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4546# at #
4547#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4548SET TIMESTAMP=1000000000/*!*/;
4549ANALYZE TABLE t1
4550/*!*/;
4551# at #
4552#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4553SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4554# at #
4555#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4556SET TIMESTAMP=1000000000/*!*/;
4557ANALYZE TABLE t2
4558/*!*/;
4559# at #
4560#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4561SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4562# at #
4563#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4564SET TIMESTAMP=1000000000/*!*/;
4565ANALYZE TABLE t3
4566/*!*/;
4567# at #
4568#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4569SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4570# at #
4571#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4572SET TIMESTAMP=1000000000/*!*/;
4573BEGIN
4574/*!*/;
4575# at #
4576#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
4577# at #
4578#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t2` mapped to number #
4579# at #
4580#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t3` mapped to number #
4581# at #
4582#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Update_rows: table id #
4583# at #
4584#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Update_rows: table id #
4585# at #
4586#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Update_rows: table id # flags: STMT_END_F
4587### UPDATE `test`.`t1`
4588### WHERE
4589###   @1='2008:01:02' /* DATE meta=0 nullable=1 is_null=0 */
4590###   @2='VARCHAR-01-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4591###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4592### SET
4593###   @1='2018:01:02' /* DATE meta=0 nullable=1 is_null=0 */
4594###   @2='VARCHAR-01-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4595###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4596### UPDATE `test`.`t1`
4597### WHERE
4598###   @1='2008:01:03' /* DATE meta=0 nullable=1 is_null=0 */
4599###   @2='VARCHAR-01-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4600###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4601### SET
4602###   @1='2018:01:03' /* DATE meta=0 nullable=1 is_null=0 */
4603###   @2='VARCHAR-01-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4604###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4605### UPDATE `test`.`t1`
4606### WHERE
4607###   @1='2008:01:04' /* DATE meta=0 nullable=1 is_null=0 */
4608###   @2='VARCHAR-01-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4609###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4610### SET
4611###   @1='2018:01:04' /* DATE meta=0 nullable=1 is_null=0 */
4612###   @2='VARCHAR-01-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4613###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4614### UPDATE `test`.`t1`
4615### WHERE
4616###   @1='2008:01:05' /* DATE meta=0 nullable=1 is_null=0 */
4617###   @2='VARCHAR-01-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4618###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4619### SET
4620###   @1='2018:01:05' /* DATE meta=0 nullable=1 is_null=0 */
4621###   @2='VARCHAR-01-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4622###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4623### UPDATE `test`.`t1`
4624### WHERE
4625###   @1='2008:01:06' /* DATE meta=0 nullable=1 is_null=0 */
4626###   @2='VARCHAR-01-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4627###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4628### SET
4629###   @1='2018:01:06' /* DATE meta=0 nullable=1 is_null=0 */
4630###   @2='VARCHAR-01-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4631###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4632### UPDATE `test`.`t1`
4633### WHERE
4634###   @1='2008:01:07' /* DATE meta=0 nullable=1 is_null=0 */
4635###   @2='VARCHAR-01-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4636###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4637### SET
4638###   @1='2018:01:07' /* DATE meta=0 nullable=1 is_null=0 */
4639###   @2='VARCHAR-01-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4640###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4641### UPDATE `test`.`t2`
4642### WHERE
4643###   @1='2008:02:02' /* DATE meta=0 nullable=1 is_null=0 */
4644###   @2='VARCHAR-02-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4645###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4646### SET
4647###   @1='2028:02:02' /* DATE meta=0 nullable=1 is_null=0 */
4648###   @2='VARCHAR-02-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4649###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4650### UPDATE `test`.`t2`
4651### WHERE
4652###   @1='2008:02:03' /* DATE meta=0 nullable=1 is_null=0 */
4653###   @2='VARCHAR-02-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4654###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4655### SET
4656###   @1='2028:02:03' /* DATE meta=0 nullable=1 is_null=0 */
4657###   @2='VARCHAR-02-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4658###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4659### UPDATE `test`.`t2`
4660### WHERE
4661###   @1='2008:02:04' /* DATE meta=0 nullable=1 is_null=0 */
4662###   @2='VARCHAR-02-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4663###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4664### SET
4665###   @1='2028:02:04' /* DATE meta=0 nullable=1 is_null=0 */
4666###   @2='VARCHAR-02-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4667###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4668### UPDATE `test`.`t2`
4669### WHERE
4670###   @1='2008:02:05' /* DATE meta=0 nullable=1 is_null=0 */
4671###   @2='VARCHAR-02-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4672###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4673### SET
4674###   @1='2028:02:05' /* DATE meta=0 nullable=1 is_null=0 */
4675###   @2='VARCHAR-02-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4676###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4677### UPDATE `test`.`t2`
4678### WHERE
4679###   @1='2008:02:06' /* DATE meta=0 nullable=1 is_null=0 */
4680###   @2='VARCHAR-02-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4681###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4682### SET
4683###   @1='2028:02:06' /* DATE meta=0 nullable=1 is_null=0 */
4684###   @2='VARCHAR-02-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4685###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4686### UPDATE `test`.`t2`
4687### WHERE
4688###   @1='2008:02:07' /* DATE meta=0 nullable=1 is_null=0 */
4689###   @2='VARCHAR-02-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4690###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4691### SET
4692###   @1='2028:02:07' /* DATE meta=0 nullable=1 is_null=0 */
4693###   @2='VARCHAR-02-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4694###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4695### UPDATE `test`.`t3`
4696### WHERE
4697###   @1='2008:03:02' /* DATE meta=0 nullable=1 is_null=0 */
4698###   @2='VARCHAR-03-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4699###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4700### SET
4701###   @1='2038:03:02' /* DATE meta=0 nullable=1 is_null=0 */
4702###   @2='VARCHAR-03-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4703###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4704### UPDATE `test`.`t3`
4705### WHERE
4706###   @1='2008:03:03' /* DATE meta=0 nullable=1 is_null=0 */
4707###   @2='VARCHAR-03-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4708###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4709### SET
4710###   @1='2038:03:03' /* DATE meta=0 nullable=1 is_null=0 */
4711###   @2='VARCHAR-03-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4712###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4713### UPDATE `test`.`t3`
4714### WHERE
4715###   @1='2008:03:04' /* DATE meta=0 nullable=1 is_null=0 */
4716###   @2='VARCHAR-03-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4717###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4718### SET
4719###   @1='2038:03:04' /* DATE meta=0 nullable=1 is_null=0 */
4720###   @2='VARCHAR-03-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4721###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4722### UPDATE `test`.`t3`
4723### WHERE
4724###   @1='2008:03:05' /* DATE meta=0 nullable=1 is_null=0 */
4725###   @2='VARCHAR-03-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4726###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4727### SET
4728###   @1='2038:03:05' /* DATE meta=0 nullable=1 is_null=0 */
4729###   @2='VARCHAR-03-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4730###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4731### UPDATE `test`.`t3`
4732### WHERE
4733###   @1='2008:03:06' /* DATE meta=0 nullable=1 is_null=0 */
4734###   @2='VARCHAR-03-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4735###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4736### SET
4737###   @1='2038:03:06' /* DATE meta=0 nullable=1 is_null=0 */
4738###   @2='VARCHAR-03-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4739###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4740### UPDATE `test`.`t3`
4741### WHERE
4742###   @1='2008:03:07' /* DATE meta=0 nullable=1 is_null=0 */
4743###   @2='VARCHAR-03-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4744###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4745### SET
4746###   @1='2038:03:07' /* DATE meta=0 nullable=1 is_null=0 */
4747###   @2='VARCHAR-03-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4748###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4749# at #
4750#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
4751COMMIT/*!*/;
4752# at #
4753#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4754SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4755# at #
4756#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4757SET TIMESTAMP=1000000000/*!*/;
4758BEGIN
4759/*!*/;
4760# at #
4761#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
4762# at #
4763#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t2` mapped to number #
4764# at #
4765#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t3` mapped to number #
4766# at #
4767#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Delete_rows: table id #
4768# at #
4769#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Delete_rows: table id #
4770# at #
4771#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Delete_rows: table id # flags: STMT_END_F
4772### DELETE FROM `test`.`t1`
4773### WHERE
4774###   @1='2018:01:02' /* DATE meta=0 nullable=1 is_null=0 */
4775###   @2='VARCHAR-01-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4776###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4777### DELETE FROM `test`.`t1`
4778### WHERE
4779###   @1='2018:01:03' /* DATE meta=0 nullable=1 is_null=0 */
4780###   @2='VARCHAR-01-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4781###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4782### DELETE FROM `test`.`t1`
4783### WHERE
4784###   @1='2018:01:04' /* DATE meta=0 nullable=1 is_null=0 */
4785###   @2='VARCHAR-01-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4786###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4787### DELETE FROM `test`.`t1`
4788### WHERE
4789###   @1='2018:01:05' /* DATE meta=0 nullable=1 is_null=0 */
4790###   @2='VARCHAR-01-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4791###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4792### DELETE FROM `test`.`t1`
4793### WHERE
4794###   @1='2018:01:06' /* DATE meta=0 nullable=1 is_null=0 */
4795###   @2='VARCHAR-01-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4796###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4797### DELETE FROM `test`.`t1`
4798### WHERE
4799###   @1='2018:01:07' /* DATE meta=0 nullable=1 is_null=0 */
4800###   @2='VARCHAR-01-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4801###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4802### DELETE FROM `test`.`t2`
4803### WHERE
4804###   @1='2028:02:02' /* DATE meta=0 nullable=1 is_null=0 */
4805###   @2='VARCHAR-02-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4806###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4807### DELETE FROM `test`.`t2`
4808### WHERE
4809###   @1='2028:02:03' /* DATE meta=0 nullable=1 is_null=0 */
4810###   @2='VARCHAR-02-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4811###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4812### DELETE FROM `test`.`t2`
4813### WHERE
4814###   @1='2028:02:04' /* DATE meta=0 nullable=1 is_null=0 */
4815###   @2='VARCHAR-02-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4816###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4817### DELETE FROM `test`.`t2`
4818### WHERE
4819###   @1='2028:02:05' /* DATE meta=0 nullable=1 is_null=0 */
4820###   @2='VARCHAR-02-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4821###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4822### DELETE FROM `test`.`t2`
4823### WHERE
4824###   @1='2028:02:06' /* DATE meta=0 nullable=1 is_null=0 */
4825###   @2='VARCHAR-02-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4826###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4827### DELETE FROM `test`.`t2`
4828### WHERE
4829###   @1='2028:02:07' /* DATE meta=0 nullable=1 is_null=0 */
4830###   @2='VARCHAR-02-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4831###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4832### DELETE FROM `test`.`t3`
4833### WHERE
4834###   @1='2038:03:02' /* DATE meta=0 nullable=1 is_null=0 */
4835###   @2='VARCHAR-03-02' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4836###   @3=2 /* INT meta=0 nullable=1 is_null=0 */
4837### DELETE FROM `test`.`t3`
4838### WHERE
4839###   @1='2038:03:03' /* DATE meta=0 nullable=1 is_null=0 */
4840###   @2='VARCHAR-03-03' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4841###   @3=3 /* INT meta=0 nullable=1 is_null=0 */
4842### DELETE FROM `test`.`t3`
4843### WHERE
4844###   @1='2038:03:04' /* DATE meta=0 nullable=1 is_null=0 */
4845###   @2='VARCHAR-03-04' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4846###   @3=4 /* INT meta=0 nullable=1 is_null=0 */
4847### DELETE FROM `test`.`t3`
4848### WHERE
4849###   @1='2038:03:05' /* DATE meta=0 nullable=1 is_null=0 */
4850###   @2='VARCHAR-03-05' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4851###   @3=5 /* INT meta=0 nullable=1 is_null=0 */
4852### DELETE FROM `test`.`t3`
4853### WHERE
4854###   @1='2038:03:06' /* DATE meta=0 nullable=1 is_null=0 */
4855###   @2='VARCHAR-03-06' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4856###   @3=6 /* INT meta=0 nullable=1 is_null=0 */
4857### DELETE FROM `test`.`t3`
4858### WHERE
4859###   @1='2038:03:07' /* DATE meta=0 nullable=1 is_null=0 */
4860###   @2='VARCHAR-03-07' /* VARSTRING(255) meta=255 nullable=1 is_null=0 */
4861###   @3=7 /* INT meta=0 nullable=1 is_null=0 */
4862# at #
4863#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
4864COMMIT/*!*/;
4865SET @@SESSION.GTID_NEXT= 'GTID' /* added by mysqlbinlog */ /*!*/;
4866# at #
4867#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Rotate to master-bin.000002  pos: 4
4868DELIMITER ;
4869# End of log file
4870ROLLBACK /* added by mysqlbinlog */;
4871/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
4872/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;
4873#
4874# Cleanup.
4875#
4876DROP TABLE t1, t2, t3;
4877#
4878# ===========================
4879# Test #4 - LOAD DATA INFILE.
4880# ===========================
4881#
4882# Delete all existing binary logs.
4883#
4884RESET MASTER;
4885#
4886# Create a test table with selected data types.
4887#
4888CREATE TABLE t1 (
4889c1 INT DEFAULT 100,
4890c2 INT,
4891c3 VARCHAR(60)
4892) ENGINE=InnoDB DEFAULT CHARSET latin1;
4893#
4894# Show how much rows are affected by each statement.
4895#
4896#
4897# Load data.
4898#
4899LOAD DATA INFILE '../../std_data/loaddata5.dat'
4900  INTO TABLE t1 FIELDS TERMINATED BY '' ENCLOSED BY '' (c1,c2)
4901SET c3 = 'Wow';
4902affected rows: 3
4903info: Records: 3  Deleted: 0  Skipped: 0  Warnings: 0
4904#
4905# Show what we have in the table.
4906#
4907SELECT * FROM t1;
4908c1	c2	c3
49091	2	Wow
49103	4	Wow
49115	6	Wow
4912affected rows: 3
4913#
4914# Hide how much rows are affected by each statement.
4915#
4916#
4917# Flush all log buffers to the log file.
4918#
4919FLUSH LOGS;
4920#
4921# Call mysqlbinlog to display the log file contents.
4922#
4923/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/;
4924/*!40019 SET @@session.max_insert_delayed_threads=0*/;
4925/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
4926DELIMITER /*!*/;
4927# at #
4928#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Start: binlog v 4, server v #.##.## created 010909  4:46:40 at startup
4929ROLLBACK/*!*/;
4930# at #
4931#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Previous-GTIDs
4932# [empty]
4933# at #
4934#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4935SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4936# at #
4937#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4938use `test`/*!*/;
4939SET TIMESTAMP=1000000000/*!*/;
4940SET @@session.pseudo_thread_id=#/*!*/;
4941SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
4942SET @@session.sql_mode=1073741824/*!*/;
4943SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
4944/*!\C utf8 *//*!*/;
4945SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=8/*!*/;
4946SET @@session.lc_time_names=0/*!*/;
4947SET @@session.collation_database=DEFAULT/*!*/;
4948CREATE TABLE t1 (
4949c1 INT DEFAULT 100,
4950c2 INT,
4951c3 VARCHAR(60)
4952) ENGINE=InnoDB DEFAULT CHARSET latin1
4953/*!*/;
4954# at #
4955#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	GTID [commit=yes]
4956SET @@SESSION.GTID_NEXT= 'GTID'/*!*/;
4957# at #
4958#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Query	thread_id=#	exec_time=#	error_code=0
4959SET TIMESTAMP=1000000000/*!*/;
4960BEGIN
4961/*!*/;
4962# at #
4963#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Table_map: `test`.`t1` mapped to number #
4964# at #
4965#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Write_rows: table id # flags: STMT_END_F
4966### INSERT INTO `test`.`t1`
4967### SET
4968###   @1=1 /* INT meta=0 nullable=1 is_null=0 */
4969###   @2=2 /* INT meta=0 nullable=1 is_null=0 */
4970###   @3='Wow' /* VARSTRING(60) meta=60 nullable=1 is_null=0 */
4971### INSERT INTO `test`.`t1`
4972### SET
4973###   @1=3 /* INT meta=0 nullable=1 is_null=0 */
4974###   @2=4 /* INT meta=0 nullable=1 is_null=0 */
4975###   @3='Wow' /* VARSTRING(60) meta=60 nullable=1 is_null=0 */
4976### INSERT INTO `test`.`t1`
4977### SET
4978###   @1=5 /* INT meta=0 nullable=1 is_null=0 */
4979###   @2=6 /* INT meta=0 nullable=1 is_null=0 */
4980###   @3='Wow' /* VARSTRING(60) meta=60 nullable=1 is_null=0 */
4981# at #
4982#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Xid = #
4983COMMIT/*!*/;
4984SET @@SESSION.GTID_NEXT= 'GTID' /* added by mysqlbinlog */ /*!*/;
4985# at #
4986#010909  4:46:40 server id 1  end_log_pos # CRC32 # 	Rotate to master-bin.000002  pos: 4
4987DELIMITER ;
4988# End of log file
4989ROLLBACK /* added by mysqlbinlog */;
4990/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
4991/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;
4992#
4993# Cleanup.
4994#
4995DROP TABLE t1;
4996