1# Test of the conversion from JSON data type to MySQL types
2# ----------------------------------------------------------------------
3SET NAMES utf8;
4# Set up auxiliary table with possible JSON values. The idea here is to
5# enumerate all possible types of JSON values, including the different
6# opaque values we could possibly end up with. A difficulty here is that
7# it is hard create scenarios that will actually employ all possible
8# MYSQL_TYPE_* types inside opaque: partly because some are used as
9# native scalars, e.g. signed int -> JSON (signed) INTEGER, partly
10# because not all MYSQL_TYPE_* values can actually label a column, but
11# are seemingly only used in intermediate steps, e.g. BINARY and
12# VARBINARY which end up as column with CHAR and VARCHAR with binary
13# character set internally.
14create table t(c varchar(30), j json);
15create table blobs(b blob);
16insert into blobs values(x'cafebabe');
17create table tinyblobs(b tinyblob);
18insert into tinyblobs values(x'cafebabe');
19create table mediumblobs(b mediumblob);
20insert into mediumblobs values(x'cafebabe');
21create table longblobs(b longblob);
22insert into longblobs values(x'cafebabe');
23create table year(y year);
24insert into year values('1992');
25create table varbin(b varbinary(40));
26insert into varbin values(x'cafebabe');
27create table bin(b binary(40));
28insert into varbin values(x'cafebabe');
29create table enum(e enum('a', 'b', 'c'));
30insert into enum values ('b');
31create table sett(e set('a', 'b', 'c'));
32insert into sett values ('b,c');
33create table varchar_binary(c varchar(30) character set 'binary');
34insert into varchar_binary values ('foo');
35insert into t values ('null'            ,'null');
36insert into t values ('bool'            ,'true');
37insert into t values ('uint'            ,cast(cast(12 as unsigned) as json));
38insert into t values ('int'             ,'12');
39insert into t values ('double'          ,cast(3.14E0 as json));
40insert into t values ('stringany'       ,'"a"');
41insert into t values ('stringint'       ,'"1"');
42insert into t values ('stringdecimal'   ,'"3.14"');
43insert into t values ('object'          ,'{"a": 3}');
44insert into t values ('array'           ,'[1,2]');
45insert into t values ('opaque_mysql_type_decimal'  ,cast(3.14 as json));
46insert into t(c,j) (select
47'opaque_mysql_type_set'      ,cast(e as json) from sett);
48insert into t(c,j) (select
49'opaque_mysql_type_enum'     ,cast(e as json) from enum);
50insert into t values ('opaque_mysql_type_date'     ,cast(cast('2015-01-15' as date) as json));
51insert into t values ('opaque_mysql_type_time'     ,cast(cast('23:24:25' as time) as json));
52insert into t values ('opaque_mysql_type_datetime' ,cast(cast('2015-01-15 23:24:25' as datetime) as json));
53insert into t values ('opaque_mysql_type_geom'     ,cast(st_geomfromtext('point(1 1)') as json));
54insert into t(c,j) (select
55'opaque_mysql_type_bit'       ,cast(x'cafe' as json));
56insert into t(c,j) (select
57'opaque_mysql_type_year'        ,cast(y as json) from year);
58insert into t(c,j) (select
59'opaque_mysql_type_blob'        ,cast(b as json) from blobs);
60insert into t(c,j) (select
61'opaque_mysql_type_longblob'    ,cast(b as json) from longblobs);
62insert into t(c,j) (select
63'opaque_mysql_type_mediumblob'  ,cast(b as json) from mediumblobs);
64insert into t(c,j) (select
65'opaque_mysql_type_tinyblob'    ,cast(b as json) from tinyblobs);
66insert into t(c,j) (select
67'opaque_mysql_type_varbinary'   ,NULL);
68insert into t(c,j) (select
69'opaque_mysql_type_binary'      ,NULL);
70insert into t(c,j) (select
71'opaque_mysql_type_varchar'     ,cast(c as json) from varchar_binary);
72insert into t(c,j) (select
73'opaque_mysql_type_string'      ,NULL);
74insert into t values ('opaque_mysql_type_var_string' ,NULL);
75drop table blobs;
76drop table tinyblobs;
77drop table mediumblobs;
78drop table longblobs;
79drop table year;
80drop table varbin;
81drop table bin;
82drop table enum;
83drop table sett;
84drop table varchar_binary;
85select c, json_type(j), j from t;
86c	json_type(j)	j
87null	NULL	null
88bool	BOOLEAN	true
89uint	UNSIGNED INTEGER	12
90int	INTEGER	12
91double	DOUBLE	3.14
92stringany	STRING	"a"
93stringint	STRING	"1"
94stringdecimal	STRING	"3.14"
95object	OBJECT	{"a": 3}
96array	ARRAY	[1, 2]
97opaque_mysql_type_decimal	DECIMAL	3.14
98opaque_mysql_type_set	STRING	"b,c"
99opaque_mysql_type_enum	STRING	"b"
100opaque_mysql_type_date	DATE	"2015-01-15"
101opaque_mysql_type_time	TIME	"23:24:25.000000"
102opaque_mysql_type_datetime	DATETIME	"2015-01-15 23:24:25.000000"
103opaque_mysql_type_geom	OBJECT	{"type": "Point", "coordinates": [1, 1]}
104opaque_mysql_type_bit	BIT	"base64:type16:yv4="
105opaque_mysql_type_year	OPAQUE	"base64:type13:MTk5Mg=="
106opaque_mysql_type_blob	BLOB	"base64:type252:yv66vg=="
107opaque_mysql_type_longblob	BLOB	"base64:type251:yv66vg=="
108opaque_mysql_type_mediumblob	BLOB	"base64:type250:yv66vg=="
109opaque_mysql_type_tinyblob	BLOB	"base64:type249:yv66vg=="
110opaque_mysql_type_varbinary	NULL	NULL
111opaque_mysql_type_binary	NULL	NULL
112opaque_mysql_type_varchar	BLOB	"base64:type15:Zm9v"
113opaque_mysql_type_string	NULL	NULL
114opaque_mysql_type_var_string	NULL	NULL
115# Auxiliary table containing columns of MySQL types
116create table at(c varchar(36),
117_bit bit(64),
118_tin tinyint(8),
119_boo bool,
120_sms smallint signed,
121_smu smallint unsigned,
122_mes mediumint signed,
123_meu mediumint unsigned,
124_ins int signed,
125_inu int unsigned,
126_bis bigint signed,
127_biu bigint unsigned,
128_dec decimal (5,2),
129_flo float,
130_dou double,
131_dat date default '2000-01-01',
132_dtt datetime default '2000-01-01 00:00:00',
133_smp timestamp default '2000-01-01 00:00:00',
134_tim time default' 00:00:00',
135_yea year,
136_jsn json,
137_chr char(255),
138_vch varchar(255),
139_bin binary(255),
140_vbn varbinary(255),
141_tbl tinyblob,
142_ttx tinytext,
143_blb blob,
144_txt text,
145_mbb mediumblob,
146_mtx mediumtext,
147_lbb longblob,
148_ltx longtext,
149_enu enum('a', 'b', 'c'),
150_set set('a', 'b', 'c'),
151_geo geometry,
152_pnt point,
153_lst linestring,
154_pol polygon,
155_mpt multipoint,
156_mls multilinestring,
157_mpy multipolygon,
158_gco geometrycollection);
159# ----------------------------------------------------------------------
160#  I N S E R T   F R O M   J S O N   C O L U M N
161# ----------------------------------------------------------------------
162insert into at(c,_bit) select concat('_bit: ',c),j from t where c='null';
163insert into at(c,_bit) select concat('_bit: ',c),j from t where c='bool';
164insert into at(c,_bit) select concat('_bit: ',c),j from t where c='uint';
165insert into at(c,_bit) select concat('_bit: ',c),j from t where c='int';
166insert into at(c,_bit) select concat('_bit: ',c),j from t where c='double';
167insert into at(c,_bit) select concat('_bit: ',c),j from t where c='stringany';
168insert into at(c,_bit) select concat('_bit: ',c),j from t where c='stringint';
169insert into at(c,_bit) select concat('_bit: ',c),j from t where c='stringdecimal';
170insert into at(c,_bit) select concat('_bit: ',c),j from t where c='object';
171insert into at(c,_bit) select concat('_bit: ',c),j from t where c='array';
172insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_decimal';
173insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_set';
174insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_enum';
175insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_date';
176ERROR 22001: Data too long for column '_bit' at row 14
177insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_time';
178ERROR 22001: Data too long for column '_bit' at row 15
179insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_datetime';
180ERROR 22001: Data too long for column '_bit' at row 16
181insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_geom';
182ERROR 22001: Data too long for column '_bit' at row 17
183insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_bit';
184ERROR 22001: Data too long for column '_bit' at row 18
185insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_year';
186ERROR 22001: Data too long for column '_bit' at row 19
187insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_year';
188ERROR 22001: Data too long for column '_bit' at row 19
189insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_blob';
190ERROR 22001: Data too long for column '_bit' at row 20
191insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_longblob';
192ERROR 22001: Data too long for column '_bit' at row 21
193insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_mediumblob';
194ERROR 22001: Data too long for column '_bit' at row 22
195insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_tinyblob';
196ERROR 22001: Data too long for column '_bit' at row 23
197insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_varbinary';
198insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_binary';
199insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_varchar';
200ERROR 22001: Data too long for column '_bit' at row 26
201insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_string';
202insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_var_string';
203insert into at(c,_tin) select concat('_tin: ',c),j from t where c='null';
204ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
205insert into at(c,_tin) select concat('_tin: ',c),j from t where c='bool';
206insert into at(c,_tin) select concat('_tin: ',c),j from t where c='uint';
207insert into at(c,_tin) select concat('_tin: ',c),j from t where c='int';
208insert into at(c,_tin) select concat('_tin: ',c),j from t where c='double';
209insert into at(c,_tin) select concat('_tin: ',c),j from t where c='stringany';
210ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6
211insert into at(c,_tin) select concat('_tin: ',c),j from t where c='stringint';
212insert into at(c,_tin) select concat('_tin: ',c),j from t where c='stringdecimal';
213ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8
214insert into at(c,_tin) select concat('_tin: ',c),j from t where c='object';
215ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9
216insert into at(c,_tin) select concat('_tin: ',c),j from t where c='array';
217ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10
218insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_decimal';
219insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_set';
220ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12
221insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_enum';
222ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13
223insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_date';
224ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14
225insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_time';
226ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15
227insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_datetime';
228ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16
229insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_geom';
230ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17
231insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_bit';
232ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18
233insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_year';
234ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19
235insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_blob';
236ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20
237insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_longblob';
238ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21
239insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_mediumblob';
240ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22
241insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_tinyblob';
242ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23
243insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_varbinary';
244insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_binary';
245insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_varchar';
246ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26
247insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_string';
248insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_var_string';
249insert into at(c,_boo) select concat('_boo: ',c),j from t where c='null';
250ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
251insert into at(c,_boo) select concat('_boo: ',c),j from t where c='bool';
252insert into at(c,_boo) select concat('_boo: ',c),j from t where c='uint';
253insert into at(c,_boo) select concat('_boo: ',c),j from t where c='int';
254insert into at(c,_boo) select concat('_boo: ',c),j from t where c='double';
255insert into at(c,_boo) select concat('_boo: ',c),j from t where c='stringany';
256ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6
257insert into at(c,_boo) select concat('_boo: ',c),j from t where c='stringint';
258insert into at(c,_boo) select concat('_boo: ',c),j from t where c='stringdecimal';
259ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8
260insert into at(c,_boo) select concat('_boo: ',c),j from t where c='object';
261ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9
262insert into at(c,_boo) select concat('_boo: ',c),j from t where c='array';
263ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10
264insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_decimal';
265insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_set';
266ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12
267insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_enum';
268ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13
269insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_date';
270ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14
271insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_time';
272ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15
273insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_datetime';
274ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16
275insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_geom';
276ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17
277insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_bit';
278ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18
279insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_year';
280ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19
281insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_blob';
282ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20
283insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_longblob';
284ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21
285insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_mediumblob';
286ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22
287insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_tinyblob';
288ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23
289insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_varbinary';
290insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_binary';
291insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_varchar';
292ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26
293insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_string';
294insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_var_string';
295insert into at(c,_sms) select concat('_sms: ',c),j from t where c='null';
296ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
297insert into at(c,_sms) select concat('_sms: ',c),j from t where c='bool';
298insert into at(c,_sms) select concat('_sms: ',c),j from t where c='uint';
299insert into at(c,_sms) select concat('_sms: ',c),j from t where c='int';
300insert into at(c,_sms) select concat('_sms: ',c),j from t where c='double';
301insert into at(c,_sms) select concat('_sms: ',c),j from t where c='stringany';
302ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6
303insert into at(c,_sms) select concat('_sms: ',c),j from t where c='stringint';
304insert into at(c,_sms) select concat('_sms: ',c),j from t where c='stringdecimal';
305ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8
306insert into at(c,_sms) select concat('_sms: ',c),j from t where c='object';
307ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9
308insert into at(c,_sms) select concat('_sms: ',c),j from t where c='array';
309ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10
310insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_decimal';
311insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_set';
312ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12
313insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_enum';
314ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13
315insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_date';
316ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14
317insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_time';
318ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15
319insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_datetime';
320ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16
321insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_geom';
322ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17
323insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_bit';
324ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18
325insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_year';
326ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19
327insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_blob';
328ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20
329insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_longblob';
330ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21
331insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_mediumblob';
332ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22
333insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_tinyblob';
334ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23
335insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_varbinary';
336insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_binary';
337insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_varchar';
338ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26
339insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_string';
340insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_var_string';
341insert into at(c,_smu) select concat('_smu: ',c),j from t where c='null';
342ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
343insert into at(c,_smu) select concat('_smu: ',c),j from t where c='bool';
344insert into at(c,_smu) select concat('_smu: ',c),j from t where c='uint';
345insert into at(c,_smu) select concat('_smu: ',c),j from t where c='int';
346insert into at(c,_smu) select concat('_smu: ',c),j from t where c='double';
347insert into at(c,_smu) select concat('_smu: ',c),j from t where c='stringany';
348ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6
349insert into at(c,_smu) select concat('_smu: ',c),j from t where c='stringint';
350insert into at(c,_smu) select concat('_smu: ',c),j from t where c='stringdecimal';
351ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8
352insert into at(c,_smu) select concat('_smu: ',c),j from t where c='object';
353ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9
354insert into at(c,_smu) select concat('_smu: ',c),j from t where c='array';
355ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10
356insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_decimal';
357insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_set';
358ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12
359insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_enum';
360ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13
361insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_date';
362ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14
363insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_time';
364ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15
365insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_datetime';
366ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16
367insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_geom';
368ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17
369insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_bit';
370ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18
371insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_year';
372ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19
373insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_blob';
374ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20
375insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_longblob';
376ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21
377insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_mediumblob';
378ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22
379insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_tinyblob';
380ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23
381insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_varbinary';
382insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_binary';
383insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_varchar';
384ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26
385insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_string';
386insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_var_string';
387insert into at(c,_mes) select concat('_mes: ',c),j from t where c='null';
388ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
389insert into at(c,_mes) select concat('_mes: ',c),j from t where c='bool';
390insert into at(c,_mes) select concat('_mes: ',c),j from t where c='uint';
391insert into at(c,_mes) select concat('_mes: ',c),j from t where c='int';
392insert into at(c,_mes) select concat('_mes: ',c),j from t where c='double';
393insert into at(c,_mes) select concat('_mes: ',c),j from t where c='stringany';
394ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6
395insert into at(c,_mes) select concat('_mes: ',c),j from t where c='stringint';
396insert into at(c,_mes) select concat('_mes: ',c),j from t where c='stringdecimal';
397ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8
398insert into at(c,_mes) select concat('_mes: ',c),j from t where c='object';
399ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9
400insert into at(c,_mes) select concat('_mes: ',c),j from t where c='array';
401ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10
402insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_decimal';
403insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_set';
404ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12
405insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_enum';
406ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13
407insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_date';
408ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14
409insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_time';
410ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15
411insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_datetime';
412ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16
413insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_geom';
414ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17
415insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_bit';
416ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18
417insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_year';
418ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19
419insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_blob';
420ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20
421insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_longblob';
422ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21
423insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_mediumblob';
424ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22
425insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_tinyblob';
426ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23
427insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_varbinary';
428insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_binary';
429insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_varchar';
430ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26
431insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_string';
432insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_var_string';
433insert into at(c,_meu) select concat('_meu: ',c),j from t where c='null';
434ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
435insert into at(c,_meu) select concat('_meu: ',c),j from t where c='bool';
436insert into at(c,_meu) select concat('_meu: ',c),j from t where c='uint';
437insert into at(c,_meu) select concat('_meu: ',c),j from t where c='int';
438insert into at(c,_meu) select concat('_meu: ',c),j from t where c='double';
439insert into at(c,_meu) select concat('_meu: ',c),j from t where c='stringany';
440ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6
441insert into at(c,_meu) select concat('_meu: ',c),j from t where c='stringint';
442insert into at(c,_meu) select concat('_meu: ',c),j from t where c='stringdecimal';
443ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8
444insert into at(c,_meu) select concat('_meu: ',c),j from t where c='object';
445ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9
446insert into at(c,_meu) select concat('_meu: ',c),j from t where c='array';
447ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10
448insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_decimal';
449insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_set';
450ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12
451insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_enum';
452ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13
453insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_date';
454ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14
455insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_time';
456ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15
457insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_datetime';
458ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16
459insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_geom';
460ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17
461insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_bit';
462ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18
463insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_year';
464ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19
465insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_blob';
466ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20
467insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_longblob';
468ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21
469insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_mediumblob';
470ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22
471insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_tinyblob';
472ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23
473insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_varbinary';
474insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_binary';
475insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_varchar';
476ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26
477insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_string';
478insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_var_string';
479insert into at(c,_ins) select concat('_ins: ',c),j from t where c='null';
480ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
481insert into at(c,_ins) select concat('_ins: ',c),j from t where c='bool';
482insert into at(c,_ins) select concat('_ins: ',c),j from t where c='uint';
483insert into at(c,_ins) select concat('_ins: ',c),j from t where c='int';
484insert into at(c,_ins) select concat('_ins: ',c),j from t where c='double';
485insert into at(c,_ins) select concat('_ins: ',c),j from t where c='stringany';
486ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6
487insert into at(c,_ins) select concat('_ins: ',c),j from t where c='stringint';
488insert into at(c,_ins) select concat('_ins: ',c),j from t where c='stringdecimal';
489ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8
490insert into at(c,_ins) select concat('_ins: ',c),j from t where c='object';
491ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9
492insert into at(c,_ins) select concat('_ins: ',c),j from t where c='array';
493ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10
494insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_decimal';
495insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_set';
496ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12
497insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_enum';
498ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13
499insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_date';
500ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14
501insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_time';
502ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15
503insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_datetime';
504ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16
505insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_geom';
506ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17
507insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_bit';
508ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18
509insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_year';
510ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19
511insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_blob';
512ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20
513insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_longblob';
514ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21
515insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_mediumblob';
516ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22
517insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_tinyblob';
518ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23
519insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_varbinary';
520insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_binary';
521insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_varchar';
522ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26
523insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_string';
524insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_var_string';
525insert into at(c,_inu) select concat('_inu: ',c),j from t where c='null';
526ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
527insert into at(c,_inu) select concat('_inu: ',c),j from t where c='bool';
528insert into at(c,_inu) select concat('_inu: ',c),j from t where c='uint';
529insert into at(c,_inu) select concat('_inu: ',c),j from t where c='int';
530insert into at(c,_inu) select concat('_inu: ',c),j from t where c='double';
531insert into at(c,_inu) select concat('_inu: ',c),j from t where c='stringany';
532ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6
533insert into at(c,_inu) select concat('_inu: ',c),j from t where c='stringint';
534insert into at(c,_inu) select concat('_inu: ',c),j from t where c='stringdecimal';
535ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8
536insert into at(c,_inu) select concat('_inu: ',c),j from t where c='object';
537ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9
538insert into at(c,_inu) select concat('_inu: ',c),j from t where c='array';
539ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10
540insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_decimal';
541insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_set';
542ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12
543insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_enum';
544ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13
545insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_date';
546ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14
547insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_time';
548ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15
549insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_datetime';
550ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16
551insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_geom';
552ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17
553insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_bit';
554ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18
555insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_year';
556ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19
557insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_blob';
558ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20
559insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_longblob';
560ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21
561insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_mediumblob';
562ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22
563insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_tinyblob';
564ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23
565insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_varbinary';
566insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_binary';
567insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_varchar';
568ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26
569insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_string';
570insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_var_string';
571insert into at(c,_bis) select concat('_bis: ',c),j from t where c='null';
572ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
573insert into at(c,_bis) select concat('_bis: ',c),j from t where c='bool';
574insert into at(c,_bis) select concat('_bis: ',c),j from t where c='uint';
575insert into at(c,_bis) select concat('_bis: ',c),j from t where c='int';
576insert into at(c,_bis) select concat('_bis: ',c),j from t where c='double';
577insert into at(c,_bis) select concat('_bis: ',c),j from t where c='stringany';
578ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6
579insert into at(c,_bis) select concat('_bis: ',c),j from t where c='stringint';
580insert into at(c,_bis) select concat('_bis: ',c),j from t where c='stringdecimal';
581ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8
582insert into at(c,_bis) select concat('_bis: ',c),j from t where c='object';
583ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9
584insert into at(c,_bis) select concat('_bis: ',c),j from t where c='array';
585ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10
586insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_decimal';
587insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_set';
588ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12
589insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_enum';
590ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13
591insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_date';
592ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14
593insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_time';
594ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15
595insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_datetime';
596ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16
597insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_geom';
598ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17
599insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_bit';
600ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18
601insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_year';
602ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19
603insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_blob';
604ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20
605insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_longblob';
606ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21
607insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_mediumblob';
608ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22
609insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_tinyblob';
610ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23
611insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_varbinary';
612insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_binary';
613insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_varchar';
614ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26
615insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_string';
616insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_var_string';
617insert into at(c,_biu) select concat('_biu: ',c),j from t where c='null';
618ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
619insert into at(c,_biu) select concat('_biu: ',c),j from t where c='bool';
620insert into at(c,_biu) select concat('_biu: ',c),j from t where c='uint';
621insert into at(c,_biu) select concat('_biu: ',c),j from t where c='int';
622insert into at(c,_biu) select concat('_biu: ',c),j from t where c='double';
623insert into at(c,_biu) select concat('_biu: ',c),j from t where c='stringany';
624ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6
625insert into at(c,_biu) select concat('_biu: ',c),j from t where c='stringint';
626insert into at(c,_biu) select concat('_biu: ',c),j from t where c='stringdecimal';
627ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8
628insert into at(c,_biu) select concat('_biu: ',c),j from t where c='object';
629ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9
630insert into at(c,_biu) select concat('_biu: ',c),j from t where c='array';
631ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10
632insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_decimal';
633insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_set';
634ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12
635insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_enum';
636ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13
637insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_date';
638ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14
639insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_time';
640ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15
641insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_datetime';
642ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16
643insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_geom';
644ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17
645insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_bit';
646ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18
647insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_year';
648ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19
649insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_blob';
650ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20
651insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_longblob';
652ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21
653insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_mediumblob';
654ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22
655insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_tinyblob';
656ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23
657insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_varbinary';
658insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_binary';
659insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_varchar';
660ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26
661insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_string';
662insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_var_string';
663insert into at(c,_dec) select concat('_dec: ',c),j from t where c='null';
664ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
665insert into at(c,_dec) select concat('_dec: ',c),j from t where c='bool';
666insert into at(c,_dec) select concat('_dec: ',c),j from t where c='uint';
667insert into at(c,_dec) select concat('_dec: ',c),j from t where c='int';
668insert into at(c,_dec) select concat('_dec: ',c),j from t where c='double';
669insert into at(c,_dec) select concat('_dec: ',c),j from t where c='stringany';
670ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1
671insert into at(c,_dec) select concat('_dec: ',c),j from t where c='stringint';
672insert into at(c,_dec) select concat('_dec: ',c),j from t where c='stringdecimal';
673insert into at(c,_dec) select concat('_dec: ',c),j from t where c='object';
674ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 9
675insert into at(c,_dec) select concat('_dec: ',c),j from t where c='array';
676ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 10
677insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_decimal';
678insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_set';
679ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1
680insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_enum';
681ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1
682insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_date';
683ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 14
684insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_time';
685ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 15
686insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_datetime';
687ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 16
688insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_geom';
689ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 17
690insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_bit';
691ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 18
692insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_year';
693ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 19
694insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_blob';
695ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 20
696insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_longblob';
697ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 21
698insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_mediumblob';
699ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 22
700insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_tinyblob';
701ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 23
702insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_varbinary';
703insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_binary';
704insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_varchar';
705ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 26
706insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_string';
707insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_var_string';
708insert into at(c,_flo) select concat('_flo: ',c),j from t where c='null';
709ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
710insert into at(c,_flo) select concat('_flo: ',c),j from t where c='bool';
711insert into at(c,_flo) select concat('_flo: ',c),j from t where c='uint';
712insert into at(c,_flo) select concat('_flo: ',c),j from t where c='int';
713insert into at(c,_flo) select concat('_flo: ',c),j from t where c='double';
714insert into at(c,_flo) select concat('_flo: ',c),j from t where c='stringany';
715ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 6
716insert into at(c,_flo) select concat('_flo: ',c),j from t where c='stringint';
717insert into at(c,_flo) select concat('_flo: ',c),j from t where c='stringdecimal';
718insert into at(c,_flo) select concat('_flo: ',c),j from t where c='object';
719ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 9
720insert into at(c,_flo) select concat('_flo: ',c),j from t where c='array';
721ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 10
722insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_decimal';
723insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_set';
724ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 12
725insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_enum';
726ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 13
727insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_date';
728ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 14
729insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_time';
730ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 15
731insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_datetime';
732ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 16
733insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_geom';
734ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 17
735insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_bit';
736ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 18
737insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_year';
738ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 19
739insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_blob';
740ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 20
741insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_longblob';
742ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 21
743insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_mediumblob';
744ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 22
745insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_tinyblob';
746ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 23
747insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_varbinary';
748insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_binary';
749insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_varchar';
750ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 26
751insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_string';
752insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_var_string';
753insert into at(c,_dou) select concat('_dou: ',c),j from t where c='null';
754ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
755insert into at(c,_dou) select concat('_dou: ',c),j from t where c='bool';
756insert into at(c,_dou) select concat('_dou: ',c),j from t where c='uint';
757insert into at(c,_dou) select concat('_dou: ',c),j from t where c='int';
758insert into at(c,_dou) select concat('_dou: ',c),j from t where c='double';
759insert into at(c,_dou) select concat('_dou: ',c),j from t where c='stringany';
760ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 6
761insert into at(c,_dou) select concat('_dou: ',c),j from t where c='stringint';
762insert into at(c,_dou) select concat('_dou: ',c),j from t where c='stringdecimal';
763insert into at(c,_dou) select concat('_dou: ',c),j from t where c='object';
764ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 9
765insert into at(c,_dou) select concat('_dou: ',c),j from t where c='array';
766ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 10
767insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_decimal';
768insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_set';
769ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 12
770insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_enum';
771ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 13
772insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_date';
773ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 14
774insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_time';
775ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 15
776insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_datetime';
777ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 16
778insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_geom';
779ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 17
780insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_bit';
781ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 18
782insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_year';
783ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 19
784insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_blob';
785ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 20
786insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_longblob';
787ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 21
788insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_mediumblob';
789ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 22
790insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_tinyblob';
791ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 23
792insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_varbinary';
793insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_binary';
794insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_varchar';
795ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 26
796insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_string';
797insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_var_string';
798insert into at(c,_dat) select concat('_dat: ',c),j from t where c='null';
799ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
800insert into at(c,_dat) select concat('_dat: ',c),j from t where c='bool';
801ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
802insert into at(c,_dat) select concat('_dat: ',c),j from t where c='uint';
803ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3
804insert into at(c,_dat) select concat('_dat: ',c),j from t where c='int';
805ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4
806insert into at(c,_dat) select concat('_dat: ',c),j from t where c='double';
807ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5
808insert into at(c,_dat) select concat('_dat: ',c),j from t where c='stringany';
809ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6
810insert into at(c,_dat) select concat('_dat: ',c),j from t where c='stringint';
811ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7
812insert into at(c,_dat) select concat('_dat: ',c),j from t where c='stringdecimal';
813ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8
814insert into at(c,_dat) select concat('_dat: ',c),j from t where c='object';
815ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9
816insert into at(c,_dat) select concat('_dat: ',c),j from t where c='array';
817ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10
818insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_decimal';
819ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11
820insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_set';
821ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12
822insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_enum';
823ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13
824insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_date';
825insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_time';
826Warnings:
827Note	1292	Incorrect date value: '23:24:25' for column '_dat' at row 15
828insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_datetime';
829Warnings:
830Note	1292	Incorrect date value: '2015-01-15 23:24:25' for column '_dat' at row 16
831insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_geom';
832ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17
833insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_bit';
834ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18
835insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_year';
836ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19
837insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_blob';
838ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20
839insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_longblob';
840ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21
841insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_mediumblob';
842ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22
843insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_tinyblob';
844ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23
845insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_varbinary';
846insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_binary';
847insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_varchar';
848ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26
849insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_string';
850insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_var_string';
851insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='null';
852ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
853insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='bool';
854ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
855insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='uint';
856ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3
857insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='int';
858ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4
859insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='double';
860ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5
861insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='stringany';
862ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6
863insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='stringint';
864ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7
865insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='stringdecimal';
866ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8
867insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='object';
868ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9
869insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='array';
870ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10
871insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_decimal';
872ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11
873insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_set';
874ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12
875insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_enum';
876ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13
877insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_date';
878insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_time';
879insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_datetime';
880insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_geom';
881ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17
882insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_bit';
883ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18
884insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_year';
885ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19
886insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_blob';
887ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20
888insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_longblob';
889ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21
890insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_mediumblob';
891ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22
892insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_tinyblob';
893ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23
894insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_varbinary';
895insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_binary';
896insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_varchar';
897ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26
898insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_string';
899insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_var_string';
900insert into at(c,_smp) select concat('_smp: ',c),j from t where c='null';
901ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
902insert into at(c,_smp) select concat('_smp: ',c),j from t where c='bool';
903ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
904insert into at(c,_smp) select concat('_smp: ',c),j from t where c='uint';
905ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3
906insert into at(c,_smp) select concat('_smp: ',c),j from t where c='int';
907ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4
908insert into at(c,_smp) select concat('_smp: ',c),j from t where c='double';
909ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5
910insert into at(c,_smp) select concat('_smp: ',c),j from t where c='stringany';
911ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6
912insert into at(c,_smp) select concat('_smp: ',c),j from t where c='stringint';
913ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7
914insert into at(c,_smp) select concat('_smp: ',c),j from t where c='stringdecimal';
915ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8
916insert into at(c,_smp) select concat('_smp: ',c),j from t where c='object';
917ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9
918insert into at(c,_smp) select concat('_smp: ',c),j from t where c='array';
919ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10
920insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_decimal';
921ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11
922insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_set';
923ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12
924insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_enum';
925ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13
926insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_date';
927insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_time';
928insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_datetime';
929insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_geom';
930ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17
931insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_bit';
932ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18
933insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_year';
934ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19
935insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_blob';
936ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20
937insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_longblob';
938ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21
939insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_mediumblob';
940ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22
941insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_tinyblob';
942ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23
943insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_varbinary';
944insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_binary';
945insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_varchar';
946ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26
947insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_string';
948insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_var_string';
949insert into at(c,_tim) select concat('_tim: ',c),j from t where c='null';
950ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
951insert into at(c,_tim) select concat('_tim: ',c),j from t where c='bool';
952ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
953insert into at(c,_tim) select concat('_tim: ',c),j from t where c='uint';
954ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3
955insert into at(c,_tim) select concat('_tim: ',c),j from t where c='int';
956ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4
957insert into at(c,_tim) select concat('_tim: ',c),j from t where c='double';
958ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5
959insert into at(c,_tim) select concat('_tim: ',c),j from t where c='stringany';
960ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6
961insert into at(c,_tim) select concat('_tim: ',c),j from t where c='stringint';
962ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7
963insert into at(c,_tim) select concat('_tim: ',c),j from t where c='stringdecimal';
964ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8
965insert into at(c,_tim) select concat('_tim: ',c),j from t where c='object';
966ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9
967insert into at(c,_tim) select concat('_tim: ',c),j from t where c='array';
968ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10
969insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_decimal';
970ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11
971insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_set';
972ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12
973insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_enum';
974ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13
975insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_date';
976insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_time';
977insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_datetime';
978insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_geom';
979ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17
980insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_bit';
981ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18
982insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_year';
983ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19
984insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_blob';
985ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20
986insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_longblob';
987ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21
988insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_mediumblob';
989ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22
990insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_tinyblob';
991ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23
992insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_varbinary';
993insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_binary';
994insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_varchar';
995ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26
996insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_string';
997insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_var_string';
998insert into at(c,_yea) select concat('_yea: ',c),j from t where c='null';
999ERROR HY000: Incorrect integer value: 'null' for column '_yea' at row 1
1000insert into at(c,_yea) select concat('_yea: ',c),j from t where c='bool';
1001ERROR HY000: Incorrect integer value: 'true' for column '_yea' at row 2
1002insert into at(c,_yea) select concat('_yea: ',c),j from t where c='uint';
1003insert into at(c,_yea) select concat('_yea: ',c),j from t where c='int';
1004insert into at(c,_yea) select concat('_yea: ',c),j from t where c='double';
1005insert into at(c,_yea) select concat('_yea: ',c),j from t where c='stringany';
1006ERROR HY000: Incorrect integer value: '"a"' for column '_yea' at row 6
1007insert into at(c,_yea) select concat('_yea: ',c),j from t where c='stringint';
1008ERROR HY000: Incorrect integer value: '"1"' for column '_yea' at row 7
1009insert into at(c,_yea) select concat('_yea: ',c),j from t where c='stringdecimal';
1010ERROR HY000: Incorrect integer value: '"3.14"' for column '_yea' at row 8
1011insert into at(c,_yea) select concat('_yea: ',c),j from t where c='object';
1012ERROR HY000: Incorrect integer value: '{"a": 3}' for column '_yea' at row 9
1013insert into at(c,_yea) select concat('_yea: ',c),j from t where c='array';
1014ERROR HY000: Incorrect integer value: '[1, 2]' for column '_yea' at row 10
1015insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_decimal';
1016insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_set';
1017ERROR HY000: Incorrect integer value: '"b,c"' for column '_yea' at row 12
1018insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_enum';
1019ERROR HY000: Incorrect integer value: '"b"' for column '_yea' at row 13
1020insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_date';
1021ERROR HY000: Incorrect integer value: '"2015-01-15"' for column '_yea' at row 14
1022insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_time';
1023ERROR HY000: Incorrect integer value: '"23:24:25.000000"' for column '_yea' at row 15
1024insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_datetime';
1025ERROR HY000: Incorrect integer value: '"2015-01-15 23:24:25.000000"' for column '_yea' at row 16
1026insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_geom';
1027ERROR HY000: Incorrect integer value: '{"type": "Point", "coordinates": [1, 1]}' for column '_yea' at row 17
1028insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_bit';
1029ERROR HY000: Incorrect integer value: '"base64:type16:yv4="' for column '_yea' at row 18
1030insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_year';
1031ERROR HY000: Incorrect integer value: '"base64:type13:MTk5Mg=="' for column '_yea' at row 19
1032insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_blob';
1033ERROR HY000: Incorrect integer value: '"base64:type252:yv66vg=="' for column '_yea' at row 20
1034insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_longblob';
1035ERROR HY000: Incorrect integer value: '"base64:type251:yv66vg=="' for column '_yea' at row 21
1036insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_mediumblob';
1037ERROR HY000: Incorrect integer value: '"base64:type250:yv66vg=="' for column '_yea' at row 22
1038insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_tinyblob';
1039ERROR HY000: Incorrect integer value: '"base64:type249:yv66vg=="' for column '_yea' at row 23
1040insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_varbinary';
1041insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_binary';
1042insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_varchar';
1043ERROR HY000: Incorrect integer value: '"base64:type15:Zm9v"' for column '_yea' at row 26
1044insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_string';
1045insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_var_string';
1046insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='null';
1047insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='bool';
1048insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='uint';
1049insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='int';
1050insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='double';
1051insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='stringany';
1052insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='stringint';
1053insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='stringdecimal';
1054insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='object';
1055insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='array';
1056insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_decimal';
1057insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_set';
1058insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_enum';
1059insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_date';
1060insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_time';
1061insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_datetime';
1062insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_geom';
1063insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_bit';
1064insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_year';
1065insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_blob';
1066insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_longblob';
1067insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_mediumblob';
1068insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_tinyblob';
1069insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_varbinary';
1070insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_binary';
1071insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_varchar';
1072insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_string';
1073insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_var_string';
1074insert into at(c,_chr) select concat('_chr: ',c),j from t where c='null';
1075insert into at(c,_chr) select concat('_chr: ',c),j from t where c='bool';
1076insert into at(c,_chr) select concat('_chr: ',c),j from t where c='uint';
1077insert into at(c,_chr) select concat('_chr: ',c),j from t where c='int';
1078insert into at(c,_chr) select concat('_chr: ',c),j from t where c='double';
1079insert into at(c,_chr) select concat('_chr: ',c),j from t where c='stringany';
1080insert into at(c,_chr) select concat('_chr: ',c),j from t where c='stringint';
1081insert into at(c,_chr) select concat('_chr: ',c),j from t where c='stringdecimal';
1082insert into at(c,_chr) select concat('_chr: ',c),j from t where c='object';
1083insert into at(c,_chr) select concat('_chr: ',c),j from t where c='array';
1084insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_decimal';
1085insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_set';
1086insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_enum';
1087insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_date';
1088insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_time';
1089insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_datetime';
1090insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_geom';
1091insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_bit';
1092insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_year';
1093insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_blob';
1094insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_longblob';
1095insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_mediumblob';
1096insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_tinyblob';
1097insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_varbinary';
1098insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_binary';
1099insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_varchar';
1100insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_string';
1101insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_var_string';
1102insert into at(c,_vch) select concat('_vch: ',c),j from t where c='null';
1103insert into at(c,_vch) select concat('_vch: ',c),j from t where c='bool';
1104insert into at(c,_vch) select concat('_vch: ',c),j from t where c='uint';
1105insert into at(c,_vch) select concat('_vch: ',c),j from t where c='int';
1106insert into at(c,_vch) select concat('_vch: ',c),j from t where c='double';
1107insert into at(c,_vch) select concat('_vch: ',c),j from t where c='stringany';
1108insert into at(c,_vch) select concat('_vch: ',c),j from t where c='stringint';
1109insert into at(c,_vch) select concat('_vch: ',c),j from t where c='stringdecimal';
1110insert into at(c,_vch) select concat('_vch: ',c),j from t where c='object';
1111insert into at(c,_vch) select concat('_vch: ',c),j from t where c='array';
1112insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_decimal';
1113insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_set';
1114insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_enum';
1115insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_date';
1116insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_time';
1117insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_datetime';
1118insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_geom';
1119insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_bit';
1120insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_year';
1121insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_blob';
1122insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_longblob';
1123insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_mediumblob';
1124insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_tinyblob';
1125insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_varbinary';
1126insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_binary';
1127insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_varchar';
1128insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_string';
1129insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_var_string';
1130insert into at(c,_bin) select concat('_bin: ',c),j from t where c='null';
1131insert into at(c,_bin) select concat('_bin: ',c),j from t where c='bool';
1132insert into at(c,_bin) select concat('_bin: ',c),j from t where c='uint';
1133insert into at(c,_bin) select concat('_bin: ',c),j from t where c='int';
1134insert into at(c,_bin) select concat('_bin: ',c),j from t where c='double';
1135insert into at(c,_bin) select concat('_bin: ',c),j from t where c='stringany';
1136insert into at(c,_bin) select concat('_bin: ',c),j from t where c='stringint';
1137insert into at(c,_bin) select concat('_bin: ',c),j from t where c='stringdecimal';
1138insert into at(c,_bin) select concat('_bin: ',c),j from t where c='object';
1139insert into at(c,_bin) select concat('_bin: ',c),j from t where c='array';
1140insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_decimal';
1141insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_set';
1142insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_enum';
1143insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_date';
1144insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_time';
1145insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_datetime';
1146insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_geom';
1147insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_bit';
1148insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_year';
1149insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_blob';
1150insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_longblob';
1151insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_mediumblob';
1152insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_tinyblob';
1153insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_varbinary';
1154insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_binary';
1155insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_varchar';
1156insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_string';
1157insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_var_string';
1158insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='null';
1159insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='bool';
1160insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='uint';
1161insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='int';
1162insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='double';
1163insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='stringany';
1164insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='stringint';
1165insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='stringdecimal';
1166insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='object';
1167insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='array';
1168insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_decimal';
1169insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_set';
1170insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_enum';
1171insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_date';
1172insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_time';
1173insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_datetime';
1174insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_geom';
1175insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_bit';
1176insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_year';
1177insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_blob';
1178insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_longblob';
1179insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_mediumblob';
1180insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_tinyblob';
1181insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_varbinary';
1182insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_binary';
1183insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_varchar';
1184insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_string';
1185insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_var_string';
1186insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='null';
1187insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='bool';
1188insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='uint';
1189insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='int';
1190insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='double';
1191insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='stringany';
1192insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='stringint';
1193insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='stringdecimal';
1194insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='object';
1195insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='array';
1196insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_decimal';
1197insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_set';
1198insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_enum';
1199insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_date';
1200insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_time';
1201insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_datetime';
1202insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_geom';
1203insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_bit';
1204insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_year';
1205insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_blob';
1206insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_longblob';
1207insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_mediumblob';
1208insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_tinyblob';
1209insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_varbinary';
1210insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_binary';
1211insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_varchar';
1212insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_string';
1213insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_var_string';
1214insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='null';
1215insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='bool';
1216insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='uint';
1217insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='int';
1218insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='double';
1219insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='stringany';
1220insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='stringint';
1221insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='stringdecimal';
1222insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='object';
1223insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='array';
1224insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_decimal';
1225insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_set';
1226insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_enum';
1227insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_date';
1228insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_time';
1229insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_datetime';
1230insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_geom';
1231insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_bit';
1232insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_year';
1233insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_blob';
1234insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_longblob';
1235insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_mediumblob';
1236insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_tinyblob';
1237insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_varbinary';
1238insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_binary';
1239insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_varchar';
1240insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_string';
1241insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_var_string';
1242insert into at(c,_blb) select concat('_blb: ',c),j from t where c='null';
1243insert into at(c,_blb) select concat('_blb: ',c),j from t where c='bool';
1244insert into at(c,_blb) select concat('_blb: ',c),j from t where c='uint';
1245insert into at(c,_blb) select concat('_blb: ',c),j from t where c='int';
1246insert into at(c,_blb) select concat('_blb: ',c),j from t where c='double';
1247insert into at(c,_blb) select concat('_blb: ',c),j from t where c='stringany';
1248insert into at(c,_blb) select concat('_blb: ',c),j from t where c='stringint';
1249insert into at(c,_blb) select concat('_blb: ',c),j from t where c='stringdecimal';
1250insert into at(c,_blb) select concat('_blb: ',c),j from t where c='object';
1251insert into at(c,_blb) select concat('_blb: ',c),j from t where c='array';
1252insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_decimal';
1253insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_set';
1254insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_enum';
1255insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_date';
1256insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_time';
1257insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_datetime';
1258insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_geom';
1259insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_bit';
1260insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_year';
1261insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_blob';
1262insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_longblob';
1263insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_mediumblob';
1264insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_tinyblob';
1265insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_varbinary';
1266insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_binary';
1267insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_varchar';
1268insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_string';
1269insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_var_string';
1270insert into at(c,_txt) select concat('_txt: ',c),j from t where c='null';
1271insert into at(c,_txt) select concat('_txt: ',c),j from t where c='bool';
1272insert into at(c,_txt) select concat('_txt: ',c),j from t where c='uint';
1273insert into at(c,_txt) select concat('_txt: ',c),j from t where c='int';
1274insert into at(c,_txt) select concat('_txt: ',c),j from t where c='double';
1275insert into at(c,_txt) select concat('_txt: ',c),j from t where c='stringany';
1276insert into at(c,_txt) select concat('_txt: ',c),j from t where c='stringint';
1277insert into at(c,_txt) select concat('_txt: ',c),j from t where c='stringdecimal';
1278insert into at(c,_txt) select concat('_txt: ',c),j from t where c='object';
1279insert into at(c,_txt) select concat('_txt: ',c),j from t where c='array';
1280insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_decimal';
1281insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_set';
1282insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_enum';
1283insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_date';
1284insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_time';
1285insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_datetime';
1286insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_geom';
1287insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_bit';
1288insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_year';
1289insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_blob';
1290insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_longblob';
1291insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_mediumblob';
1292insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_tinyblob';
1293insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_varbinary';
1294insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_binary';
1295insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_varchar';
1296insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_string';
1297insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_var_string';
1298insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='null';
1299insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='bool';
1300insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='uint';
1301insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='int';
1302insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='double';
1303insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='stringany';
1304insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='stringint';
1305insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='stringdecimal';
1306insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='object';
1307insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='array';
1308insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_decimal';
1309insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_set';
1310insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_enum';
1311insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_date';
1312insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_time';
1313insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_datetime';
1314insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_geom';
1315insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_bit';
1316insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_year';
1317insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_blob';
1318insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_longblob';
1319insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_mediumblob';
1320insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_tinyblob';
1321insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_varbinary';
1322insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_binary';
1323insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_varchar';
1324insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_string';
1325insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_var_string';
1326insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='null';
1327insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='bool';
1328insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='uint';
1329insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='int';
1330insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='double';
1331insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='stringany';
1332insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='stringint';
1333insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='stringdecimal';
1334insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='object';
1335insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='array';
1336insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_decimal';
1337insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_set';
1338insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_enum';
1339insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_date';
1340insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_time';
1341insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_datetime';
1342insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_geom';
1343insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_bit';
1344insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_year';
1345insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_blob';
1346insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_longblob';
1347insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_mediumblob';
1348insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_tinyblob';
1349insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_varbinary';
1350insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_binary';
1351insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_varchar';
1352insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_string';
1353insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_var_string';
1354insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='null';
1355insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='bool';
1356insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='uint';
1357insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='int';
1358insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='double';
1359insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='stringany';
1360insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='stringint';
1361insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='stringdecimal';
1362insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='object';
1363insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='array';
1364insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_decimal';
1365insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_set';
1366insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_enum';
1367insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_date';
1368insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_time';
1369insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_datetime';
1370insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_geom';
1371insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_bit';
1372insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_year';
1373insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_blob';
1374insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_longblob';
1375insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_mediumblob';
1376insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_tinyblob';
1377insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_varbinary';
1378insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_binary';
1379insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_varchar';
1380insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_string';
1381insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_var_string';
1382insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='null';
1383insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='bool';
1384insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='uint';
1385insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='int';
1386insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='double';
1387insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='stringany';
1388insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='stringint';
1389insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='stringdecimal';
1390insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='object';
1391insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='array';
1392insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_decimal';
1393insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_set';
1394insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_enum';
1395insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_date';
1396insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_time';
1397insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_datetime';
1398insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_geom';
1399insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_bit';
1400insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_year';
1401insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_blob';
1402insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_longblob';
1403insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_mediumblob';
1404insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_tinyblob';
1405insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_varbinary';
1406insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_binary';
1407insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_varchar';
1408insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_string';
1409insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_var_string';
1410insert into at(c,_enu) select concat('_enu: ',c),j from t where c='double';
1411ERROR 01000: Data truncated for column '_enu' at row 5
1412insert into at(c,_enu) select concat('_enu: ',c),j from t where c='stringany';
1413ERROR 01000: Data truncated for column '_enu' at row 6
1414insert into at(c,_enu) select concat('_enu: ',c),j from t where c='stringint';
1415ERROR 01000: Data truncated for column '_enu' at row 7
1416insert into at(c,_enu) select concat('_enu: ',c),j from t where c='stringdecimal';
1417ERROR 01000: Data truncated for column '_enu' at row 8
1418insert into at(c,_enu) select concat('_enu: ',c),j from t where c='object';
1419ERROR 01000: Data truncated for column '_enu' at row 9
1420insert into at(c,_enu) select concat('_enu: ',c),j from t where c='array';
1421ERROR 01000: Data truncated for column '_enu' at row 10
1422insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_decimal';
1423ERROR 01000: Data truncated for column '_enu' at row 11
1424insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_set';
1425ERROR 01000: Data truncated for column '_enu' at row 12
1426insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_enum';
1427ERROR 01000: Data truncated for column '_enu' at row 13
1428insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_date';
1429ERROR 01000: Data truncated for column '_enu' at row 14
1430insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_time';
1431ERROR 01000: Data truncated for column '_enu' at row 15
1432insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_datetime';
1433ERROR 01000: Data truncated for column '_enu' at row 16
1434insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_geom';
1435ERROR 01000: Data truncated for column '_enu' at row 17
1436insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_bit';
1437ERROR 01000: Data truncated for column '_enu' at row 18
1438insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_year';
1439ERROR 01000: Data truncated for column '_enu' at row 19
1440insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_blob';
1441ERROR 01000: Data truncated for column '_enu' at row 20
1442insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_longblob';
1443ERROR 01000: Data truncated for column '_enu' at row 21
1444insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_mediumblob';
1445ERROR 01000: Data truncated for column '_enu' at row 22
1446insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_tinyblob';
1447ERROR 01000: Data truncated for column '_enu' at row 23
1448insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_varbinary';
1449insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_binary';
1450insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_varchar';
1451ERROR 01000: Data truncated for column '_enu' at row 26
1452insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_string';
1453insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_var_string';
1454insert into at(c,_set) select concat('_set: ',c),j from t where c='null';
1455ERROR 01000: Data truncated for column '_set' at row 1
1456insert into at(c,_set) select concat('_set: ',c),j from t where c='bool';
1457ERROR 01000: Data truncated for column '_set' at row 2
1458insert into at(c,_set) select concat('_set: ',c),j from t where c='uint';
1459ERROR 01000: Data truncated for column '_set' at row 3
1460insert into at(c,_set) select concat('_set: ',c),j from t where c='int';
1461ERROR 01000: Data truncated for column '_set' at row 4
1462insert into at(c,_set) select concat('_set: ',c),j from t where c='double';
1463ERROR 01000: Data truncated for column '_set' at row 5
1464insert into at(c,_set) select concat('_set: ',c),j from t where c='stringany';
1465ERROR 01000: Data truncated for column '_set' at row 6
1466insert into at(c,_set) select concat('_set: ',c),j from t where c='stringint';
1467ERROR 01000: Data truncated for column '_set' at row 7
1468insert into at(c,_set) select concat('_set: ',c),j from t where c='stringdecimal';
1469ERROR 01000: Data truncated for column '_set' at row 8
1470insert into at(c,_set) select concat('_set: ',c),j from t where c='object';
1471ERROR 01000: Data truncated for column '_set' at row 9
1472insert into at(c,_set) select concat('_set: ',c),j from t where c='array';
1473ERROR 01000: Data truncated for column '_set' at row 10
1474insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_decimal';
1475ERROR 01000: Data truncated for column '_set' at row 11
1476insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_set';
1477ERROR 01000: Data truncated for column '_set' at row 12
1478insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_enum';
1479ERROR 01000: Data truncated for column '_set' at row 13
1480insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_date';
1481ERROR 01000: Data truncated for column '_set' at row 14
1482insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_time';
1483ERROR 01000: Data truncated for column '_set' at row 15
1484insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_datetime';
1485ERROR 01000: Data truncated for column '_set' at row 16
1486insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_geom';
1487ERROR 01000: Data truncated for column '_set' at row 17
1488insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_bit';
1489ERROR 01000: Data truncated for column '_set' at row 18
1490insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_year';
1491ERROR 01000: Data truncated for column '_set' at row 19
1492insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_blob';
1493ERROR 01000: Data truncated for column '_set' at row 20
1494insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_longblob';
1495ERROR 01000: Data truncated for column '_set' at row 21
1496insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_mediumblob';
1497ERROR 01000: Data truncated for column '_set' at row 22
1498insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_tinyblob';
1499ERROR 01000: Data truncated for column '_set' at row 23
1500insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_varbinary';
1501insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_binary';
1502insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_varchar';
1503ERROR 01000: Data truncated for column '_set' at row 26
1504insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_string';
1505insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_var_string';
1506insert into at(c,_geo) select concat('_geo: ',c),j from t where c='null';
1507ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1508insert into at(c,_geo) select concat('_geo: ',c),j from t where c='bool';
1509ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1510insert into at(c,_geo) select concat('_geo: ',c),j from t where c='uint';
1511ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1512insert into at(c,_geo) select concat('_geo: ',c),j from t where c='int';
1513ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1514insert into at(c,_geo) select concat('_geo: ',c),j from t where c='double';
1515ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1516insert into at(c,_geo) select concat('_geo: ',c),j from t where c='stringany';
1517ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1518insert into at(c,_geo) select concat('_geo: ',c),j from t where c='stringint';
1519ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1520insert into at(c,_geo) select concat('_geo: ',c),j from t where c='stringdecimal';
1521ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1522insert into at(c,_geo) select concat('_geo: ',c),j from t where c='object';
1523ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1524insert into at(c,_geo) select concat('_geo: ',c),j from t where c='array';
1525ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1526insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_decimal';
1527ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1528insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_set';
1529ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1530insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_enum';
1531ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1532insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_date';
1533ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1534insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_time';
1535ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1536insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_datetime';
1537ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1538insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_geom';
1539ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1540insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_bit';
1541ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1542insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_year';
1543ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1544insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_blob';
1545ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1546insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_longblob';
1547ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1548insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_mediumblob';
1549ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1550insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_tinyblob';
1551ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1552insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_varbinary';
1553insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_binary';
1554insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_varchar';
1555ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1556insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_string';
1557insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_var_string';
1558insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='null';
1559ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1560insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='bool';
1561ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1562insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='uint';
1563ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1564insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='int';
1565ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1566insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='double';
1567ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1568insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='stringany';
1569ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1570insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='stringint';
1571ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1572insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='stringdecimal';
1573ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1574insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='object';
1575ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1576insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='array';
1577ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1578insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_decimal';
1579ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1580insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_set';
1581ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1582insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_enum';
1583ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1584insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_date';
1585ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1586insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_time';
1587ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1588insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_datetime';
1589ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1590insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_geom';
1591ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1592insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_bit';
1593ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1594insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_year';
1595ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1596insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_blob';
1597ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1598insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_longblob';
1599ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1600insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_mediumblob';
1601ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1602insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_tinyblob';
1603ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1604insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_varbinary';
1605insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_binary';
1606insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_varchar';
1607ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1608insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_string';
1609insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_var_string';
1610insert into at(c,_lst) select concat('_lst: ',c),j from t where c='null';
1611ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1612insert into at(c,_lst) select concat('_lst: ',c),j from t where c='bool';
1613ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1614insert into at(c,_lst) select concat('_lst: ',c),j from t where c='uint';
1615ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1616insert into at(c,_lst) select concat('_lst: ',c),j from t where c='int';
1617ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1618insert into at(c,_lst) select concat('_lst: ',c),j from t where c='double';
1619ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1620insert into at(c,_lst) select concat('_lst: ',c),j from t where c='stringany';
1621ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1622insert into at(c,_lst) select concat('_lst: ',c),j from t where c='stringint';
1623ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1624insert into at(c,_lst) select concat('_lst: ',c),j from t where c='stringdecimal';
1625ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1626insert into at(c,_lst) select concat('_lst: ',c),j from t where c='object';
1627ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1628insert into at(c,_lst) select concat('_lst: ',c),j from t where c='array';
1629ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1630insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_decimal';
1631ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1632insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_set';
1633ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1634insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_enum';
1635ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1636insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_date';
1637ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1638insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_time';
1639ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1640insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_datetime';
1641ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1642insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_geom';
1643ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1644insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_bit';
1645ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1646insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_year';
1647ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1648insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_blob';
1649ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1650insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_longblob';
1651ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1652insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_mediumblob';
1653ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1654insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_tinyblob';
1655ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1656insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_varbinary';
1657insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_binary';
1658insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_varchar';
1659ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1660insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_string';
1661insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_var_string';
1662insert into at(c,_pol) select concat('_pol: ',c),j from t where c='null';
1663ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1664insert into at(c,_pol) select concat('_pol: ',c),j from t where c='bool';
1665ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1666insert into at(c,_pol) select concat('_pol: ',c),j from t where c='uint';
1667ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1668insert into at(c,_pol) select concat('_pol: ',c),j from t where c='int';
1669ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1670insert into at(c,_pol) select concat('_pol: ',c),j from t where c='double';
1671ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1672insert into at(c,_pol) select concat('_pol: ',c),j from t where c='stringany';
1673ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1674insert into at(c,_pol) select concat('_pol: ',c),j from t where c='stringint';
1675ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1676insert into at(c,_pol) select concat('_pol: ',c),j from t where c='stringdecimal';
1677ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1678insert into at(c,_pol) select concat('_pol: ',c),j from t where c='object';
1679ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1680insert into at(c,_pol) select concat('_pol: ',c),j from t where c='array';
1681ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1682insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_decimal';
1683ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1684insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_set';
1685ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1686insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_enum';
1687ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1688insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_date';
1689ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1690insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_time';
1691ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1692insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_datetime';
1693ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1694insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_geom';
1695ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1696insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_bit';
1697ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1698insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_year';
1699ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1700insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_blob';
1701ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1702insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_longblob';
1703ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1704insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_mediumblob';
1705ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1706insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_tinyblob';
1707ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1708insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_varbinary';
1709insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_binary';
1710insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_varchar';
1711ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1712insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_string';
1713insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_var_string';
1714insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='null';
1715ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1716insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='bool';
1717ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1718insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='uint';
1719ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1720insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='int';
1721ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1722insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='double';
1723ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1724insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='stringany';
1725ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1726insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='stringint';
1727ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1728insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='stringdecimal';
1729ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1730insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='object';
1731ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1732insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='array';
1733ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1734insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_decimal';
1735ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1736insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_set';
1737ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1738insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_enum';
1739ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1740insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_date';
1741ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1742insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_time';
1743ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1744insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_datetime';
1745ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1746insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_geom';
1747ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1748insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_bit';
1749ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1750insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_year';
1751ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1752insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_blob';
1753ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1754insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_longblob';
1755ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1756insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_mediumblob';
1757ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1758insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_tinyblob';
1759ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1760insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_varbinary';
1761insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_binary';
1762insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_varchar';
1763ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1764insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_string';
1765insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_var_string';
1766insert into at(c,_mls) select concat('_mls: ',c),j from t where c='null';
1767ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1768insert into at(c,_mls) select concat('_mls: ',c),j from t where c='bool';
1769ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1770insert into at(c,_mls) select concat('_mls: ',c),j from t where c='uint';
1771ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1772insert into at(c,_mls) select concat('_mls: ',c),j from t where c='int';
1773ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1774insert into at(c,_mls) select concat('_mls: ',c),j from t where c='double';
1775ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1776insert into at(c,_mls) select concat('_mls: ',c),j from t where c='stringany';
1777ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1778insert into at(c,_mls) select concat('_mls: ',c),j from t where c='stringint';
1779ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1780insert into at(c,_mls) select concat('_mls: ',c),j from t where c='stringdecimal';
1781ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1782insert into at(c,_mls) select concat('_mls: ',c),j from t where c='object';
1783ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1784insert into at(c,_mls) select concat('_mls: ',c),j from t where c='array';
1785ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1786insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_decimal';
1787ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1788insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_set';
1789ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1790insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_enum';
1791ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1792insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_date';
1793ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1794insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_time';
1795ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1796insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_datetime';
1797ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1798insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_geom';
1799ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1800insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_bit';
1801ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1802insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_year';
1803ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1804insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_blob';
1805ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1806insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_longblob';
1807ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1808insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_mediumblob';
1809ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1810insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_tinyblob';
1811ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1812insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_varbinary';
1813insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_binary';
1814insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_varchar';
1815ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1816insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_string';
1817insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_var_string';
1818insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='null';
1819ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1820insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='bool';
1821ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1822insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='uint';
1823ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1824insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='int';
1825ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1826insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='double';
1827ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1828insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='stringany';
1829ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1830insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='stringint';
1831ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1832insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='stringdecimal';
1833ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1834insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='object';
1835ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1836insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='array';
1837ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1838insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_decimal';
1839ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1840insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_set';
1841ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1842insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_enum';
1843ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1844insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_date';
1845ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1846insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_time';
1847ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1848insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_datetime';
1849ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1850insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_geom';
1851ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1852insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_bit';
1853ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1854insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_year';
1855ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1856insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_blob';
1857ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1858insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_longblob';
1859ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1860insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_mediumblob';
1861ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1862insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_tinyblob';
1863ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1864insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_varbinary';
1865insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_binary';
1866insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_varchar';
1867ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1868insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_string';
1869insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_var_string';
1870insert into at(c,_gco) select concat('_gco: ',c),j from t where c='null';
1871ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1872insert into at(c,_gco) select concat('_gco: ',c),j from t where c='bool';
1873ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1874insert into at(c,_gco) select concat('_gco: ',c),j from t where c='uint';
1875ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1876insert into at(c,_gco) select concat('_gco: ',c),j from t where c='int';
1877ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1878insert into at(c,_gco) select concat('_gco: ',c),j from t where c='double';
1879ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1880insert into at(c,_gco) select concat('_gco: ',c),j from t where c='stringany';
1881ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1882insert into at(c,_gco) select concat('_gco: ',c),j from t where c='stringint';
1883ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1884insert into at(c,_gco) select concat('_gco: ',c),j from t where c='stringdecimal';
1885ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1886insert into at(c,_gco) select concat('_gco: ',c),j from t where c='object';
1887ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1888insert into at(c,_gco) select concat('_gco: ',c),j from t where c='array';
1889ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1890insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_decimal';
1891ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1892insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_set';
1893ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1894insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_enum';
1895ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1896insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_date';
1897ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1898insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_time';
1899ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1900insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_datetime';
1901ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1902insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_geom';
1903ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1904insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_bit';
1905ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1906insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_year';
1907ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1908insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_blob';
1909ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1910insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_longblob';
1911ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1912insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_mediumblob';
1913ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1914insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_tinyblob';
1915ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1916insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_varbinary';
1917insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_binary';
1918insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_varchar';
1919ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1920insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_string';
1921insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_var_string';
1922# ----------------------------------------------------------------------
1923#  I N S E R T   F R O M   J S O N   F U N C T I O N
1924# ----------------------------------------------------------------------
1925insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='null';
1926insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='bool';
1927insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='uint';
1928insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='int';
1929insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='double';
1930insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='stringany';
1931insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='stringint';
1932insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='stringdecimal';
1933insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='object';
1934insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='array';
1935insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
1936insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
1937insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
1938insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
1939ERROR 22001: Data too long for column '_bit' at row 14
1940insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
1941ERROR 22001: Data too long for column '_bit' at row 15
1942insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
1943ERROR 22001: Data too long for column '_bit' at row 16
1944insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
1945ERROR 22001: Data too long for column '_bit' at row 17
1946insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
1947ERROR 22001: Data too long for column '_bit' at row 18
1948insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
1949ERROR 22001: Data too long for column '_bit' at row 19
1950insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
1951ERROR 22001: Data too long for column '_bit' at row 19
1952insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
1953ERROR 22001: Data too long for column '_bit' at row 20
1954insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
1955ERROR 22001: Data too long for column '_bit' at row 21
1956insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
1957ERROR 22001: Data too long for column '_bit' at row 22
1958insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
1959ERROR 22001: Data too long for column '_bit' at row 23
1960insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
1961insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
1962insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
1963ERROR 22001: Data too long for column '_bit' at row 26
1964insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
1965insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
1966insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='null';
1967ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1968insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='bool';
1969insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='uint';
1970insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='int';
1971insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='double';
1972insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='stringany';
1973ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6
1974insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='stringint';
1975insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='stringdecimal';
1976ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8
1977insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='object';
1978ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9
1979insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='array';
1980ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10
1981insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
1982insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
1983ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12
1984insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
1985ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13
1986insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
1987ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14
1988insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
1989ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15
1990insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
1991ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16
1992insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
1993ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17
1994insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
1995ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18
1996insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
1997ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19
1998insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
1999ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20
2000insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2001ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21
2002insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2003ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22
2004insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2005ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23
2006insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2007insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2008insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2009ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26
2010insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2011insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2012insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='null';
2013ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2014insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='bool';
2015insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='uint';
2016insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='int';
2017insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='double';
2018insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='stringany';
2019ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6
2020insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='stringint';
2021insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='stringdecimal';
2022ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8
2023insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='object';
2024ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9
2025insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='array';
2026ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10
2027insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2028insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2029ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12
2030insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2031ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13
2032insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2033ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14
2034insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2035ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15
2036insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2037ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16
2038insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2039ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17
2040insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2041ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18
2042insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2043ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19
2044insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2045ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20
2046insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2047ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21
2048insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2049ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22
2050insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2051ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23
2052insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2053insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2054insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2055ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26
2056insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2057insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2058insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='null';
2059ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2060insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='bool';
2061insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='uint';
2062insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='int';
2063insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='double';
2064insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='stringany';
2065ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6
2066insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='stringint';
2067insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='stringdecimal';
2068ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8
2069insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='object';
2070ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9
2071insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='array';
2072ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10
2073insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2074insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2075ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12
2076insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2077ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13
2078insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2079ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14
2080insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2081ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15
2082insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2083ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16
2084insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2085ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17
2086insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2087ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18
2088insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2089ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19
2090insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2091ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20
2092insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2093ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21
2094insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2095ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22
2096insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2097ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23
2098insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2099insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2100insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2101ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26
2102insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2103insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2104insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='null';
2105ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2106insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='bool';
2107insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='uint';
2108insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='int';
2109insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='double';
2110insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='stringany';
2111ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6
2112insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='stringint';
2113insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='stringdecimal';
2114ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8
2115insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='object';
2116ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9
2117insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='array';
2118ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10
2119insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2120insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2121ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12
2122insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2123ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13
2124insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2125ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14
2126insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2127ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15
2128insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2129ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16
2130insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2131ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17
2132insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2133ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18
2134insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2135ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19
2136insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2137ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20
2138insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2139ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21
2140insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2141ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22
2142insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2143ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23
2144insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2145insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2146insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2147ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26
2148insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2149insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2150insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='null';
2151ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2152insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='bool';
2153insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='uint';
2154insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='int';
2155insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='double';
2156insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='stringany';
2157ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6
2158insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='stringint';
2159insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='stringdecimal';
2160ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8
2161insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='object';
2162ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9
2163insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='array';
2164ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10
2165insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2166insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2167ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12
2168insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2169ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13
2170insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2171ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14
2172insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2173ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15
2174insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2175ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16
2176insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2177ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17
2178insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2179ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18
2180insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2181ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19
2182insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2183ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20
2184insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2185ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21
2186insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2187ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22
2188insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2189ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23
2190insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2191insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2192insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2193ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26
2194insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2195insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2196insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='null';
2197ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2198insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='bool';
2199insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='uint';
2200insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='int';
2201insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='double';
2202insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='stringany';
2203ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6
2204insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='stringint';
2205insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='stringdecimal';
2206ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8
2207insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='object';
2208ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9
2209insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='array';
2210ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10
2211insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2212insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2213ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12
2214insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2215ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13
2216insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2217ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14
2218insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2219ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15
2220insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2221ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16
2222insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2223ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17
2224insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2225ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18
2226insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2227ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19
2228insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2229ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20
2230insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2231ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21
2232insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2233ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22
2234insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2235ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23
2236insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2237insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2238insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2239ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26
2240insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2241insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2242insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='null';
2243ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2244insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='bool';
2245insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='uint';
2246insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='int';
2247insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='double';
2248insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='stringany';
2249ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6
2250insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='stringint';
2251insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='stringdecimal';
2252ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8
2253insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='object';
2254ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9
2255insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='array';
2256ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10
2257insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2258insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2259ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12
2260insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2261ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13
2262insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2263ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14
2264insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2265ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15
2266insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2267ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16
2268insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2269ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17
2270insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2271ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18
2272insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2273ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19
2274insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2275ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20
2276insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2277ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21
2278insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2279ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22
2280insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2281ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23
2282insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2283insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2284insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2285ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26
2286insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2287insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2288insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='null';
2289ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2290insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='bool';
2291insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='uint';
2292insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='int';
2293insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='double';
2294insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='stringany';
2295ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6
2296insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='stringint';
2297insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='stringdecimal';
2298ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8
2299insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='object';
2300ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9
2301insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='array';
2302ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10
2303insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2304insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2305ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12
2306insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2307ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13
2308insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2309ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14
2310insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2311ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15
2312insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2313ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16
2314insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2315ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17
2316insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2317ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18
2318insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2319ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19
2320insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2321ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20
2322insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2323ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21
2324insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2325ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22
2326insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2327ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23
2328insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2329insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2330insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2331ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26
2332insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2333insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2334insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='null';
2335ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2336insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='bool';
2337insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='uint';
2338insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='int';
2339insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='double';
2340insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='stringany';
2341ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6
2342insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='stringint';
2343insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='stringdecimal';
2344ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8
2345insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='object';
2346ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9
2347insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='array';
2348ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10
2349insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2350insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2351ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12
2352insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2353ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13
2354insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2355ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14
2356insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2357ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15
2358insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2359ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16
2360insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2361ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17
2362insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2363ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18
2364insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2365ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19
2366insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2367ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20
2368insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2369ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21
2370insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2371ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22
2372insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2373ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23
2374insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2375insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2376insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2377ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26
2378insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2379insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2380insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='null';
2381ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2382insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='bool';
2383insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='uint';
2384insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='int';
2385insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='double';
2386insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='stringany';
2387ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6
2388insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='stringint';
2389insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='stringdecimal';
2390ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8
2391insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='object';
2392ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9
2393insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='array';
2394ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10
2395insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2396insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2397ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12
2398insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2399ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13
2400insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2401ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14
2402insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2403ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15
2404insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2405ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16
2406insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2407ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17
2408insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2409ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18
2410insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2411ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19
2412insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2413ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20
2414insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2415ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21
2416insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2417ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22
2418insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2419ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23
2420insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2421insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2422insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2423ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26
2424insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2425insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2426insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='null';
2427ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2428insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='bool';
2429insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='uint';
2430insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='int';
2431insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='double';
2432insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='stringany';
2433ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1
2434insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='stringint';
2435insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='stringdecimal';
2436insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='object';
2437ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 9
2438insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='array';
2439ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 10
2440insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2441insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2442ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1
2443insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2444ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1
2445insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2446ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 14
2447insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2448ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 15
2449insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2450ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 16
2451insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2452ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 17
2453insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2454ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 18
2455insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2456ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 19
2457insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2458ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 20
2459insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2460ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 21
2461insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2462ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 22
2463insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2464ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 23
2465insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2466insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2467insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2468ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 26
2469insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2470insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2471insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='null';
2472ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2473insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='bool';
2474insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='uint';
2475insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='int';
2476insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='double';
2477insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='stringany';
2478ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 6
2479insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='stringint';
2480insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='stringdecimal';
2481insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='object';
2482ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 9
2483insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='array';
2484ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 10
2485insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2486insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2487ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 12
2488insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2489ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 13
2490insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2491ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 14
2492insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2493ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 15
2494insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2495ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 16
2496insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2497ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 17
2498insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2499ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 18
2500insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2501ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 19
2502insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2503ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 20
2504insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2505ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 21
2506insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2507ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 22
2508insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2509ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 23
2510insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2511insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2512insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2513ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 26
2514insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2515insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2516insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='null';
2517ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2518insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='bool';
2519insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='uint';
2520insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='int';
2521insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='double';
2522insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='stringany';
2523ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 6
2524insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='stringint';
2525insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='stringdecimal';
2526insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='object';
2527ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 9
2528insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='array';
2529ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 10
2530insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2531insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2532ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 12
2533insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2534ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 13
2535insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2536ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 14
2537insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2538ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 15
2539insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2540ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 16
2541insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2542ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 17
2543insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2544ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 18
2545insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2546ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 19
2547insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2548ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 20
2549insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2550ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 21
2551insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2552ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 22
2553insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2554ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 23
2555insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2556insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2557insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2558ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 26
2559insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2560insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2561insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='null';
2562ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2563insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='bool';
2564ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2
2565insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='uint';
2566ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3
2567insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='int';
2568ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4
2569insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='double';
2570ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5
2571insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='stringany';
2572ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6
2573insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='stringint';
2574ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7
2575insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='stringdecimal';
2576ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8
2577insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='object';
2578ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9
2579insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='array';
2580ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10
2581insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2582ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11
2583insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2584ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12
2585insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2586ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13
2587insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2588insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2589Warnings:
2590Note	1292	Incorrect date value: '23:24:25' for column '_dat' at row 15
2591insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2592Warnings:
2593Note	1292	Incorrect date value: '2015-01-15 23:24:25' for column '_dat' at row 16
2594insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2595ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17
2596insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2597ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18
2598insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2599ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19
2600insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2601ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20
2602insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2603ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21
2604insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2605ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22
2606insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2607ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23
2608insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2609insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2610insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2611ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26
2612insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2613insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2614insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='null';
2615ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2616insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='bool';
2617ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2
2618insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='uint';
2619ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3
2620insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='int';
2621ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4
2622insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='double';
2623ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5
2624insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='stringany';
2625ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6
2626insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='stringint';
2627ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7
2628insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='stringdecimal';
2629ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8
2630insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='object';
2631ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9
2632insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='array';
2633ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10
2634insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2635ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11
2636insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2637ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12
2638insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2639ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13
2640insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2641insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2642insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2643insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2644ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17
2645insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2646ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18
2647insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2648ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19
2649insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2650ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20
2651insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2652ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21
2653insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2654ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22
2655insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2656ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23
2657insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2658insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2659insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2660ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26
2661insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2662insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2663insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='null';
2664ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2665insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='bool';
2666ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2
2667insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='uint';
2668ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3
2669insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='int';
2670ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4
2671insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='double';
2672ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5
2673insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='stringany';
2674ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6
2675insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='stringint';
2676ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7
2677insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='stringdecimal';
2678ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8
2679insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='object';
2680ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9
2681insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='array';
2682ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10
2683insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2684ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11
2685insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2686ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12
2687insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2688ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13
2689insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2690insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2691insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2692insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2693ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17
2694insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2695ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18
2696insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2697ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19
2698insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2699ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20
2700insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2701ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21
2702insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2703ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22
2704insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2705ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23
2706insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2707insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2708insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2709ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26
2710insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2711insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2712insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='null';
2713ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2714insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='bool';
2715ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2
2716insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='uint';
2717ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3
2718insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='int';
2719ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4
2720insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='double';
2721ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5
2722insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='stringany';
2723ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6
2724insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='stringint';
2725ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7
2726insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='stringdecimal';
2727ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8
2728insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='object';
2729ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9
2730insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='array';
2731ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10
2732insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2733ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11
2734insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2735ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12
2736insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2737ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13
2738insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2739insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2740insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2741insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2742ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17
2743insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2744ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18
2745insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2746ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19
2747insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2748ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20
2749insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2750ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21
2751insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2752ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22
2753insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2754ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23
2755insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2756insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2757insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2758ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26
2759insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2760insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2761insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='null';
2762ERROR HY000: Incorrect integer value: 'null' for column '_yea' at row 1
2763insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='bool';
2764ERROR HY000: Incorrect integer value: 'true' for column '_yea' at row 2
2765insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='uint';
2766insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='int';
2767insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='double';
2768insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='stringany';
2769ERROR HY000: Incorrect integer value: '"a"' for column '_yea' at row 6
2770insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='stringint';
2771ERROR HY000: Incorrect integer value: '"1"' for column '_yea' at row 7
2772insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='stringdecimal';
2773ERROR HY000: Incorrect integer value: '"3.14"' for column '_yea' at row 8
2774insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='object';
2775ERROR HY000: Incorrect integer value: '{"a": 3}' for column '_yea' at row 9
2776insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='array';
2777ERROR HY000: Incorrect integer value: '[1, 2]' for column '_yea' at row 10
2778insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2779insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2780ERROR HY000: Incorrect integer value: '"b,c"' for column '_yea' at row 12
2781insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2782ERROR HY000: Incorrect integer value: '"b"' for column '_yea' at row 13
2783insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2784ERROR HY000: Incorrect integer value: '"2015-01-15"' for column '_yea' at row 14
2785insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2786ERROR HY000: Incorrect integer value: '"23:24:25.000000"' for column '_yea' at row 15
2787insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2788ERROR HY000: Incorrect integer value: '"2015-01-15 23:24:25.000000"' for column '_yea' at row 16
2789insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2790ERROR HY000: Incorrect integer value: '{"type": "Point", "coordinates": [1, 1]}' for column '_yea' at row 17
2791insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2792ERROR HY000: Incorrect integer value: '"base64:type16:yv4="' for column '_yea' at row 18
2793insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2794ERROR HY000: Incorrect integer value: '"base64:type13:MTk5Mg=="' for column '_yea' at row 19
2795insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2796ERROR HY000: Incorrect integer value: '"base64:type252:yv66vg=="' for column '_yea' at row 20
2797insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2798ERROR HY000: Incorrect integer value: '"base64:type251:yv66vg=="' for column '_yea' at row 21
2799insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2800ERROR HY000: Incorrect integer value: '"base64:type250:yv66vg=="' for column '_yea' at row 22
2801insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2802ERROR HY000: Incorrect integer value: '"base64:type249:yv66vg=="' for column '_yea' at row 23
2803insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2804insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2805insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2806ERROR HY000: Incorrect integer value: '"base64:type15:Zm9v"' for column '_yea' at row 26
2807insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2808insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2809insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='null';
2810insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='bool';
2811insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='uint';
2812insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='int';
2813insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='double';
2814insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='stringany';
2815insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='stringint';
2816insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='stringdecimal';
2817insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='object';
2818insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='array';
2819insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2820insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2821insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2822insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2823insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2824insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2825insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2826insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2827insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2828insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2829insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2830insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2831insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2832insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2833insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2834insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2835insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2836insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2837insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='null';
2838insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='bool';
2839insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='uint';
2840insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='int';
2841insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='double';
2842insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='stringany';
2843insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='stringint';
2844insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='stringdecimal';
2845insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='object';
2846insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='array';
2847insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2848insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2849insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2850insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2851insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2852insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2853insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2854insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2855insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2856insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2857insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2858insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2859insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2860insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2861insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2862insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2863insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2864insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2865insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='null';
2866insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='bool';
2867insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='uint';
2868insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='int';
2869insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='double';
2870insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='stringany';
2871insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='stringint';
2872insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='stringdecimal';
2873insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='object';
2874insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='array';
2875insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2876insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2877insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2878insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2879insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2880insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2881insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2882insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2883insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2884insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2885insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2886insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2887insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2888insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2889insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2890insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2891insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2892insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2893insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='null';
2894insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='bool';
2895insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='uint';
2896insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='int';
2897insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='double';
2898insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='stringany';
2899insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='stringint';
2900insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='stringdecimal';
2901insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='object';
2902insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='array';
2903insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2904insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2905insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2906insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2907insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2908insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2909insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2910insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2911insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2912insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2913insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2914insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2915insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2916insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2917insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2918insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2919insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2920insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2921insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='null';
2922insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='bool';
2923insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='uint';
2924insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='int';
2925insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='double';
2926insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='stringany';
2927insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='stringint';
2928insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='stringdecimal';
2929insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='object';
2930insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='array';
2931insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2932insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2933insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2934insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2935insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2936insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2937insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2938insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2939insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2940insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2941insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2942insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2943insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2944insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2945insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2946insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2947insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2948insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2949insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='null';
2950insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='bool';
2951insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='uint';
2952insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='int';
2953insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='double';
2954insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='stringany';
2955insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='stringint';
2956insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='stringdecimal';
2957insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='object';
2958insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='array';
2959insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2960insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2961insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2962insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2963insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2964insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2965insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2966insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2967insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2968insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2969insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2970insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2971insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2972insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2973insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2974insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2975insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2976insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2977insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='null';
2978insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='bool';
2979insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='uint';
2980insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='int';
2981insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='double';
2982insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='stringany';
2983insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='stringint';
2984insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='stringdecimal';
2985insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='object';
2986insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='array';
2987insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2988insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2989insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2990insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2991insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2992insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2993insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2994insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2995insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2996insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2997insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2998insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2999insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3000insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3001insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3002insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3003insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3004insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3005insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='null';
3006insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='bool';
3007insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='uint';
3008insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='int';
3009insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='double';
3010insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='stringany';
3011insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='stringint';
3012insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='stringdecimal';
3013insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='object';
3014insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='array';
3015insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3016insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3017insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3018insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3019insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3020insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3021insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3022insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3023insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3024insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3025insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3026insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3027insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3028insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3029insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3030insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3031insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3032insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3033insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='null';
3034insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='bool';
3035insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='uint';
3036insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='int';
3037insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='double';
3038insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='stringany';
3039insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='stringint';
3040insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='stringdecimal';
3041insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='object';
3042insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='array';
3043insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3044insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3045insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3046insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3047insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3048insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3049insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3050insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3051insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3052insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3053insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3054insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3055insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3056insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3057insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3058insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3059insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3060insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3061insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='null';
3062insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='bool';
3063insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='uint';
3064insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='int';
3065insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='double';
3066insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='stringany';
3067insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='stringint';
3068insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='stringdecimal';
3069insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='object';
3070insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='array';
3071insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3072insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3073insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3074insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3075insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3076insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3077insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3078insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3079insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3080insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3081insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3082insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3083insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3084insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3085insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3086insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3087insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3088insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3089insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='null';
3090insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='bool';
3091insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='uint';
3092insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='int';
3093insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='double';
3094insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='stringany';
3095insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='stringint';
3096insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='stringdecimal';
3097insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='object';
3098insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='array';
3099insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3100insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3101insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3102insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3103insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3104insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3105insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3106insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3107insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3108insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3109insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3110insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3111insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3112insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3113insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3114insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3115insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3116insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3117insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='null';
3118insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='bool';
3119insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='uint';
3120insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='int';
3121insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='double';
3122insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='stringany';
3123insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='stringint';
3124insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='stringdecimal';
3125insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='object';
3126insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='array';
3127insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3128insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3129insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3130insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3131insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3132insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3133insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3134insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3135insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3136insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3137insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3138insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3139insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3140insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3141insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3142insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3143insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3144insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3145insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='null';
3146insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='bool';
3147insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='uint';
3148insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='int';
3149insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='double';
3150insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='stringany';
3151insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='stringint';
3152insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='stringdecimal';
3153insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='object';
3154insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='array';
3155insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3156insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3157insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3158insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3159insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3160insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3161insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3162insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3163insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3164insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3165insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3166insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3167insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3168insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3169insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3170insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3171insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3172insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3173insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='double';
3174ERROR 01000: Data truncated for column '_enu' at row 5
3175insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='stringany';
3176ERROR 01000: Data truncated for column '_enu' at row 6
3177insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='stringint';
3178ERROR 01000: Data truncated for column '_enu' at row 7
3179insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='stringdecimal';
3180ERROR 01000: Data truncated for column '_enu' at row 8
3181insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='object';
3182ERROR 01000: Data truncated for column '_enu' at row 9
3183insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='array';
3184ERROR 01000: Data truncated for column '_enu' at row 10
3185insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3186ERROR 01000: Data truncated for column '_enu' at row 11
3187insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3188ERROR 01000: Data truncated for column '_enu' at row 12
3189insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3190ERROR 01000: Data truncated for column '_enu' at row 13
3191insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3192ERROR 01000: Data truncated for column '_enu' at row 14
3193insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3194ERROR 01000: Data truncated for column '_enu' at row 15
3195insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3196ERROR 01000: Data truncated for column '_enu' at row 16
3197insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3198ERROR 01000: Data truncated for column '_enu' at row 17
3199insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3200ERROR 01000: Data truncated for column '_enu' at row 18
3201insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3202ERROR 01000: Data truncated for column '_enu' at row 19
3203insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3204ERROR 01000: Data truncated for column '_enu' at row 20
3205insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3206ERROR 01000: Data truncated for column '_enu' at row 21
3207insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3208ERROR 01000: Data truncated for column '_enu' at row 22
3209insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3210ERROR 01000: Data truncated for column '_enu' at row 23
3211insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3212insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3213insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3214ERROR 01000: Data truncated for column '_enu' at row 26
3215insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3216insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3217insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='null';
3218ERROR 01000: Data truncated for column '_set' at row 1
3219insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='bool';
3220ERROR 01000: Data truncated for column '_set' at row 2
3221insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='uint';
3222ERROR 01000: Data truncated for column '_set' at row 3
3223insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='int';
3224ERROR 01000: Data truncated for column '_set' at row 4
3225insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='double';
3226ERROR 01000: Data truncated for column '_set' at row 5
3227insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='stringany';
3228ERROR 01000: Data truncated for column '_set' at row 6
3229insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='stringint';
3230ERROR 01000: Data truncated for column '_set' at row 7
3231insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='stringdecimal';
3232ERROR 01000: Data truncated for column '_set' at row 8
3233insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='object';
3234ERROR 01000: Data truncated for column '_set' at row 9
3235insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='array';
3236ERROR 01000: Data truncated for column '_set' at row 10
3237insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3238ERROR 01000: Data truncated for column '_set' at row 11
3239insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3240ERROR 01000: Data truncated for column '_set' at row 12
3241insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3242ERROR 01000: Data truncated for column '_set' at row 13
3243insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3244ERROR 01000: Data truncated for column '_set' at row 14
3245insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3246ERROR 01000: Data truncated for column '_set' at row 15
3247insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3248ERROR 01000: Data truncated for column '_set' at row 16
3249insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3250ERROR 01000: Data truncated for column '_set' at row 17
3251insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3252ERROR 01000: Data truncated for column '_set' at row 18
3253insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3254ERROR 01000: Data truncated for column '_set' at row 19
3255insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3256ERROR 01000: Data truncated for column '_set' at row 20
3257insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3258ERROR 01000: Data truncated for column '_set' at row 21
3259insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3260ERROR 01000: Data truncated for column '_set' at row 22
3261insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3262ERROR 01000: Data truncated for column '_set' at row 23
3263insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3264insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3265insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3266ERROR 01000: Data truncated for column '_set' at row 26
3267insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3268insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3269insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='null';
3270ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3271insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='bool';
3272ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3273insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='uint';
3274ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3275insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='int';
3276ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3277insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='double';
3278ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3279insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='stringany';
3280ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3281insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='stringint';
3282ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3283insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='stringdecimal';
3284ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3285insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='object';
3286ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3287insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='array';
3288ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3289insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3290ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3291insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3292ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3293insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3294ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3295insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3296ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3297insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3298ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3299insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3300ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3301insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3302ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3303insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3304ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3305insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3306ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3307insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3308ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3309insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3310ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3311insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3312ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3313insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3314ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3315insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3316insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3317insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3318ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3319insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3320insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3321insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='null';
3322ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3323insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='bool';
3324ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3325insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='uint';
3326ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3327insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='int';
3328ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3329insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='double';
3330ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3331insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='stringany';
3332ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3333insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='stringint';
3334ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3335insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='stringdecimal';
3336ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3337insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='object';
3338ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3339insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='array';
3340ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3341insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3342ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3343insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3344ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3345insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3346ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3347insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3348ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3349insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3350ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3351insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3352ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3353insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3354ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3355insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3356ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3357insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3358ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3359insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3360ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3361insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3362ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3363insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3364ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3365insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3366ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3367insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3368insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3369insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3370ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3371insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3372insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3373insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='null';
3374ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3375insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='bool';
3376ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3377insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='uint';
3378ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3379insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='int';
3380ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3381insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='double';
3382ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3383insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='stringany';
3384ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3385insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='stringint';
3386ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3387insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='stringdecimal';
3388ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3389insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='object';
3390ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3391insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='array';
3392ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3393insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3394ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3395insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3396ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3397insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3398ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3399insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3400ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3401insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3402ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3403insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3404ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3405insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3406ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3407insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3408ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3409insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3410ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3411insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3412ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3413insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3414ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3415insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3416ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3417insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3418ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3419insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3420insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3421insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3422ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3423insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3424insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3425insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='null';
3426ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3427insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='bool';
3428ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3429insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='uint';
3430ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3431insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='int';
3432ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3433insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='double';
3434ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3435insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='stringany';
3436ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3437insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='stringint';
3438ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3439insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='stringdecimal';
3440ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3441insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='object';
3442ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3443insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='array';
3444ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3445insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3446ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3447insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3448ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3449insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3450ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3451insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3452ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3453insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3454ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3455insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3456ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3457insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3458ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3459insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3460ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3461insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3462ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3463insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3464ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3465insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3466ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3467insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3468ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3469insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3470ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3471insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3472insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3473insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3474ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3475insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3476insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3477insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='null';
3478ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3479insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='bool';
3480ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3481insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='uint';
3482ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3483insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='int';
3484ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3485insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='double';
3486ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3487insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='stringany';
3488ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3489insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='stringint';
3490ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3491insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='stringdecimal';
3492ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3493insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='object';
3494ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3495insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='array';
3496ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3497insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3498ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3499insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3500ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3501insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3502ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3503insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3504ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3505insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3506ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3507insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3508ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3509insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3510ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3511insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3512ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3513insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3514ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3515insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3516ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3517insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3518ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3519insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3520ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3521insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3522ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3523insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3524insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3525insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3526ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3527insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3528insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3529insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='null';
3530ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3531insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='bool';
3532ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3533insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='uint';
3534ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3535insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='int';
3536ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3537insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='double';
3538ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3539insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='stringany';
3540ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3541insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='stringint';
3542ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3543insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='stringdecimal';
3544ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3545insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='object';
3546ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3547insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='array';
3548ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3549insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3550ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3551insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3552ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3553insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3554ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3555insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3556ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3557insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3558ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3559insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3560ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3561insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3562ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3563insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3564ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3565insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3566ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3567insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3568ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3569insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3570ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3571insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3572ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3573insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3574ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3575insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3576insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3577insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3578ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3579insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3580insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3581insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='null';
3582ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3583insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='bool';
3584ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3585insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='uint';
3586ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3587insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='int';
3588ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3589insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='double';
3590ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3591insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='stringany';
3592ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3593insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='stringint';
3594ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3595insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='stringdecimal';
3596ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3597insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='object';
3598ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3599insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='array';
3600ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3601insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3602ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3603insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3604ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3605insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3606ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3607insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3608ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3609insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3610ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3611insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3612ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3613insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3614ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3615insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3616ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3617insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3618ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3619insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3620ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3621insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3622ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3623insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3624ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3625insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3626ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3627insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3628insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3629insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3630ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3631insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3632insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3633insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='null';
3634ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3635insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='bool';
3636ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3637insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='uint';
3638ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3639insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='int';
3640ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3641insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='double';
3642ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3643insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='stringany';
3644ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3645insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='stringint';
3646ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3647insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='stringdecimal';
3648ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3649insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='object';
3650ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3651insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='array';
3652ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3653insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
3654ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3655insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
3656ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3657insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
3658ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3659insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
3660ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3661insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
3662ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3663insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
3664ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3665insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
3666ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3667insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
3668ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3669insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
3670ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3671insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
3672ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3673insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
3674ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3675insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
3676ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3677insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
3678ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3679insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
3680insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
3681insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
3682ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
3683insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
3684insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
3685insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='bool') from t where c='bool';
3686# ----------------------------------------------------------------------
3687#  I N S E R T   F R O M   J S O N   S U B S E L E C T
3688# ----------------------------------------------------------------------
3689insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='null') from t where c='null';
3690insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='bool') from t where c='bool';
3691insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='uint') from t where c='uint';
3692insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='int') from t where c='int';
3693insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='double') from t where c='double';
3694insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='stringany') from t where c='stringany';
3695insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='stringint') from t where c='stringint';
3696insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3697insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='object') from t where c='object';
3698insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='array') from t where c='array';
3699insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
3700insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
3701insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
3702insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
3703ERROR 22001: Data too long for column '_bit' at row 29
3704insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
3705ERROR 22001: Data too long for column '_bit' at row 29
3706insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
3707ERROR 22001: Data too long for column '_bit' at row 29
3708insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
3709ERROR 22001: Data too long for column '_bit' at row 29
3710insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
3711ERROR 22001: Data too long for column '_bit' at row 29
3712insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
3713ERROR 22001: Data too long for column '_bit' at row 29
3714insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
3715ERROR 22001: Data too long for column '_bit' at row 29
3716insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
3717ERROR 22001: Data too long for column '_bit' at row 29
3718insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
3719ERROR 22001: Data too long for column '_bit' at row 29
3720insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
3721ERROR 22001: Data too long for column '_bit' at row 29
3722insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
3723insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
3724insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
3725ERROR 22001: Data too long for column '_bit' at row 29
3726insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
3727insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
3728insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='null') from t where c='null';
3729ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3730insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='bool') from t where c='bool';
3731insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='uint') from t where c='uint';
3732insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='int') from t where c='int';
3733insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='double') from t where c='double';
3734insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='stringany') from t where c='stringany';
3735ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3736insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='stringint') from t where c='stringint';
3737insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3738ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3739insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='object') from t where c='object';
3740ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3741insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='array') from t where c='array';
3742ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3743insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
3744insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
3745ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3746insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
3747ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3748insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
3749ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3750insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
3751ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3752insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
3753ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3754insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
3755ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3756insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
3757ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3758insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
3759ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3760insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
3761ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3762insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
3763ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3764insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
3765ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3766insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
3767ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3768insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
3769insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
3770insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
3771ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3772insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
3773insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
3774insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='null') from t where c='null';
3775ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3776insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='bool') from t where c='bool';
3777insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='uint') from t where c='uint';
3778insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='int') from t where c='int';
3779insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='double') from t where c='double';
3780insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='stringany') from t where c='stringany';
3781ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3782insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='stringint') from t where c='stringint';
3783insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3784ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3785insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='object') from t where c='object';
3786ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3787insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='array') from t where c='array';
3788ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3789insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
3790insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
3791ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3792insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
3793ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3794insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
3795ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3796insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
3797ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3798insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
3799ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3800insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
3801ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3802insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
3803ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3804insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
3805ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3806insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
3807ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3808insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
3809ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3810insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
3811ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3812insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
3813ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3814insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
3815insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
3816insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
3817ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3818insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
3819insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
3820insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='null') from t where c='null';
3821ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3822insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='bool') from t where c='bool';
3823insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='uint') from t where c='uint';
3824insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='int') from t where c='int';
3825insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='double') from t where c='double';
3826insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='stringany') from t where c='stringany';
3827ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3828insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='stringint') from t where c='stringint';
3829insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3830ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3831insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='object') from t where c='object';
3832ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3833insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='array') from t where c='array';
3834ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3835insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
3836insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
3837ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3838insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
3839ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3840insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
3841ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3842insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
3843ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3844insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
3845ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3846insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
3847ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3848insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
3849ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3850insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
3851ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3852insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
3853ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3854insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
3855ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3856insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
3857ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3858insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
3859ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3860insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
3861insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
3862insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
3863ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3864insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
3865insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
3866insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='null') from t where c='null';
3867ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3868insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='bool') from t where c='bool';
3869insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='uint') from t where c='uint';
3870insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='int') from t where c='int';
3871insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='double') from t where c='double';
3872insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='stringany') from t where c='stringany';
3873ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3874insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='stringint') from t where c='stringint';
3875insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3876ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3877insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='object') from t where c='object';
3878ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3879insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='array') from t where c='array';
3880ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3881insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
3882insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
3883ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3884insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
3885ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3886insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
3887ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3888insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
3889ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3890insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
3891ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3892insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
3893ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3894insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
3895ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3896insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
3897ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3898insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
3899ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3900insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
3901ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3902insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
3903ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3904insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
3905ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3906insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
3907insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
3908insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
3909ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3910insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
3911insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
3912insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='null') from t where c='null';
3913ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3914insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='bool') from t where c='bool';
3915insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='uint') from t where c='uint';
3916insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='int') from t where c='int';
3917insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='double') from t where c='double';
3918insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='stringany') from t where c='stringany';
3919ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3920insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='stringint') from t where c='stringint';
3921insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3922ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3923insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='object') from t where c='object';
3924ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3925insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='array') from t where c='array';
3926ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3927insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
3928insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
3929ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3930insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
3931ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3932insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
3933ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3934insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
3935ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3936insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
3937ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3938insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
3939ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3940insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
3941ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3942insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
3943ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3944insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
3945ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3946insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
3947ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3948insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
3949ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3950insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
3951ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3952insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
3953insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
3954insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
3955ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3956insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
3957insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
3958insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='null') from t where c='null';
3959ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3960insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='bool') from t where c='bool';
3961insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='uint') from t where c='uint';
3962insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='int') from t where c='int';
3963insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='double') from t where c='double';
3964insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='stringany') from t where c='stringany';
3965ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3966insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='stringint') from t where c='stringint';
3967insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3968ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3969insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='object') from t where c='object';
3970ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3971insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='array') from t where c='array';
3972ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3973insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
3974insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
3975ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3976insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
3977ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3978insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
3979ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3980insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
3981ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3982insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
3983ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3984insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
3985ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3986insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
3987ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3988insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
3989ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3990insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
3991ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3992insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
3993ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3994insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
3995ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3996insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
3997ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
3998insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
3999insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4000insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4001ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4002insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4003insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4004insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='null') from t where c='null';
4005ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4006insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='bool') from t where c='bool';
4007insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='uint') from t where c='uint';
4008insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='int') from t where c='int';
4009insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='double') from t where c='double';
4010insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='stringany') from t where c='stringany';
4011ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4012insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='stringint') from t where c='stringint';
4013insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4014ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4015insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='object') from t where c='object';
4016ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4017insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='array') from t where c='array';
4018ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4019insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4020insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4021ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4022insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4023ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4024insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4025ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4026insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4027ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4028insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4029ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4030insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4031ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4032insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4033ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4034insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4035ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4036insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4037ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4038insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4039ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4040insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4041ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4042insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4043ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4044insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4045insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4046insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4047ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4048insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4049insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4050insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='null') from t where c='null';
4051ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4052insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='bool') from t where c='bool';
4053insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='uint') from t where c='uint';
4054insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='int') from t where c='int';
4055insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='double') from t where c='double';
4056insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='stringany') from t where c='stringany';
4057ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4058insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='stringint') from t where c='stringint';
4059insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4060ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4061insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='object') from t where c='object';
4062ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4063insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='array') from t where c='array';
4064ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4065insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4066insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4067ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4068insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4069ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4070insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4071ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4072insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4073ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4074insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4075ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4076insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4077ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4078insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4079ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4080insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4081ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4082insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4083ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4084insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4085ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4086insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4087ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4088insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4089ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4090insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4091insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4092insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4093ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4094insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4095insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4096insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='null') from t where c='null';
4097ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4098insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='bool') from t where c='bool';
4099insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='uint') from t where c='uint';
4100insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='int') from t where c='int';
4101insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='double') from t where c='double';
4102insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='stringany') from t where c='stringany';
4103ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4104insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='stringint') from t where c='stringint';
4105insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4106ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4107insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='object') from t where c='object';
4108ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4109insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='array') from t where c='array';
4110ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4111insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4112insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4113ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4114insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4115ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4116insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4117ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4118insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4119ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4120insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4121ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4122insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4123ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4124insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4125ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4126insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4127ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4128insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4129ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4130insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4131ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4132insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4133ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4134insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4135ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4136insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4137insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4138insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4139ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4140insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4141insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4142insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='null') from t where c='null';
4143ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4144insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='bool') from t where c='bool';
4145insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='uint') from t where c='uint';
4146insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='int') from t where c='int';
4147insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='double') from t where c='double';
4148insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='stringany') from t where c='stringany';
4149ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4150insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='stringint') from t where c='stringint';
4151insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4152ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4153insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='object') from t where c='object';
4154ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4155insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='array') from t where c='array';
4156ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4157insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4158insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4159ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4160insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4161ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4162insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4163ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4164insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4165ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4166insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4167ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4168insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4169ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4170insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4171ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4172insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4173ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4174insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4175ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4176insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4177ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4178insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4179ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4180insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4181ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4182insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4183insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4184insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4185ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29
4186insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4187insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4188insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='null') from t where c='null';
4189ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29
4190insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='bool') from t where c='bool';
4191insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='uint') from t where c='uint';
4192insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='int') from t where c='int';
4193insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='double') from t where c='double';
4194insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='stringany') from t where c='stringany';
4195ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1
4196insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='stringint') from t where c='stringint';
4197insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4198insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='object') from t where c='object';
4199ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29
4200insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='array') from t where c='array';
4201ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29
4202insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4203insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4204ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1
4205insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4206ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1
4207insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4208ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29
4209insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4210ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29
4211insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4212ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29
4213insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4214ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29
4215insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4216ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29
4217insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4218ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29
4219insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4220ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29
4221insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4222ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29
4223insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4224ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29
4225insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4226ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29
4227insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4228insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4229insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4230ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29
4231insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4232insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4233insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='null') from t where c='null';
4234ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4235insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='bool') from t where c='bool';
4236insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='uint') from t where c='uint';
4237insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='int') from t where c='int';
4238insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='double') from t where c='double';
4239insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='stringany') from t where c='stringany';
4240ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4241insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='stringint') from t where c='stringint';
4242insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4243insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='object') from t where c='object';
4244ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4245insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='array') from t where c='array';
4246ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4247insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4248insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4249ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4250insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4251ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4252insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4253ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4254insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4255ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4256insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4257ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4258insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4259ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4260insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4261ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4262insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4263ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4264insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4265ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4266insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4267ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4268insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4269ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4270insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4271ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4272insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4273insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4274insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4275ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4276insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4277insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4278insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='null') from t where c='null';
4279ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4280insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='bool') from t where c='bool';
4281insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='uint') from t where c='uint';
4282insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='int') from t where c='int';
4283insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='double') from t where c='double';
4284insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='stringany') from t where c='stringany';
4285ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4286insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='stringint') from t where c='stringint';
4287insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4288insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='object') from t where c='object';
4289ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4290insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='array') from t where c='array';
4291ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4292insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4293insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4294ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4295insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4296ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4297insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4298ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4299insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4300ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4301insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4302ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4303insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4304ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4305insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4306ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4307insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4308ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4309insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4310ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4311insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4312ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4313insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4314ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4315insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4316ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4317insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4318insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4319insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4320ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29
4321insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4322insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4323insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='null') from t where c='null';
4324ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4325insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='bool') from t where c='bool';
4326ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4327insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='uint') from t where c='uint';
4328ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4329insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='int') from t where c='int';
4330ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4331insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='double') from t where c='double';
4332ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4333insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='stringany') from t where c='stringany';
4334ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4335insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='stringint') from t where c='stringint';
4336ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4337insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4338ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4339insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='object') from t where c='object';
4340ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4341insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='array') from t where c='array';
4342ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4343insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4344ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4345insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4346ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4347insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4348ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4349insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4350insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4351Warnings:
4352Note	1292	Incorrect date value: '23:24:25' for column '_dat' at row 29
4353insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4354Warnings:
4355Note	1292	Incorrect date value: '2015-01-15 23:24:25' for column '_dat' at row 29
4356insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4357ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4358insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4359ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4360insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4361ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4362insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4363ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4364insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4365ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4366insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4367ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4368insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4369ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4370insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4371insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4372insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4373ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4374insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4375insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4376insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='null') from t where c='null';
4377ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4378insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='bool') from t where c='bool';
4379ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4380insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='uint') from t where c='uint';
4381ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4382insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='int') from t where c='int';
4383ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4384insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='double') from t where c='double';
4385ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4386insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='stringany') from t where c='stringany';
4387ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4388insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='stringint') from t where c='stringint';
4389ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4390insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4391ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4392insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='object') from t where c='object';
4393ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4394insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='array') from t where c='array';
4395ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4396insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4397ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4398insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4399ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4400insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4401ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4402insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4403insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4404insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4405insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4406ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4407insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4408ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4409insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4410ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4411insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4412ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4413insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4414ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4415insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4416ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4417insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4418ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4419insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4420insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4421insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4422ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4423insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4424insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4425insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='null') from t where c='null';
4426ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4427insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='bool') from t where c='bool';
4428ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4429insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='uint') from t where c='uint';
4430ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4431insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='int') from t where c='int';
4432ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4433insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='double') from t where c='double';
4434ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4435insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='stringany') from t where c='stringany';
4436ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4437insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='stringint') from t where c='stringint';
4438ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4439insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4440ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4441insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='object') from t where c='object';
4442ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4443insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='array') from t where c='array';
4444ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4445insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4446ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4447insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4448ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4449insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4450ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4451insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4452insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4453insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4454insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4455ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4456insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4457ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4458insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4459ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4460insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4461ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4462insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4463ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4464insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4465ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4466insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4467ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4468insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4469insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4470insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4471ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4472insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4473insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4474insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='null') from t where c='null';
4475ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4476insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='bool') from t where c='bool';
4477ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4478insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='uint') from t where c='uint';
4479ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4480insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='int') from t where c='int';
4481ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4482insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='double') from t where c='double';
4483ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4484insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='stringany') from t where c='stringany';
4485ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4486insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='stringint') from t where c='stringint';
4487ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4488insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4489ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4490insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='object') from t where c='object';
4491ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4492insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='array') from t where c='array';
4493ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4494insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4495ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4496insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4497ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4498insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4499ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4500insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4501insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4502insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4503insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4504ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4505insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4506ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4507insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4508ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4509insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4510ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4511insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4512ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4513insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4514ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4515insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4516ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4517insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4518insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4519insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4520ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
4521insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4522insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4523insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='null') from t where c='null';
4524ERROR HY000: Incorrect integer value: 'null' for column '_yea' at row 29
4525insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='bool') from t where c='bool';
4526ERROR HY000: Incorrect integer value: 'true' for column '_yea' at row 29
4527insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='uint') from t where c='uint';
4528insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='int') from t where c='int';
4529insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='double') from t where c='double';
4530insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='stringany') from t where c='stringany';
4531ERROR HY000: Incorrect integer value: '"a"' for column '_yea' at row 29
4532insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='stringint') from t where c='stringint';
4533ERROR HY000: Incorrect integer value: '"1"' for column '_yea' at row 29
4534insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4535ERROR HY000: Incorrect integer value: '"3.14"' for column '_yea' at row 29
4536insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='object') from t where c='object';
4537ERROR HY000: Incorrect integer value: '{"a": 3}' for column '_yea' at row 29
4538insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='array') from t where c='array';
4539ERROR HY000: Incorrect integer value: '[1, 2]' for column '_yea' at row 29
4540insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4541insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4542ERROR HY000: Incorrect integer value: '"b,c"' for column '_yea' at row 29
4543insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4544ERROR HY000: Incorrect integer value: '"b"' for column '_yea' at row 29
4545insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4546ERROR HY000: Incorrect integer value: '"2015-01-15"' for column '_yea' at row 29
4547insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4548ERROR HY000: Incorrect integer value: '"23:24:25.000000"' for column '_yea' at row 29
4549insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4550ERROR HY000: Incorrect integer value: '"2015-01-15 23:24:25.000000"' for column '_yea' at row 29
4551insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4552ERROR HY000: Incorrect integer value: '{"type": "Point", "coordinates": [1, 1]}' for column '_yea' at row 29
4553insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4554ERROR HY000: Incorrect integer value: '"base64:type16:yv4="' for column '_yea' at row 29
4555insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4556ERROR HY000: Incorrect integer value: '"base64:type13:MTk5Mg=="' for column '_yea' at row 29
4557insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4558ERROR HY000: Incorrect integer value: '"base64:type252:yv66vg=="' for column '_yea' at row 29
4559insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4560ERROR HY000: Incorrect integer value: '"base64:type251:yv66vg=="' for column '_yea' at row 29
4561insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4562ERROR HY000: Incorrect integer value: '"base64:type250:yv66vg=="' for column '_yea' at row 29
4563insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4564ERROR HY000: Incorrect integer value: '"base64:type249:yv66vg=="' for column '_yea' at row 29
4565insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4566insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4567insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4568ERROR HY000: Incorrect integer value: '"base64:type15:Zm9v"' for column '_yea' at row 29
4569insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4570insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4571insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='null') from t where c='null';
4572insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='bool') from t where c='bool';
4573insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='uint') from t where c='uint';
4574insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='int') from t where c='int';
4575insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='double') from t where c='double';
4576insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='stringany') from t where c='stringany';
4577insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='stringint') from t where c='stringint';
4578insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4579insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='object') from t where c='object';
4580insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='array') from t where c='array';
4581insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4582insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4583insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4584insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4585insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4586insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4587insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4588insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4589insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4590insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4591insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4592insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4593insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4594insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4595insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4596insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4597insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4598insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4599insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='null') from t where c='null';
4600insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='bool') from t where c='bool';
4601insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='uint') from t where c='uint';
4602insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='int') from t where c='int';
4603insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='double') from t where c='double';
4604insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='stringany') from t where c='stringany';
4605insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='stringint') from t where c='stringint';
4606insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4607insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='object') from t where c='object';
4608insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='array') from t where c='array';
4609insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4610insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4611insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4612insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4613insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4614insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4615insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4616insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4617insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4618insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4619insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4620insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4621insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4622insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4623insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4624insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4625insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4626insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4627insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='null') from t where c='null';
4628insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='bool') from t where c='bool';
4629insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='uint') from t where c='uint';
4630insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='int') from t where c='int';
4631insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='double') from t where c='double';
4632insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='stringany') from t where c='stringany';
4633insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='stringint') from t where c='stringint';
4634insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4635insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='object') from t where c='object';
4636insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='array') from t where c='array';
4637insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4638insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4639insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4640insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4641insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4642insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4643insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4644insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4645insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4646insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4647insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4648insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4649insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4650insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4651insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4652insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4653insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4654insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4655insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='null') from t where c='null';
4656insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='bool') from t where c='bool';
4657insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='uint') from t where c='uint';
4658insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='int') from t where c='int';
4659insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='double') from t where c='double';
4660insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='stringany') from t where c='stringany';
4661insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='stringint') from t where c='stringint';
4662insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4663insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='object') from t where c='object';
4664insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='array') from t where c='array';
4665insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4666insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4667insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4668insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4669insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4670insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4671insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4672insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4673insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4674insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4675insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4676insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4677insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4678insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4679insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4680insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4681insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4682insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4683insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='null') from t where c='null';
4684insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='bool') from t where c='bool';
4685insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='uint') from t where c='uint';
4686insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='int') from t where c='int';
4687insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='double') from t where c='double';
4688insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='stringany') from t where c='stringany';
4689insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='stringint') from t where c='stringint';
4690insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4691insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='object') from t where c='object';
4692insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='array') from t where c='array';
4693insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4694insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4695insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4696insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4697insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4698insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4699insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4700insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4701insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4702insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4703insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4704insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4705insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4706insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4707insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4708insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4709insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4710insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4711insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='null') from t where c='null';
4712insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='bool') from t where c='bool';
4713insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='uint') from t where c='uint';
4714insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='int') from t where c='int';
4715insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='double') from t where c='double';
4716insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='stringany') from t where c='stringany';
4717insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='stringint') from t where c='stringint';
4718insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4719insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='object') from t where c='object';
4720insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='array') from t where c='array';
4721insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4722insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4723insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4724insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4725insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4726insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4727insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4728insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4729insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4730insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4731insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4732insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4733insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4734insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4735insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4736insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4737insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4738insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4739insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='null') from t where c='null';
4740insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='bool') from t where c='bool';
4741insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='uint') from t where c='uint';
4742insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='int') from t where c='int';
4743insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='double') from t where c='double';
4744insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='stringany') from t where c='stringany';
4745insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='stringint') from t where c='stringint';
4746insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4747insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='object') from t where c='object';
4748insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='array') from t where c='array';
4749insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4750insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4751insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4752insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4753insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4754insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4755insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4756insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4757insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4758insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4759insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4760insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4761insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4762insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4763insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4764insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4765insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4766insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4767insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='null') from t where c='null';
4768insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='bool') from t where c='bool';
4769insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='uint') from t where c='uint';
4770insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='int') from t where c='int';
4771insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='double') from t where c='double';
4772insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='stringany') from t where c='stringany';
4773insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='stringint') from t where c='stringint';
4774insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4775insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='object') from t where c='object';
4776insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='array') from t where c='array';
4777insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4778insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4779insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4780insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4781insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4782insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4783insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4784insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4785insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4786insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4787insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4788insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4789insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4790insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4791insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4792insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4793insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4794insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4795insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='null') from t where c='null';
4796insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='bool') from t where c='bool';
4797insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='uint') from t where c='uint';
4798insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='int') from t where c='int';
4799insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='double') from t where c='double';
4800insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='stringany') from t where c='stringany';
4801insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='stringint') from t where c='stringint';
4802insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4803insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='object') from t where c='object';
4804insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='array') from t where c='array';
4805insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4806insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4807insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4808insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4809insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4810insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4811insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4812insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4813insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4814insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4815insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4816insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4817insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4818insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4819insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4820insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4821insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4822insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4823insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='null') from t where c='null';
4824insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='bool') from t where c='bool';
4825insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='uint') from t where c='uint';
4826insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='int') from t where c='int';
4827insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='double') from t where c='double';
4828insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='stringany') from t where c='stringany';
4829insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='stringint') from t where c='stringint';
4830insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4831insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='object') from t where c='object';
4832insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='array') from t where c='array';
4833insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4834insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4835insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4836insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4837insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4838insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4839insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4840insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4841insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4842insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4843insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4844insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4845insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4846insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4847insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4848insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4849insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4850insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4851insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='null') from t where c='null';
4852insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='bool') from t where c='bool';
4853insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='uint') from t where c='uint';
4854insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='int') from t where c='int';
4855insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='double') from t where c='double';
4856insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='stringany') from t where c='stringany';
4857insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='stringint') from t where c='stringint';
4858insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4859insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='object') from t where c='object';
4860insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='array') from t where c='array';
4861insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4862insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4863insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4864insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4865insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4866insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4867insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4868insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4869insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4870insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4871insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4872insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4873insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4874insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4875insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4876insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4877insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4878insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4879insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='null') from t where c='null';
4880insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='bool') from t where c='bool';
4881insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='uint') from t where c='uint';
4882insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='int') from t where c='int';
4883insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='double') from t where c='double';
4884insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='stringany') from t where c='stringany';
4885insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='stringint') from t where c='stringint';
4886insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4887insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='object') from t where c='object';
4888insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='array') from t where c='array';
4889insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4890insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4891insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4892insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4893insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4894insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4895insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4896insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4897insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4898insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4899insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4900insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4901insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4902insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4903insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4904insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4905insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4906insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4907insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='null') from t where c='null';
4908insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='bool') from t where c='bool';
4909insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='uint') from t where c='uint';
4910insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='int') from t where c='int';
4911insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='double') from t where c='double';
4912insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='stringany') from t where c='stringany';
4913insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='stringint') from t where c='stringint';
4914insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4915insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='object') from t where c='object';
4916insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='array') from t where c='array';
4917insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4918insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4919insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4920insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4921insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4922insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4923insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4924insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4925insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4926insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4927insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4928insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4929insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4930insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4931insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4932insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4933insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4934insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4935insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='double') from t where c='double';
4936ERROR 01000: Data truncated for column '_enu' at row 29
4937insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='stringany') from t where c='stringany';
4938ERROR 01000: Data truncated for column '_enu' at row 29
4939insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='stringint') from t where c='stringint';
4940ERROR 01000: Data truncated for column '_enu' at row 29
4941insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4942ERROR 01000: Data truncated for column '_enu' at row 29
4943insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='object') from t where c='object';
4944ERROR 01000: Data truncated for column '_enu' at row 29
4945insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='array') from t where c='array';
4946ERROR 01000: Data truncated for column '_enu' at row 29
4947insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
4948ERROR 01000: Data truncated for column '_enu' at row 29
4949insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
4950ERROR 01000: Data truncated for column '_enu' at row 29
4951insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
4952ERROR 01000: Data truncated for column '_enu' at row 29
4953insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
4954ERROR 01000: Data truncated for column '_enu' at row 29
4955insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
4956ERROR 01000: Data truncated for column '_enu' at row 29
4957insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
4958ERROR 01000: Data truncated for column '_enu' at row 29
4959insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
4960ERROR 01000: Data truncated for column '_enu' at row 29
4961insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
4962ERROR 01000: Data truncated for column '_enu' at row 29
4963insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
4964ERROR 01000: Data truncated for column '_enu' at row 29
4965insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
4966ERROR 01000: Data truncated for column '_enu' at row 29
4967insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
4968ERROR 01000: Data truncated for column '_enu' at row 29
4969insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
4970ERROR 01000: Data truncated for column '_enu' at row 29
4971insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
4972ERROR 01000: Data truncated for column '_enu' at row 29
4973insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
4974insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
4975insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
4976ERROR 01000: Data truncated for column '_enu' at row 29
4977insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
4978insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
4979insert into at(c,_set) select concat('_set: ',c), (select j from t where c='null') from t where c='null';
4980ERROR 01000: Data truncated for column '_set' at row 29
4981insert into at(c,_set) select concat('_set: ',c), (select j from t where c='bool') from t where c='bool';
4982ERROR 01000: Data truncated for column '_set' at row 29
4983insert into at(c,_set) select concat('_set: ',c), (select j from t where c='uint') from t where c='uint';
4984ERROR 01000: Data truncated for column '_set' at row 29
4985insert into at(c,_set) select concat('_set: ',c), (select j from t where c='int') from t where c='int';
4986ERROR 01000: Data truncated for column '_set' at row 29
4987insert into at(c,_set) select concat('_set: ',c), (select j from t where c='double') from t where c='double';
4988ERROR 01000: Data truncated for column '_set' at row 29
4989insert into at(c,_set) select concat('_set: ',c), (select j from t where c='stringany') from t where c='stringany';
4990ERROR 01000: Data truncated for column '_set' at row 29
4991insert into at(c,_set) select concat('_set: ',c), (select j from t where c='stringint') from t where c='stringint';
4992ERROR 01000: Data truncated for column '_set' at row 29
4993insert into at(c,_set) select concat('_set: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4994ERROR 01000: Data truncated for column '_set' at row 29
4995insert into at(c,_set) select concat('_set: ',c), (select j from t where c='object') from t where c='object';
4996ERROR 01000: Data truncated for column '_set' at row 29
4997insert into at(c,_set) select concat('_set: ',c), (select j from t where c='array') from t where c='array';
4998ERROR 01000: Data truncated for column '_set' at row 29
4999insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
5000ERROR 01000: Data truncated for column '_set' at row 29
5001insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
5002ERROR 01000: Data truncated for column '_set' at row 29
5003insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
5004ERROR 01000: Data truncated for column '_set' at row 29
5005insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
5006ERROR 01000: Data truncated for column '_set' at row 29
5007insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
5008ERROR 01000: Data truncated for column '_set' at row 29
5009insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
5010ERROR 01000: Data truncated for column '_set' at row 29
5011insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
5012ERROR 01000: Data truncated for column '_set' at row 29
5013insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
5014ERROR 01000: Data truncated for column '_set' at row 29
5015insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
5016ERROR 01000: Data truncated for column '_set' at row 29
5017insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
5018ERROR 01000: Data truncated for column '_set' at row 29
5019insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
5020ERROR 01000: Data truncated for column '_set' at row 29
5021insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
5022ERROR 01000: Data truncated for column '_set' at row 29
5023insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
5024ERROR 01000: Data truncated for column '_set' at row 29
5025insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
5026insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
5027insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
5028ERROR 01000: Data truncated for column '_set' at row 29
5029insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
5030insert into at(c,_set) select concat('_set: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
5031insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='null') from t where c='null';
5032ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5033insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='bool') from t where c='bool';
5034ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5035insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='uint') from t where c='uint';
5036ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5037insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='int') from t where c='int';
5038ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5039insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='double') from t where c='double';
5040ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5041insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='stringany') from t where c='stringany';
5042ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5043insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='stringint') from t where c='stringint';
5044ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5045insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
5046ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5047insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='object') from t where c='object';
5048ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5049insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='array') from t where c='array';
5050ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5051insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
5052ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5053insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
5054ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5055insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
5056ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5057insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
5058ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5059insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
5060ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5061insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
5062ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5063insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
5064ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5065insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
5066ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5067insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
5068ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5069insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
5070ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5071insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
5072ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5073insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
5074ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5075insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
5076ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5077insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
5078insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
5079insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
5080ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5081insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
5082insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
5083insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='null') from t where c='null';
5084ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5085insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='bool') from t where c='bool';
5086ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5087insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='uint') from t where c='uint';
5088ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5089insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='int') from t where c='int';
5090ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5091insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='double') from t where c='double';
5092ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5093insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='stringany') from t where c='stringany';
5094ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5095insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='stringint') from t where c='stringint';
5096ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5097insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
5098ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5099insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='object') from t where c='object';
5100ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5101insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='array') from t where c='array';
5102ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5103insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
5104ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5105insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
5106ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5107insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
5108ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5109insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
5110ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5111insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
5112ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5113insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
5114ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5115insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
5116ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5117insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
5118ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5119insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
5120ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5121insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
5122ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5123insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
5124ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5125insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
5126ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5127insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
5128ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5129insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
5130insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
5131insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
5132ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5133insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
5134insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
5135insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='null') from t where c='null';
5136ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5137insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='bool') from t where c='bool';
5138ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5139insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='uint') from t where c='uint';
5140ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5141insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='int') from t where c='int';
5142ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5143insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='double') from t where c='double';
5144ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5145insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='stringany') from t where c='stringany';
5146ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5147insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='stringint') from t where c='stringint';
5148ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5149insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
5150ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5151insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='object') from t where c='object';
5152ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5153insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='array') from t where c='array';
5154ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5155insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
5156ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5157insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
5158ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5159insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
5160ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5161insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
5162ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5163insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
5164ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5165insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
5166ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5167insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
5168ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5169insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
5170ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5171insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
5172ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5173insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
5174ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5175insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
5176ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5177insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
5178ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5179insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
5180ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5181insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
5182insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
5183insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
5184ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5185insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
5186insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
5187insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='null') from t where c='null';
5188ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5189insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='bool') from t where c='bool';
5190ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5191insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='uint') from t where c='uint';
5192ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5193insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='int') from t where c='int';
5194ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5195insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='double') from t where c='double';
5196ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5197insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='stringany') from t where c='stringany';
5198ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5199insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='stringint') from t where c='stringint';
5200ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5201insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
5202ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5203insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='object') from t where c='object';
5204ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5205insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='array') from t where c='array';
5206ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5207insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
5208ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5209insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
5210ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5211insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
5212ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5213insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
5214ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5215insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
5216ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5217insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
5218ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5219insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
5220ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5221insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
5222ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5223insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
5224ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5225insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
5226ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5227insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
5228ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5229insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
5230ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5231insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
5232ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5233insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
5234insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
5235insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
5236ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5237insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
5238insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
5239insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='null') from t where c='null';
5240ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5241insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='bool') from t where c='bool';
5242ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5243insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='uint') from t where c='uint';
5244ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5245insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='int') from t where c='int';
5246ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5247insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='double') from t where c='double';
5248ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5249insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='stringany') from t where c='stringany';
5250ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5251insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='stringint') from t where c='stringint';
5252ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5253insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
5254ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5255insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='object') from t where c='object';
5256ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5257insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='array') from t where c='array';
5258ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5259insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
5260ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5261insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
5262ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5263insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
5264ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5265insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
5266ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5267insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
5268ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5269insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
5270ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5271insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
5272ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5273insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
5274ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5275insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
5276ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5277insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
5278ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5279insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
5280ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5281insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
5282ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5283insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
5284ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5285insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
5286insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
5287insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
5288ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5289insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
5290insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
5291insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='null') from t where c='null';
5292ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5293insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='bool') from t where c='bool';
5294ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5295insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='uint') from t where c='uint';
5296ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5297insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='int') from t where c='int';
5298ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5299insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='double') from t where c='double';
5300ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5301insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='stringany') from t where c='stringany';
5302ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5303insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='stringint') from t where c='stringint';
5304ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5305insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
5306ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5307insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='object') from t where c='object';
5308ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5309insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='array') from t where c='array';
5310ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5311insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
5312ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5313insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
5314ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5315insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
5316ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5317insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
5318ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5319insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
5320ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5321insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
5322ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5323insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
5324ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5325insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
5326ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5327insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
5328ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5329insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
5330ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5331insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
5332ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5333insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
5334ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5335insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
5336ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5337insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
5338insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
5339insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
5340ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5341insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
5342insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
5343insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='null') from t where c='null';
5344ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5345insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='bool') from t where c='bool';
5346ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5347insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='uint') from t where c='uint';
5348ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5349insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='int') from t where c='int';
5350ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5351insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='double') from t where c='double';
5352ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5353insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='stringany') from t where c='stringany';
5354ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5355insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='stringint') from t where c='stringint';
5356ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5357insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
5358ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5359insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='object') from t where c='object';
5360ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5361insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='array') from t where c='array';
5362ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5363insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
5364ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5365insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
5366ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5367insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
5368ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5369insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
5370ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5371insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
5372ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5373insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
5374ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5375insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
5376ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5377insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
5378ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5379insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
5380ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5381insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
5382ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5383insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
5384ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5385insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
5386ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5387insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
5388ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5389insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
5390insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
5391insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
5392ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5393insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
5394insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
5395insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='null') from t where c='null';
5396ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5397insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='bool') from t where c='bool';
5398ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5399insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='uint') from t where c='uint';
5400ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5401insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='int') from t where c='int';
5402ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5403insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='double') from t where c='double';
5404ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5405insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='stringany') from t where c='stringany';
5406ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5407insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='stringint') from t where c='stringint';
5408ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5409insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
5410ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5411insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='object') from t where c='object';
5412ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5413insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='array') from t where c='array';
5414ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5415insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_decimal') from t where c='opaque_mysql_type_decimal';
5416ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5417insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_set') from t where c='opaque_mysql_type_set';
5418ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5419insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_enum') from t where c='opaque_mysql_type_enum';
5420ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5421insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_date') from t where c='opaque_mysql_type_date';
5422ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5423insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_time') from t where c='opaque_mysql_type_time';
5424ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5425insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_datetime') from t where c='opaque_mysql_type_datetime';
5426ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5427insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_geom') from t where c='opaque_mysql_type_geom';
5428ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5429insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_bit') from t where c='opaque_mysql_type_bit';
5430ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5431insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_year') from t where c='opaque_mysql_type_year';
5432ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5433insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_blob') from t where c='opaque_mysql_type_blob';
5434ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5435insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_longblob') from t where c='opaque_mysql_type_longblob';
5436ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5437insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_mediumblob') from t where c='opaque_mysql_type_mediumblob';
5438ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5439insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_tinyblob') from t where c='opaque_mysql_type_tinyblob';
5440ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5441insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_varbinary') from t where c='opaque_mysql_type_varbinary';
5442insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_binary') from t where c='opaque_mysql_type_binary';
5443insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_varchar') from t where c='opaque_mysql_type_varchar';
5444ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
5445insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_string') from t where c='opaque_mysql_type_string';
5446insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='opaque_mysql_type_var_string') from t where c='opaque_mysql_type_var_string';
5447# ----------------------------------------------------------------------
5448# Validate the data actually inserted
5449# ----------------------------------------------------------------------
5450select * from at;
5451c	_bit	_tin	_boo	_sms	_smu	_mes	_meu	_ins	_inu	_bis	_biu	_dec	_flo	_dou	_dat	_dtt	_smp	_tim	_yea	_jsn	_chr	_vch	_bin	_vbn	_tbl	_ttx	_blb	_txt	_mbb	_mtx	_lbb	_ltx	_enu	_set	_geo	_pnt	_lst	_pol	_mpt	_mls	_mpy	_gco
5452_bit: null		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5453_bit: bool		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5454_bit: uint		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5455_bit: int		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5456_bit: double		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5457_bit: stringany		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5458_bit: stringint		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5459_bit: stringdecimal		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5460_bit: object	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5461_bit: array		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5462_bit: opaque_mysql_type_decimal		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5463_bit: opaque_mysql_type_set		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5464_bit: opaque_mysql_type_enum		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5465_bit: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5466_bit: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5467_bit: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5468_bit: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5469_tin: bool	N	1	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5470_tin: uint	N	12	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5471_tin: int	N	12	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5472_tin: double	N	3	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5473_tin: stringint	N	1	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5474_tin: opaque_mysql_type_decimal	N	3	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5475_tin: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5476_tin: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5477_tin: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5478_tin: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5479_boo: bool	N	N	1	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5480_boo: uint	N	N	12	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5481_boo: int	N	N	12	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5482_boo: double	N	N	3	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5483_boo: stringint	N	N	1	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5484_boo: opaque_mysql_type_decimal	N	N	3	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5485_boo: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5486_boo: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5487_boo: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5488_boo: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5489_sms: bool	N	N	N	1	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5490_sms: uint	N	N	N	12	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5491_sms: int	N	N	N	12	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5492_sms: double	N	N	N	3	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5493_sms: stringint	N	N	N	1	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5494_sms: opaque_mysql_type_decimal	N	N	N	3	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5495_sms: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5496_sms: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5497_sms: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5498_sms: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5499_smu: bool	N	N	N	N	1	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5500_smu: uint	N	N	N	N	12	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5501_smu: int	N	N	N	N	12	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5502_smu: double	N	N	N	N	3	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5503_smu: stringint	N	N	N	N	1	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5504_smu: opaque_mysql_type_decimal	N	N	N	N	3	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5505_smu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5506_smu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5507_smu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5508_smu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5509_mes: bool	N	N	N	N	N	1	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5510_mes: uint	N	N	N	N	N	12	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5511_mes: int	N	N	N	N	N	12	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5512_mes: double	N	N	N	N	N	3	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5513_mes: stringint	N	N	N	N	N	1	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5514_mes: opaque_mysql_type_decimal	N	N	N	N	N	3	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5515_mes: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5516_mes: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5517_mes: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5518_mes: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5519_meu: bool	N	N	N	N	N	N	1	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5520_meu: uint	N	N	N	N	N	N	12	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5521_meu: int	N	N	N	N	N	N	12	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5522_meu: double	N	N	N	N	N	N	3	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5523_meu: stringint	N	N	N	N	N	N	1	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5524_meu: opaque_mysql_type_decimal	N	N	N	N	N	N	3	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5525_meu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5526_meu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5527_meu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5528_meu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5529_ins: bool	N	N	N	N	N	N	N	1	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5530_ins: uint	N	N	N	N	N	N	N	12	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5531_ins: int	N	N	N	N	N	N	N	12	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5532_ins: double	N	N	N	N	N	N	N	3	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5533_ins: stringint	N	N	N	N	N	N	N	1	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5534_ins: opaque_mysql_type_decimal	N	N	N	N	N	N	N	3	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5535_ins: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5536_ins: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5537_ins: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5538_ins: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5539_inu: bool	N	N	N	N	N	N	N	N	1	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5540_inu: uint	N	N	N	N	N	N	N	N	12	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5541_inu: int	N	N	N	N	N	N	N	N	12	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5542_inu: double	N	N	N	N	N	N	N	N	3	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5543_inu: stringint	N	N	N	N	N	N	N	N	1	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5544_inu: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	3	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5545_inu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5546_inu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5547_inu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5548_inu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5549_bis: bool	N	N	N	N	N	N	N	N	N	1	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5550_bis: uint	N	N	N	N	N	N	N	N	N	12	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5551_bis: int	N	N	N	N	N	N	N	N	N	12	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5552_bis: double	N	N	N	N	N	N	N	N	N	3	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5553_bis: stringint	N	N	N	N	N	N	N	N	N	1	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5554_bis: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	3	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5555_bis: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5556_bis: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5557_bis: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5558_bis: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5559_biu: bool	N	N	N	N	N	N	N	N	N	N	1	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5560_biu: uint	N	N	N	N	N	N	N	N	N	N	12	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5561_biu: int	N	N	N	N	N	N	N	N	N	N	12	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5562_biu: double	N	N	N	N	N	N	N	N	N	N	3	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5563_biu: stringint	N	N	N	N	N	N	N	N	N	N	1	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5564_biu: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	3	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5565_biu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5566_biu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5567_biu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5568_biu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5569_dec: bool	N	N	N	N	N	N	N	N	N	N	N	1.00	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5570_dec: uint	N	N	N	N	N	N	N	N	N	N	N	12.00	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5571_dec: int	N	N	N	N	N	N	N	N	N	N	N	12.00	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5572_dec: double	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5573_dec: stringint	N	N	N	N	N	N	N	N	N	N	N	1.00	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5574_dec: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5575_dec: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5576_dec: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5577_dec: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5578_dec: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5579_dec: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5580_flo: bool	N	N	N	N	N	N	N	N	N	N	N	N	1	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5581_flo: uint	N	N	N	N	N	N	N	N	N	N	N	N	12	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5582_flo: int	N	N	N	N	N	N	N	N	N	N	N	N	12	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5583_flo: double	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5584_flo: stringint	N	N	N	N	N	N	N	N	N	N	N	N	1	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5585_flo: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5586_flo: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5587_flo: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5588_flo: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5589_flo: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5590_flo: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5591_dou: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	1	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5592_dou: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	12	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5593_dou: int	N	N	N	N	N	N	N	N	N	N	N	N	N	12	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5594_dou: double	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5595_dou: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	1	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5596_dou: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5597_dou: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5598_dou: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5599_dou: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5600_dou: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5601_dou: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5602_dat: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--EXPECTED_DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5603_dat: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5604_dat: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--EXPECTED_DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5605_dat: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5606_dat: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5607_dat: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5608_dat: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5609_dtt: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5610_dtt: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5611_dtt: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5612_dtt: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	N	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5613_dtt: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	N	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5614_dtt: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	N	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5615_dat: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5616_smp: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5617_smp: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5618_smp: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5619_smp: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5620_smp: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5621_smp: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5622_smp: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5623_tim: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5624_tim: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--EXPECTED_TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5625_tim: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--EXPECTED_TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5626_tim: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5627_tim: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5628_tim: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5629_tim: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5630_yea: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	2012	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5631_yea: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	2012	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5632_yea: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	2003	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5633_yea: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	2003	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5634_yea: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5635_yea: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5636_yea: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5637_yea: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5638_jsn: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5639_jsn: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5640_jsn: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5641_jsn: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5642_jsn: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5643_jsn: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5644_jsn: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5645_jsn: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5646_jsn: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5647_jsn: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5648_jsn: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5649_jsn: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5650_jsn: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5651_jsn: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5652_jsn: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5653_jsn: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5654_jsn: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5655_jsn: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5656_jsn: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5657_jsn: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5658_jsn: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5659_jsn: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5660_jsn: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5661_jsn: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5662_jsn: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5663_jsn: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5664_jsn: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5665_jsn: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5666_chr: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5667_chr: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5668_chr: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5669_chr: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5670_chr: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5671_chr: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5672_chr: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5673_chr: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5674_chr: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5675_chr: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5676_chr: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5677_chr: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5678_chr: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5679_chr: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5680_chr: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5681_chr: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5682_chr: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5683_chr: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5684_chr: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5685_chr: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5686_chr: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5687_chr: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5688_chr: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5689_chr: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5690_chr: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5691_chr: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5692_chr: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5693_chr: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5694_vch: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5695_vch: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5696_vch: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5697_vch: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5698_vch: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5699_vch: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5700_vch: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5701_vch: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5702_vch: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5703_vch: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5704_vch: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5705_vch: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5706_vch: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5707_vch: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5708_vch: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5709_vch: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5710_vch: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5711_vch: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5712_vch: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5713_vch: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5714_vch: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5715_vch: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5716_vch: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5717_vch: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5718_vch: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5719_vch: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5720_vch: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5721_vch: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5722_bin: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5723_bin: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5724_bin: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5725_bin: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5726_bin: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5727_bin: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5728_bin: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5729_bin: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5730_bin: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5731_bin: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5732_bin: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5733_bin: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5734_bin: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5735_bin: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5736_bin: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5737_bin: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5738_bin: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5739_bin: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5740_bin: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5741_bin: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5742_bin: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5743_bin: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5744_bin: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5745_bin: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5746_bin: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5747_bin: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5748_bin: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5749_bin: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5750_vbn: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5751_vbn: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5752_vbn: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5753_vbn: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5754_vbn: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5755_vbn: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5756_vbn: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5757_vbn: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5758_vbn: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5759_vbn: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5760_vbn: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5761_vbn: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5762_vbn: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5763_vbn: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5764_vbn: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5765_vbn: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5766_vbn: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5767_vbn: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5768_vbn: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5769_vbn: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5770_vbn: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5771_vbn: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5772_vbn: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5773_vbn: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5774_vbn: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5775_vbn: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5776_vbn: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5777_vbn: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5778_tbl: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5779_tbl: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5780_tbl: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5781_tbl: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5782_tbl: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5783_tbl: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5784_tbl: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5785_tbl: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5786_tbl: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5787_tbl: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5788_tbl: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5789_tbl: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5790_tbl: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5791_tbl: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5792_tbl: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5793_tbl: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5794_tbl: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5795_tbl: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5796_tbl: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5797_tbl: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5798_tbl: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5799_tbl: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5800_tbl: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5801_tbl: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5802_tbl: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5803_tbl: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5804_tbl: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5805_tbl: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5806_ttx: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5807_ttx: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5808_ttx: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5809_ttx: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5810_ttx: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5811_ttx: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5812_ttx: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5813_ttx: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5814_ttx: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5815_ttx: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5816_ttx: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5817_ttx: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5818_ttx: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5819_ttx: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5820_ttx: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5821_ttx: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5822_ttx: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5823_ttx: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5824_ttx: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5825_ttx: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5826_ttx: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5827_ttx: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5828_ttx: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5829_ttx: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5830_ttx: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5831_ttx: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5832_ttx: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5833_ttx: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5834_blb: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5835_blb: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5836_blb: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5837_blb: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5838_blb: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5839_blb: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5840_blb: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5841_blb: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5842_blb: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5843_blb: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5844_blb: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5845_blb: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5846_blb: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5847_blb: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5848_blb: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5849_blb: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5850_blb: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5851_blb: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5852_blb: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5853_blb: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5854_blb: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5855_blb: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5856_blb: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5857_blb: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5858_blb: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5859_blb: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5860_blb: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5861_blb: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5862_txt: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5863_txt: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5864_txt: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5865_txt: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5866_txt: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5867_txt: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5868_txt: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5869_txt: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5870_txt: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5871_txt: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5872_txt: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5873_txt: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5874_txt: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5875_txt: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5876_txt: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5877_txt: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5878_txt: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5879_txt: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5880_txt: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5881_txt: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5882_txt: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5883_txt: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5884_txt: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5885_txt: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5886_txt: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5887_txt: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5888_txt: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5889_txt: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5890_mbb: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N
5891_mbb: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N
5892_mbb: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N
5893_mbb: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N
5894_mbb: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N
5895_mbb: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N
5896_mbb: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N
5897_mbb: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N
5898_mbb: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N
5899_mbb: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N
5900_mbb: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N
5901_mbb: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N
5902_mbb: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N
5903_mbb: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N
5904_mbb: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N
5905_mbb: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N
5906_mbb: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N
5907_mbb: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N
5908_mbb: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
5909_mbb: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
5910_mbb: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
5911_mbb: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
5912_mbb: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
5913_mbb: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5914_mbb: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5915_mbb: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N
5916_mbb: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5917_mbb: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5918_mtx: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N
5919_mtx: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N
5920_mtx: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N
5921_mtx: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N
5922_mtx: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N
5923_mtx: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N
5924_mtx: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N
5925_mtx: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N
5926_mtx: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N
5927_mtx: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N
5928_mtx: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N
5929_mtx: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N
5930_mtx: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N
5931_mtx: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N
5932_mtx: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N
5933_mtx: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N
5934_mtx: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N
5935_mtx: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N
5936_mtx: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N
5937_mtx: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N
5938_mtx: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N
5939_mtx: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N
5940_mtx: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N
5941_mtx: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5942_mtx: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5943_mtx: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N
5944_mtx: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5945_mtx: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5946_lbb: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N
5947_lbb: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N
5948_lbb: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N
5949_lbb: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N
5950_lbb: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N
5951_lbb: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N
5952_lbb: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N
5953_lbb: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N
5954_lbb: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N
5955_lbb: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N
5956_lbb: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N
5957_lbb: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N
5958_lbb: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N
5959_lbb: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N
5960_lbb: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N
5961_lbb: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N
5962_lbb: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N
5963_lbb: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N
5964_lbb: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N
5965_lbb: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N
5966_lbb: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N
5967_lbb: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N
5968_lbb: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N
5969_lbb: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5970_lbb: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5971_lbb: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N
5972_lbb: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5973_lbb: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5974_ltx: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N
5975_ltx: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N
5976_ltx: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N
5977_ltx: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N
5978_ltx: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N
5979_ltx: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N
5980_ltx: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N
5981_ltx: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N
5982_ltx: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N
5983_ltx: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N
5984_ltx: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N
5985_ltx: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N
5986_ltx: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N
5987_ltx: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N
5988_ltx: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N
5989_ltx: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N
5990_ltx: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N
5991_ltx: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N
5992_ltx: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N
5993_ltx: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N
5994_ltx: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N
5995_ltx: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N
5996_ltx: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N
5997_ltx: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5998_ltx: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
5999_ltx: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N
6000_ltx: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6001_ltx: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6002_enu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6003_enu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6004_enu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6005_enu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6006_set: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6007_set: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6008_set: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6009_set: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6010_geo: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6011_geo: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6012_geo: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6013_geo: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6014_pnt: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6015_pnt: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6016_pnt: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6017_pnt: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6018_lst: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6019_lst: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6020_lst: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6021_lst: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6022_pol: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6023_pol: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6024_pol: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6025_pol: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6026_mpt: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6027_mpt: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6028_mpt: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6029_mpt: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6030_mls: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6031_mls: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6032_mls: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6033_mls: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6034_mpy: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6035_mpy: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6036_mpy: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6037_mpy: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6038_gco: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6039_gco: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6040_gco: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6041_gco: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6042_bit: null		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6043_bit: bool		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6044_bit: uint		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6045_bit: int		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6046_bit: double		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6047_bit: stringany		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6048_bit: stringint		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6049_bit: stringdecimal		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6050_bit: object	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6051_bit: array		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6052_bit: opaque_mysql_type_decimal		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6053_bit: opaque_mysql_type_set		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6054_bit: opaque_mysql_type_enum		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6055_bit: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6056_bit: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6057_bit: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6058_bit: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6059_tin: bool	N	1	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6060_tin: uint	N	12	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6061_tin: int	N	12	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6062_tin: double	N	3	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6063_tin: stringint	N	1	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6064_tin: opaque_mysql_type_decimal	N	3	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6065_tin: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6066_tin: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6067_tin: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6068_tin: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6069_boo: bool	N	N	1	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6070_boo: uint	N	N	12	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6071_boo: int	N	N	12	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6072_boo: double	N	N	3	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6073_boo: stringint	N	N	1	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6074_boo: opaque_mysql_type_decimal	N	N	3	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6075_boo: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6076_boo: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6077_boo: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6078_boo: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6079_sms: bool	N	N	N	1	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6080_sms: uint	N	N	N	12	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6081_sms: int	N	N	N	12	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6082_sms: double	N	N	N	3	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6083_sms: stringint	N	N	N	1	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6084_sms: opaque_mysql_type_decimal	N	N	N	3	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6085_sms: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6086_sms: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6087_sms: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6088_sms: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6089_smu: bool	N	N	N	N	1	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6090_smu: uint	N	N	N	N	12	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6091_smu: int	N	N	N	N	12	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6092_smu: double	N	N	N	N	3	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6093_smu: stringint	N	N	N	N	1	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6094_smu: opaque_mysql_type_decimal	N	N	N	N	3	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6095_smu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6096_smu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6097_smu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6098_smu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6099_mes: bool	N	N	N	N	N	1	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6100_mes: uint	N	N	N	N	N	12	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6101_mes: int	N	N	N	N	N	12	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6102_mes: double	N	N	N	N	N	3	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6103_mes: stringint	N	N	N	N	N	1	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6104_mes: opaque_mysql_type_decimal	N	N	N	N	N	3	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6105_mes: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6106_mes: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6107_mes: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6108_mes: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6109_meu: bool	N	N	N	N	N	N	1	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6110_meu: uint	N	N	N	N	N	N	12	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6111_meu: int	N	N	N	N	N	N	12	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6112_meu: double	N	N	N	N	N	N	3	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6113_meu: stringint	N	N	N	N	N	N	1	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6114_meu: opaque_mysql_type_decimal	N	N	N	N	N	N	3	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6115_meu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6116_meu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6117_meu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6118_meu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6119_ins: bool	N	N	N	N	N	N	N	1	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6120_ins: uint	N	N	N	N	N	N	N	12	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6121_ins: int	N	N	N	N	N	N	N	12	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6122_ins: double	N	N	N	N	N	N	N	3	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6123_ins: stringint	N	N	N	N	N	N	N	1	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6124_ins: opaque_mysql_type_decimal	N	N	N	N	N	N	N	3	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6125_ins: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6126_ins: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6127_ins: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6128_ins: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6129_inu: bool	N	N	N	N	N	N	N	N	1	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6130_inu: uint	N	N	N	N	N	N	N	N	12	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6131_inu: int	N	N	N	N	N	N	N	N	12	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6132_inu: double	N	N	N	N	N	N	N	N	3	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6133_inu: stringint	N	N	N	N	N	N	N	N	1	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6134_inu: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	3	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6135_inu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6136_inu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6137_inu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6138_inu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6139_bis: bool	N	N	N	N	N	N	N	N	N	1	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6140_bis: uint	N	N	N	N	N	N	N	N	N	12	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6141_bis: int	N	N	N	N	N	N	N	N	N	12	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6142_bis: double	N	N	N	N	N	N	N	N	N	3	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6143_bis: stringint	N	N	N	N	N	N	N	N	N	1	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6144_bis: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	3	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6145_bis: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6146_bis: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6147_bis: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6148_bis: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6149_biu: bool	N	N	N	N	N	N	N	N	N	N	1	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6150_biu: uint	N	N	N	N	N	N	N	N	N	N	12	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6151_biu: int	N	N	N	N	N	N	N	N	N	N	12	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6152_biu: double	N	N	N	N	N	N	N	N	N	N	3	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6153_biu: stringint	N	N	N	N	N	N	N	N	N	N	1	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6154_biu: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	3	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6155_biu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6156_biu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6157_biu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6158_biu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6159_dec: bool	N	N	N	N	N	N	N	N	N	N	N	1.00	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6160_dec: uint	N	N	N	N	N	N	N	N	N	N	N	12.00	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6161_dec: int	N	N	N	N	N	N	N	N	N	N	N	12.00	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6162_dec: double	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6163_dec: stringint	N	N	N	N	N	N	N	N	N	N	N	1.00	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6164_dec: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6165_dec: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6166_dec: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6167_dec: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6168_dec: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6169_dec: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6170_flo: bool	N	N	N	N	N	N	N	N	N	N	N	N	1	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6171_flo: uint	N	N	N	N	N	N	N	N	N	N	N	N	12	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6172_flo: int	N	N	N	N	N	N	N	N	N	N	N	N	12	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6173_flo: double	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6174_flo: stringint	N	N	N	N	N	N	N	N	N	N	N	N	1	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6175_flo: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6176_flo: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6177_flo: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6178_flo: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6179_flo: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6180_flo: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6181_dou: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	1	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6182_dou: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	12	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6183_dou: int	N	N	N	N	N	N	N	N	N	N	N	N	N	12	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6184_dou: double	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6185_dou: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	1	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6186_dou: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6187_dou: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6188_dou: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6189_dou: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6190_dou: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6191_dou: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6192_dat: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--EXPECTED_DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6193_dat: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6194_dat: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--EXPECTED_DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6195_dat: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6196_dat: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6197_dat: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6198_dat: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6199_dtt: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6200_dtt: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6201_dtt: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6202_dtt: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	N	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6203_dtt: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	N	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6204_dtt: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	N	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6205_dat: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6206_smp: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6207_smp: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6208_smp: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6209_smp: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6210_smp: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6211_smp: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6212_smp: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6213_tim: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6214_tim: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--EXPECTED_TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6215_tim: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--EXPECTED_TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6216_tim: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6217_tim: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6218_tim: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6219_tim: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6220_yea: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	2012	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6221_yea: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	2012	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6222_yea: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	2003	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6223_yea: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	2003	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6224_yea: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6225_yea: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6226_yea: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6227_yea: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6228_jsn: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6229_jsn: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6230_jsn: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6231_jsn: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6232_jsn: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6233_jsn: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6234_jsn: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6235_jsn: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6236_jsn: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6237_jsn: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6238_jsn: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6239_jsn: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6240_jsn: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6241_jsn: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6242_jsn: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6243_jsn: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6244_jsn: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6245_jsn: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6246_jsn: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6247_jsn: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6248_jsn: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6249_jsn: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6250_jsn: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6251_jsn: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6252_jsn: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6253_jsn: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6254_jsn: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6255_jsn: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6256_chr: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6257_chr: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6258_chr: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6259_chr: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6260_chr: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6261_chr: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6262_chr: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6263_chr: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6264_chr: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6265_chr: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6266_chr: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6267_chr: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6268_chr: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6269_chr: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6270_chr: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6271_chr: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6272_chr: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6273_chr: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6274_chr: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6275_chr: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6276_chr: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6277_chr: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6278_chr: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6279_chr: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6280_chr: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6281_chr: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6282_chr: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6283_chr: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6284_vch: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6285_vch: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6286_vch: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6287_vch: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6288_vch: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6289_vch: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6290_vch: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6291_vch: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6292_vch: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6293_vch: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6294_vch: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6295_vch: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6296_vch: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6297_vch: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6298_vch: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6299_vch: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6300_vch: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6301_vch: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6302_vch: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6303_vch: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6304_vch: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6305_vch: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6306_vch: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6307_vch: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6308_vch: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6309_vch: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6310_vch: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6311_vch: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6312_bin: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6313_bin: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6314_bin: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6315_bin: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6316_bin: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6317_bin: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6318_bin: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6319_bin: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6320_bin: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6321_bin: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6322_bin: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6323_bin: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6324_bin: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6325_bin: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6326_bin: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6327_bin: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6328_bin: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6329_bin: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6330_bin: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6331_bin: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6332_bin: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6333_bin: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6334_bin: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6335_bin: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6336_bin: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6337_bin: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6338_bin: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6339_bin: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6340_vbn: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6341_vbn: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6342_vbn: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6343_vbn: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6344_vbn: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6345_vbn: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6346_vbn: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6347_vbn: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6348_vbn: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6349_vbn: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6350_vbn: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6351_vbn: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6352_vbn: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6353_vbn: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6354_vbn: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6355_vbn: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6356_vbn: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6357_vbn: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6358_vbn: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6359_vbn: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6360_vbn: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6361_vbn: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6362_vbn: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6363_vbn: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6364_vbn: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6365_vbn: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6366_vbn: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6367_vbn: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6368_tbl: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6369_tbl: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6370_tbl: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6371_tbl: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6372_tbl: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6373_tbl: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6374_tbl: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6375_tbl: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6376_tbl: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6377_tbl: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6378_tbl: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6379_tbl: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6380_tbl: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6381_tbl: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6382_tbl: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6383_tbl: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6384_tbl: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6385_tbl: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6386_tbl: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6387_tbl: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6388_tbl: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6389_tbl: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6390_tbl: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6391_tbl: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6392_tbl: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6393_tbl: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6394_tbl: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6395_tbl: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6396_ttx: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6397_ttx: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6398_ttx: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6399_ttx: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6400_ttx: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6401_ttx: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6402_ttx: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6403_ttx: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6404_ttx: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6405_ttx: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6406_ttx: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6407_ttx: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6408_ttx: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6409_ttx: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6410_ttx: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6411_ttx: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6412_ttx: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6413_ttx: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6414_ttx: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6415_ttx: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6416_ttx: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6417_ttx: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6418_ttx: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6419_ttx: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6420_ttx: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6421_ttx: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6422_ttx: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6423_ttx: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6424_blb: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6425_blb: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6426_blb: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6427_blb: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6428_blb: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6429_blb: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6430_blb: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6431_blb: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6432_blb: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6433_blb: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6434_blb: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6435_blb: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6436_blb: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6437_blb: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6438_blb: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6439_blb: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6440_blb: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6441_blb: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6442_blb: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6443_blb: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6444_blb: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6445_blb: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6446_blb: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6447_blb: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6448_blb: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6449_blb: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6450_blb: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6451_blb: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6452_txt: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6453_txt: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6454_txt: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6455_txt: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6456_txt: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6457_txt: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6458_txt: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6459_txt: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6460_txt: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6461_txt: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6462_txt: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6463_txt: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6464_txt: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6465_txt: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6466_txt: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6467_txt: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6468_txt: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6469_txt: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6470_txt: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6471_txt: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6472_txt: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6473_txt: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6474_txt: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6475_txt: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6476_txt: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6477_txt: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6478_txt: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6479_txt: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6480_mbb: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N
6481_mbb: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N
6482_mbb: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N
6483_mbb: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N
6484_mbb: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N
6485_mbb: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N
6486_mbb: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N
6487_mbb: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N
6488_mbb: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N
6489_mbb: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N
6490_mbb: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N
6491_mbb: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N
6492_mbb: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N
6493_mbb: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N
6494_mbb: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N
6495_mbb: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N
6496_mbb: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N
6497_mbb: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N
6498_mbb: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
6499_mbb: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
6500_mbb: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
6501_mbb: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
6502_mbb: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
6503_mbb: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6504_mbb: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6505_mbb: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N
6506_mbb: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6507_mbb: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6508_mtx: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N
6509_mtx: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N
6510_mtx: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N
6511_mtx: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N
6512_mtx: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N
6513_mtx: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N
6514_mtx: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N
6515_mtx: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N
6516_mtx: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N
6517_mtx: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N
6518_mtx: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N
6519_mtx: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N
6520_mtx: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N
6521_mtx: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N
6522_mtx: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N
6523_mtx: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N
6524_mtx: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N
6525_mtx: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N
6526_mtx: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N
6527_mtx: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N
6528_mtx: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N
6529_mtx: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N
6530_mtx: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N
6531_mtx: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6532_mtx: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6533_mtx: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N
6534_mtx: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6535_mtx: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6536_lbb: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N
6537_lbb: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N
6538_lbb: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N
6539_lbb: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N
6540_lbb: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N
6541_lbb: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N
6542_lbb: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N
6543_lbb: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N
6544_lbb: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N
6545_lbb: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N
6546_lbb: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N
6547_lbb: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N
6548_lbb: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N
6549_lbb: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N
6550_lbb: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N
6551_lbb: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N
6552_lbb: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N
6553_lbb: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N
6554_lbb: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N
6555_lbb: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N
6556_lbb: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N
6557_lbb: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N
6558_lbb: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N
6559_lbb: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6560_lbb: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6561_lbb: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N
6562_lbb: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6563_lbb: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6564_ltx: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N
6565_ltx: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N
6566_ltx: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N
6567_ltx: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N
6568_ltx: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N
6569_ltx: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N
6570_ltx: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N
6571_ltx: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N
6572_ltx: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N
6573_ltx: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N
6574_ltx: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N
6575_ltx: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N
6576_ltx: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N
6577_ltx: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N
6578_ltx: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N
6579_ltx: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N
6580_ltx: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N
6581_ltx: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N
6582_ltx: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N
6583_ltx: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N
6584_ltx: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N
6585_ltx: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N
6586_ltx: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N
6587_ltx: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6588_ltx: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6589_ltx: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N
6590_ltx: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6591_ltx: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6592_enu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6593_enu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6594_enu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6595_enu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6596_set: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6597_set: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6598_set: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6599_set: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6600_geo: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6601_geo: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6602_geo: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6603_geo: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6604_pnt: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6605_pnt: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6606_pnt: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6607_pnt: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6608_lst: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6609_lst: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6610_lst: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6611_lst: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6612_pol: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6613_pol: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6614_pol: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6615_pol: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6616_mpt: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6617_mpt: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6618_mpt: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6619_mpt: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6620_mls: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6621_mls: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6622_mls: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6623_mls: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6624_mpy: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6625_mpy: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6626_mpy: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6627_mpy: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6628_gco: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6629_gco: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6630_gco: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6631_gco: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6632_tin: bool	N	1	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6633_bit: null		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6634_bit: bool		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6635_bit: uint		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6636_bit: int		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6637_bit: double		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6638_bit: stringany		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6639_bit: stringint		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6640_bit: stringdecimal		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6641_bit: object	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6642_bit: array		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6643_bit: opaque_mysql_type_decimal		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6644_bit: opaque_mysql_type_set		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6645_bit: opaque_mysql_type_enum		N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6646_bit: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6647_bit: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6648_bit: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6649_bit: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6650_tin: bool	N	1	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6651_tin: uint	N	12	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6652_tin: int	N	12	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6653_tin: double	N	3	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6654_tin: stringint	N	1	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6655_tin: opaque_mysql_type_decimal	N	3	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6656_tin: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6657_tin: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6658_tin: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6659_tin: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6660_boo: bool	N	N	1	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6661_boo: uint	N	N	12	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6662_boo: int	N	N	12	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6663_boo: double	N	N	3	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6664_boo: stringint	N	N	1	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6665_boo: opaque_mysql_type_decimal	N	N	3	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6666_boo: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6667_boo: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6668_boo: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6669_boo: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6670_sms: bool	N	N	N	1	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6671_sms: uint	N	N	N	12	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6672_sms: int	N	N	N	12	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6673_sms: double	N	N	N	3	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6674_sms: stringint	N	N	N	1	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6675_sms: opaque_mysql_type_decimal	N	N	N	3	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6676_sms: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6677_sms: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6678_sms: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6679_sms: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6680_smu: bool	N	N	N	N	1	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6681_smu: uint	N	N	N	N	12	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6682_smu: int	N	N	N	N	12	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6683_smu: double	N	N	N	N	3	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6684_smu: stringint	N	N	N	N	1	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6685_smu: opaque_mysql_type_decimal	N	N	N	N	3	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6686_smu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6687_smu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6688_smu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6689_smu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6690_mes: bool	N	N	N	N	N	1	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6691_mes: uint	N	N	N	N	N	12	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6692_mes: int	N	N	N	N	N	12	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6693_mes: double	N	N	N	N	N	3	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6694_mes: stringint	N	N	N	N	N	1	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6695_mes: opaque_mysql_type_decimal	N	N	N	N	N	3	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6696_mes: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6697_mes: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6698_mes: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6699_mes: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6700_meu: bool	N	N	N	N	N	N	1	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6701_meu: uint	N	N	N	N	N	N	12	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6702_meu: int	N	N	N	N	N	N	12	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6703_meu: double	N	N	N	N	N	N	3	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6704_meu: stringint	N	N	N	N	N	N	1	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6705_meu: opaque_mysql_type_decimal	N	N	N	N	N	N	3	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6706_meu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6707_meu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6708_meu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6709_meu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6710_ins: bool	N	N	N	N	N	N	N	1	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6711_ins: uint	N	N	N	N	N	N	N	12	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6712_ins: int	N	N	N	N	N	N	N	12	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6713_ins: double	N	N	N	N	N	N	N	3	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6714_ins: stringint	N	N	N	N	N	N	N	1	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6715_ins: opaque_mysql_type_decimal	N	N	N	N	N	N	N	3	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6716_ins: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6717_ins: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6718_ins: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6719_ins: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6720_inu: bool	N	N	N	N	N	N	N	N	1	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6721_inu: uint	N	N	N	N	N	N	N	N	12	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6722_inu: int	N	N	N	N	N	N	N	N	12	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6723_inu: double	N	N	N	N	N	N	N	N	3	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6724_inu: stringint	N	N	N	N	N	N	N	N	1	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6725_inu: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	3	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6726_inu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6727_inu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6728_inu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6729_inu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6730_bis: bool	N	N	N	N	N	N	N	N	N	1	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6731_bis: uint	N	N	N	N	N	N	N	N	N	12	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6732_bis: int	N	N	N	N	N	N	N	N	N	12	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6733_bis: double	N	N	N	N	N	N	N	N	N	3	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6734_bis: stringint	N	N	N	N	N	N	N	N	N	1	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6735_bis: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	3	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6736_bis: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6737_bis: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6738_bis: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6739_bis: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6740_biu: bool	N	N	N	N	N	N	N	N	N	N	1	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6741_biu: uint	N	N	N	N	N	N	N	N	N	N	12	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6742_biu: int	N	N	N	N	N	N	N	N	N	N	12	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6743_biu: double	N	N	N	N	N	N	N	N	N	N	3	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6744_biu: stringint	N	N	N	N	N	N	N	N	N	N	1	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6745_biu: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	3	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6746_biu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6747_biu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6748_biu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6749_biu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6750_dec: bool	N	N	N	N	N	N	N	N	N	N	N	1.00	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6751_dec: uint	N	N	N	N	N	N	N	N	N	N	N	12.00	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6752_dec: int	N	N	N	N	N	N	N	N	N	N	N	12.00	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6753_dec: double	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6754_dec: stringint	N	N	N	N	N	N	N	N	N	N	N	1.00	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6755_dec: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6756_dec: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6757_dec: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6758_dec: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6759_dec: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6760_dec: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6761_flo: bool	N	N	N	N	N	N	N	N	N	N	N	N	1	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6762_flo: uint	N	N	N	N	N	N	N	N	N	N	N	N	12	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6763_flo: int	N	N	N	N	N	N	N	N	N	N	N	N	12	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6764_flo: double	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6765_flo: stringint	N	N	N	N	N	N	N	N	N	N	N	N	1	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6766_flo: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6767_flo: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6768_flo: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6769_flo: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6770_flo: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6771_flo: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6772_dou: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	1	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6773_dou: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	12	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6774_dou: int	N	N	N	N	N	N	N	N	N	N	N	N	N	12	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6775_dou: double	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6776_dou: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	1	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6777_dou: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6778_dou: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6779_dou: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6780_dou: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6781_dou: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6782_dou: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6783_dat: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--EXPECTED_DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6784_dat: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6785_dat: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--EXPECTED_DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6786_dat: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6787_dat: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6788_dat: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6789_dat: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6790_dtt: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6791_dtt: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6792_dtt: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6793_dtt: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	N	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6794_dtt: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	N	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6795_dtt: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	N	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6796_dat: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6797_smp: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6798_smp: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6799_smp: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6800_smp: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6801_smp: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6802_smp: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6803_smp: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6804_tim: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6805_tim: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--EXPECTED_TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6806_tim: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--EXPECTED_TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6807_tim: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6808_tim: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6809_tim: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6810_tim: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6811_yea: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	2012	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6812_yea: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	2012	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6813_yea: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	2003	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6814_yea: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	2003	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6815_yea: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6816_yea: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6817_yea: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6818_yea: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6819_jsn: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6820_jsn: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6821_jsn: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6822_jsn: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6823_jsn: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6824_jsn: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6825_jsn: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6826_jsn: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6827_jsn: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6828_jsn: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6829_jsn: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6830_jsn: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6831_jsn: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6832_jsn: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6833_jsn: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6834_jsn: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6835_jsn: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6836_jsn: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6837_jsn: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6838_jsn: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6839_jsn: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6840_jsn: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6841_jsn: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6842_jsn: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6843_jsn: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6844_jsn: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6845_jsn: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6846_jsn: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6847_chr: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6848_chr: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6849_chr: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6850_chr: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6851_chr: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6852_chr: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6853_chr: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6854_chr: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6855_chr: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6856_chr: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6857_chr: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6858_chr: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6859_chr: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6860_chr: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6861_chr: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6862_chr: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6863_chr: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6864_chr: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6865_chr: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6866_chr: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6867_chr: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6868_chr: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6869_chr: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6870_chr: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6871_chr: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6872_chr: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6873_chr: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6874_chr: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6875_vch: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6876_vch: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6877_vch: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6878_vch: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6879_vch: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6880_vch: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6881_vch: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6882_vch: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6883_vch: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6884_vch: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6885_vch: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6886_vch: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6887_vch: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6888_vch: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6889_vch: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6890_vch: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6891_vch: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6892_vch: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6893_vch: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6894_vch: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6895_vch: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6896_vch: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6897_vch: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6898_vch: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6899_vch: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6900_vch: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6901_vch: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6902_vch: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6903_bin: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6904_bin: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6905_bin: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6906_bin: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6907_bin: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6908_bin: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6909_bin: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6910_bin: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6911_bin: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6912_bin: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6913_bin: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6914_bin: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6915_bin: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6916_bin: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6917_bin: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6918_bin: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6919_bin: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6920_bin: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6921_bin: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6922_bin: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6923_bin: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6924_bin: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6925_bin: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6926_bin: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6927_bin: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6928_bin: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6929_bin: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6930_bin: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6931_vbn: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6932_vbn: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6933_vbn: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6934_vbn: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6935_vbn: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6936_vbn: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6937_vbn: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6938_vbn: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6939_vbn: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6940_vbn: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6941_vbn: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6942_vbn: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6943_vbn: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6944_vbn: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6945_vbn: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6946_vbn: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6947_vbn: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6948_vbn: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6949_vbn: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6950_vbn: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6951_vbn: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6952_vbn: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6953_vbn: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6954_vbn: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6955_vbn: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6956_vbn: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6957_vbn: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6958_vbn: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6959_tbl: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6960_tbl: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6961_tbl: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6962_tbl: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6963_tbl: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6964_tbl: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6965_tbl: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6966_tbl: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6967_tbl: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6968_tbl: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6969_tbl: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6970_tbl: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6971_tbl: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6972_tbl: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6973_tbl: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6974_tbl: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6975_tbl: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6976_tbl: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6977_tbl: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6978_tbl: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6979_tbl: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6980_tbl: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6981_tbl: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6982_tbl: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6983_tbl: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6984_tbl: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6985_tbl: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6986_tbl: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6987_ttx: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6988_ttx: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6989_ttx: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6990_ttx: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6991_ttx: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6992_ttx: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6993_ttx: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6994_ttx: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6995_ttx: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6996_ttx: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6997_ttx: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6998_ttx: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
6999_ttx: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7000_ttx: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7001_ttx: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7002_ttx: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7003_ttx: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7004_ttx: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7005_ttx: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7006_ttx: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7007_ttx: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7008_ttx: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7009_ttx: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7010_ttx: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7011_ttx: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7012_ttx: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7013_ttx: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7014_ttx: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7015_blb: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7016_blb: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7017_blb: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7018_blb: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7019_blb: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7020_blb: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7021_blb: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7022_blb: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7023_blb: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7024_blb: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7025_blb: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7026_blb: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7027_blb: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7028_blb: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7029_blb: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7030_blb: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7031_blb: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7032_blb: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7033_blb: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7034_blb: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7035_blb: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7036_blb: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7037_blb: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7038_blb: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7039_blb: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7040_blb: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7041_blb: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7042_blb: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7043_txt: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7044_txt: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7045_txt: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7046_txt: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7047_txt: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7048_txt: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7049_txt: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7050_txt: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7051_txt: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7052_txt: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7053_txt: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7054_txt: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7055_txt: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7056_txt: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7057_txt: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7058_txt: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7059_txt: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7060_txt: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7061_txt: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7062_txt: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7063_txt: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7064_txt: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7065_txt: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7066_txt: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7067_txt: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7068_txt: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7069_txt: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7070_txt: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7071_mbb: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N	N
7072_mbb: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N	N
7073_mbb: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N
7074_mbb: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N	N
7075_mbb: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N
7076_mbb: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N	N
7077_mbb: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N	N
7078_mbb: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N	N
7079_mbb: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N	N
7080_mbb: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N	N
7081_mbb: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N	N
7082_mbb: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N	N
7083_mbb: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N	N
7084_mbb: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N	N
7085_mbb: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N	N
7086_mbb: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N	N
7087_mbb: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N	N
7088_mbb: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N	N
7089_mbb: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
7090_mbb: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
7091_mbb: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
7092_mbb: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
7093_mbb: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N	N
7094_mbb: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7095_mbb: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7096_mbb: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N	N
7097_mbb: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7098_mbb: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7099_mtx: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N	N
7100_mtx: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N	N
7101_mtx: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N
7102_mtx: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N	N
7103_mtx: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N
7104_mtx: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N	N
7105_mtx: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N	N
7106_mtx: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N	N
7107_mtx: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N	N
7108_mtx: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N	N
7109_mtx: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N	N
7110_mtx: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N	N
7111_mtx: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N	N
7112_mtx: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N	N
7113_mtx: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N	N
7114_mtx: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N	N
7115_mtx: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N	N
7116_mtx: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N	N
7117_mtx: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N	N
7118_mtx: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N
7119_mtx: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N
7120_mtx: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N
7121_mtx: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N	N
7122_mtx: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7123_mtx: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7124_mtx: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N	N
7125_mtx: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7126_mtx: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7127_lbb: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N	N
7128_lbb: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N	N
7129_lbb: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N
7130_lbb: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N	N
7131_lbb: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N
7132_lbb: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N	N
7133_lbb: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N	N
7134_lbb: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N	N
7135_lbb: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N	N
7136_lbb: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N	N
7137_lbb: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N	N
7138_lbb: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N	N
7139_lbb: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N	N
7140_lbb: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N	N
7141_lbb: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N	N
7142_lbb: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N	N
7143_lbb: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N	N
7144_lbb: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N	N
7145_lbb: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N	N
7146_lbb: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N
7147_lbb: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N
7148_lbb: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N
7149_lbb: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N	N
7150_lbb: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7151_lbb: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7152_lbb: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N	N
7153_lbb: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7154_lbb: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7155_ltx: null	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	null	N	N	N	N	N	N	N	N	N	N
7156_ltx: bool	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	true	N	N	N	N	N	N	N	N	N	N
7157_ltx: uint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N
7158_ltx: int	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	12	N	N	N	N	N	N	N	N	N	N
7159_ltx: double	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N
7160_ltx: stringany	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"a"	N	N	N	N	N	N	N	N	N	N
7161_ltx: stringint	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"1"	N	N	N	N	N	N	N	N	N	N
7162_ltx: stringdecimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"3.14"	N	N	N	N	N	N	N	N	N	N
7163_ltx: object	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	{"a": 3}	N	N	N	N	N	N	N	N	N	N
7164_ltx: array	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	[1, 2]	N	N	N	N	N	N	N	N	N	N
7165_ltx: opaque_mysql_type_decimal	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	3.14	N	N	N	N	N	N	N	N	N	N
7166_ltx: opaque_mysql_type_set	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"b,c"	N	N	N	N	N	N	N	N	N	N
7167_ltx: opaque_mysql_type_enum	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"b"	N	N	N	N	N	N	N	N	N	N
7168_ltx: opaque_mysql_type_date	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_DATE--"	N	N	N	N	N	N	N	N	N	N
7169_ltx: opaque_mysql_type_time	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--.000000"	N	N	N	N	N	N	N	N	N	N
7170_ltx: opaque_mysql_type_datetime	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"--EXPECTED_TIME--"	N	N	N	N	N	N	N	N	N	N
7171_ltx: opaque_mysql_type_geom	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	{"type": "Point", "coordinates": [1, 1]}	N	N	N	N	N	N	N	N	N	N
7172_ltx: opaque_mysql_type_bit	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type16:yv4="	N	N	N	N	N	N	N	N	N	N
7173_ltx: opaque_mysql_type_year	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type13:MTk5Mg=="	N	N	N	N	N	N	N	N	N	N
7174_ltx: opaque_mysql_type_blob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type252:yv66vg=="	N	N	N	N	N	N	N	N	N	N
7175_ltx: opaque_mysql_type_longblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type251:yv66vg=="	N	N	N	N	N	N	N	N	N	N
7176_ltx: opaque_mysql_type_mediumblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type250:yv66vg=="	N	N	N	N	N	N	N	N	N	N
7177_ltx: opaque_mysql_type_tinyblob	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type249:yv66vg=="	N	N	N	N	N	N	N	N	N	N
7178_ltx: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7179_ltx: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7180_ltx: opaque_mysql_type_varchar	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	"base64:type15:Zm9v"	N	N	N	N	N	N	N	N	N	N
7181_ltx: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7182_ltx: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7183_enu: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7184_enu: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7185_enu: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7186_enu: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7187_set: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7188_set: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7189_set: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7190_set: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7191_geo: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7192_geo: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7193_geo: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7194_geo: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7195_pnt: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7196_pnt: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7197_pnt: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7198_pnt: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7199_lst: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7200_lst: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7201_lst: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7202_lst: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7203_pol: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7204_pol: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7205_pol: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7206_pol: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7207_mpt: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7208_mpt: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7209_mpt: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7210_mpt: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7211_mls: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7212_mls: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7213_mls: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7214_mls: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7215_mpy: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7216_mpy: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7217_mpy: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7218_mpy: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7219_gco: opaque_mysql_type_varbinary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7220_gco: opaque_mysql_type_binary	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7221_gco: opaque_mysql_type_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7222_gco: opaque_mysql_type_var_string	N	N	N	N	N	N	N	N	N	N	N	N	N	N	--DATE--	--TIME--	--TIME--	--TIME--	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N	N
7223select c, _bit from at
7224where c like '_bit%';
7225c	_bit
7226_bit: null	����null
7227_bit: bool	����true
7228_bit: uint	������12
7229_bit: int	������12
7230_bit: double	����3.14
7231_bit: stringany	�����"a"
7232_bit: stringint	�����"1"
7233_bit: stringdecimal	��"3.14"
7234_bit: object	{"a": 3}
7235_bit: array	��[1, 2]
7236_bit: opaque_mysql_type_decimal	����3.14
7237_bit: opaque_mysql_type_set	���"b,c"
7238_bit: opaque_mysql_type_enum	�����"b"
7239_bit: opaque_mysql_type_varbinary	NULL
7240_bit: opaque_mysql_type_binary	NULL
7241_bit: opaque_mysql_type_string	NULL
7242_bit: opaque_mysql_type_var_string	NULL
7243_bit: null	����null
7244_bit: bool	����true
7245_bit: uint	������12
7246_bit: int	������12
7247_bit: double	����3.14
7248_bit: stringany	�����"a"
7249_bit: stringint	�����"1"
7250_bit: stringdecimal	��"3.14"
7251_bit: object	{"a": 3}
7252_bit: array	��[1, 2]
7253_bit: opaque_mysql_type_decimal	����3.14
7254_bit: opaque_mysql_type_set	���"b,c"
7255_bit: opaque_mysql_type_enum	�����"b"
7256_bit: opaque_mysql_type_varbinary	NULL
7257_bit: opaque_mysql_type_binary	NULL
7258_bit: opaque_mysql_type_string	NULL
7259_bit: opaque_mysql_type_var_string	NULL
7260_bit: null	����null
7261_bit: bool	����true
7262_bit: uint	������12
7263_bit: int	������12
7264_bit: double	����3.14
7265_bit: stringany	�����"a"
7266_bit: stringint	�����"1"
7267_bit: stringdecimal	��"3.14"
7268_bit: object	{"a": 3}
7269_bit: array	��[1, 2]
7270_bit: opaque_mysql_type_decimal	����3.14
7271_bit: opaque_mysql_type_set	���"b,c"
7272_bit: opaque_mysql_type_enum	�����"b"
7273_bit: opaque_mysql_type_varbinary	NULL
7274_bit: opaque_mysql_type_binary	NULL
7275_bit: opaque_mysql_type_string	NULL
7276_bit: opaque_mysql_type_var_string	NULL
7277select c, _tin from at
7278where c like '_tin%';
7279c	_tin
7280_tin: bool	1
7281_tin: uint	12
7282_tin: int	12
7283_tin: double	3
7284_tin: stringint	1
7285_tin: opaque_mysql_type_decimal	3
7286_tin: opaque_mysql_type_varbinary	NULL
7287_tin: opaque_mysql_type_binary	NULL
7288_tin: opaque_mysql_type_string	NULL
7289_tin: opaque_mysql_type_var_string	NULL
7290_tin: bool	1
7291_tin: uint	12
7292_tin: int	12
7293_tin: double	3
7294_tin: stringint	1
7295_tin: opaque_mysql_type_decimal	3
7296_tin: opaque_mysql_type_varbinary	NULL
7297_tin: opaque_mysql_type_binary	NULL
7298_tin: opaque_mysql_type_string	NULL
7299_tin: opaque_mysql_type_var_string	NULL
7300_tin: bool	1
7301_tin: bool	1
7302_tin: uint	12
7303_tin: int	12
7304_tin: double	3
7305_tin: stringint	1
7306_tin: opaque_mysql_type_decimal	3
7307_tin: opaque_mysql_type_varbinary	NULL
7308_tin: opaque_mysql_type_binary	NULL
7309_tin: opaque_mysql_type_string	NULL
7310_tin: opaque_mysql_type_var_string	NULL
7311select c, _boo from at
7312where c like '_boo%';
7313c	_boo
7314_boo: bool	1
7315_boo: uint	12
7316_boo: int	12
7317_boo: double	3
7318_boo: stringint	1
7319_boo: opaque_mysql_type_decimal	3
7320_boo: opaque_mysql_type_varbinary	NULL
7321_boo: opaque_mysql_type_binary	NULL
7322_boo: opaque_mysql_type_string	NULL
7323_boo: opaque_mysql_type_var_string	NULL
7324_boo: bool	1
7325_boo: uint	12
7326_boo: int	12
7327_boo: double	3
7328_boo: stringint	1
7329_boo: opaque_mysql_type_decimal	3
7330_boo: opaque_mysql_type_varbinary	NULL
7331_boo: opaque_mysql_type_binary	NULL
7332_boo: opaque_mysql_type_string	NULL
7333_boo: opaque_mysql_type_var_string	NULL
7334_boo: bool	1
7335_boo: uint	12
7336_boo: int	12
7337_boo: double	3
7338_boo: stringint	1
7339_boo: opaque_mysql_type_decimal	3
7340_boo: opaque_mysql_type_varbinary	NULL
7341_boo: opaque_mysql_type_binary	NULL
7342_boo: opaque_mysql_type_string	NULL
7343_boo: opaque_mysql_type_var_string	NULL
7344select c, _sms from at
7345where c like '_sms%';
7346c	_sms
7347_sms: bool	1
7348_sms: uint	12
7349_sms: int	12
7350_sms: double	3
7351_sms: stringint	1
7352_sms: opaque_mysql_type_decimal	3
7353_sms: opaque_mysql_type_varbinary	NULL
7354_sms: opaque_mysql_type_binary	NULL
7355_sms: opaque_mysql_type_string	NULL
7356_sms: opaque_mysql_type_var_string	NULL
7357_sms: bool	1
7358_sms: uint	12
7359_sms: int	12
7360_sms: double	3
7361_sms: stringint	1
7362_sms: opaque_mysql_type_decimal	3
7363_sms: opaque_mysql_type_varbinary	NULL
7364_sms: opaque_mysql_type_binary	NULL
7365_sms: opaque_mysql_type_string	NULL
7366_sms: opaque_mysql_type_var_string	NULL
7367_sms: bool	1
7368_sms: uint	12
7369_sms: int	12
7370_sms: double	3
7371_sms: stringint	1
7372_sms: opaque_mysql_type_decimal	3
7373_sms: opaque_mysql_type_varbinary	NULL
7374_sms: opaque_mysql_type_binary	NULL
7375_sms: opaque_mysql_type_string	NULL
7376_sms: opaque_mysql_type_var_string	NULL
7377select c, _smu from at
7378where c like '_smu%';
7379c	_smu
7380_smu: bool	1
7381_smu: uint	12
7382_smu: int	12
7383_smu: double	3
7384_smu: stringint	1
7385_smu: opaque_mysql_type_decimal	3
7386_smu: opaque_mysql_type_varbinary	NULL
7387_smu: opaque_mysql_type_binary	NULL
7388_smu: opaque_mysql_type_string	NULL
7389_smu: opaque_mysql_type_var_string	NULL
7390_smu: bool	1
7391_smu: uint	12
7392_smu: int	12
7393_smu: double	3
7394_smu: stringint	1
7395_smu: opaque_mysql_type_decimal	3
7396_smu: opaque_mysql_type_varbinary	NULL
7397_smu: opaque_mysql_type_binary	NULL
7398_smu: opaque_mysql_type_string	NULL
7399_smu: opaque_mysql_type_var_string	NULL
7400_smu: bool	1
7401_smu: uint	12
7402_smu: int	12
7403_smu: double	3
7404_smu: stringint	1
7405_smu: opaque_mysql_type_decimal	3
7406_smu: opaque_mysql_type_varbinary	NULL
7407_smu: opaque_mysql_type_binary	NULL
7408_smu: opaque_mysql_type_string	NULL
7409_smu: opaque_mysql_type_var_string	NULL
7410select c, _mes from at
7411where c like '_mes%';
7412c	_mes
7413_mes: bool	1
7414_mes: uint	12
7415_mes: int	12
7416_mes: double	3
7417_mes: stringint	1
7418_mes: opaque_mysql_type_decimal	3
7419_mes: opaque_mysql_type_varbinary	NULL
7420_mes: opaque_mysql_type_binary	NULL
7421_mes: opaque_mysql_type_string	NULL
7422_mes: opaque_mysql_type_var_string	NULL
7423_mes: bool	1
7424_mes: uint	12
7425_mes: int	12
7426_mes: double	3
7427_mes: stringint	1
7428_mes: opaque_mysql_type_decimal	3
7429_mes: opaque_mysql_type_varbinary	NULL
7430_mes: opaque_mysql_type_binary	NULL
7431_mes: opaque_mysql_type_string	NULL
7432_mes: opaque_mysql_type_var_string	NULL
7433_mes: bool	1
7434_mes: uint	12
7435_mes: int	12
7436_mes: double	3
7437_mes: stringint	1
7438_mes: opaque_mysql_type_decimal	3
7439_mes: opaque_mysql_type_varbinary	NULL
7440_mes: opaque_mysql_type_binary	NULL
7441_mes: opaque_mysql_type_string	NULL
7442_mes: opaque_mysql_type_var_string	NULL
7443select c, _meu from at
7444where c like '_meu%';
7445c	_meu
7446_meu: bool	1
7447_meu: uint	12
7448_meu: int	12
7449_meu: double	3
7450_meu: stringint	1
7451_meu: opaque_mysql_type_decimal	3
7452_meu: opaque_mysql_type_varbinary	NULL
7453_meu: opaque_mysql_type_binary	NULL
7454_meu: opaque_mysql_type_string	NULL
7455_meu: opaque_mysql_type_var_string	NULL
7456_meu: bool	1
7457_meu: uint	12
7458_meu: int	12
7459_meu: double	3
7460_meu: stringint	1
7461_meu: opaque_mysql_type_decimal	3
7462_meu: opaque_mysql_type_varbinary	NULL
7463_meu: opaque_mysql_type_binary	NULL
7464_meu: opaque_mysql_type_string	NULL
7465_meu: opaque_mysql_type_var_string	NULL
7466_meu: bool	1
7467_meu: uint	12
7468_meu: int	12
7469_meu: double	3
7470_meu: stringint	1
7471_meu: opaque_mysql_type_decimal	3
7472_meu: opaque_mysql_type_varbinary	NULL
7473_meu: opaque_mysql_type_binary	NULL
7474_meu: opaque_mysql_type_string	NULL
7475_meu: opaque_mysql_type_var_string	NULL
7476select c, _ins from at
7477where c like '_ins%';
7478c	_ins
7479_ins: bool	1
7480_ins: uint	12
7481_ins: int	12
7482_ins: double	3
7483_ins: stringint	1
7484_ins: opaque_mysql_type_decimal	3
7485_ins: opaque_mysql_type_varbinary	NULL
7486_ins: opaque_mysql_type_binary	NULL
7487_ins: opaque_mysql_type_string	NULL
7488_ins: opaque_mysql_type_var_string	NULL
7489_ins: bool	1
7490_ins: uint	12
7491_ins: int	12
7492_ins: double	3
7493_ins: stringint	1
7494_ins: opaque_mysql_type_decimal	3
7495_ins: opaque_mysql_type_varbinary	NULL
7496_ins: opaque_mysql_type_binary	NULL
7497_ins: opaque_mysql_type_string	NULL
7498_ins: opaque_mysql_type_var_string	NULL
7499_ins: bool	1
7500_ins: uint	12
7501_ins: int	12
7502_ins: double	3
7503_ins: stringint	1
7504_ins: opaque_mysql_type_decimal	3
7505_ins: opaque_mysql_type_varbinary	NULL
7506_ins: opaque_mysql_type_binary	NULL
7507_ins: opaque_mysql_type_string	NULL
7508_ins: opaque_mysql_type_var_string	NULL
7509select c, _inu from at
7510where c like '_inu%';
7511c	_inu
7512_inu: bool	1
7513_inu: uint	12
7514_inu: int	12
7515_inu: double	3
7516_inu: stringint	1
7517_inu: opaque_mysql_type_decimal	3
7518_inu: opaque_mysql_type_varbinary	NULL
7519_inu: opaque_mysql_type_binary	NULL
7520_inu: opaque_mysql_type_string	NULL
7521_inu: opaque_mysql_type_var_string	NULL
7522_inu: bool	1
7523_inu: uint	12
7524_inu: int	12
7525_inu: double	3
7526_inu: stringint	1
7527_inu: opaque_mysql_type_decimal	3
7528_inu: opaque_mysql_type_varbinary	NULL
7529_inu: opaque_mysql_type_binary	NULL
7530_inu: opaque_mysql_type_string	NULL
7531_inu: opaque_mysql_type_var_string	NULL
7532_inu: bool	1
7533_inu: uint	12
7534_inu: int	12
7535_inu: double	3
7536_inu: stringint	1
7537_inu: opaque_mysql_type_decimal	3
7538_inu: opaque_mysql_type_varbinary	NULL
7539_inu: opaque_mysql_type_binary	NULL
7540_inu: opaque_mysql_type_string	NULL
7541_inu: opaque_mysql_type_var_string	NULL
7542select c, _bis from at
7543where c like '_bis%';
7544c	_bis
7545_bis: bool	1
7546_bis: uint	12
7547_bis: int	12
7548_bis: double	3
7549_bis: stringint	1
7550_bis: opaque_mysql_type_decimal	3
7551_bis: opaque_mysql_type_varbinary	NULL
7552_bis: opaque_mysql_type_binary	NULL
7553_bis: opaque_mysql_type_string	NULL
7554_bis: opaque_mysql_type_var_string	NULL
7555_bis: bool	1
7556_bis: uint	12
7557_bis: int	12
7558_bis: double	3
7559_bis: stringint	1
7560_bis: opaque_mysql_type_decimal	3
7561_bis: opaque_mysql_type_varbinary	NULL
7562_bis: opaque_mysql_type_binary	NULL
7563_bis: opaque_mysql_type_string	NULL
7564_bis: opaque_mysql_type_var_string	NULL
7565_bis: bool	1
7566_bis: uint	12
7567_bis: int	12
7568_bis: double	3
7569_bis: stringint	1
7570_bis: opaque_mysql_type_decimal	3
7571_bis: opaque_mysql_type_varbinary	NULL
7572_bis: opaque_mysql_type_binary	NULL
7573_bis: opaque_mysql_type_string	NULL
7574_bis: opaque_mysql_type_var_string	NULL
7575select c, _biu from at
7576where c like '_biu%';
7577c	_biu
7578_biu: bool	1
7579_biu: uint	12
7580_biu: int	12
7581_biu: double	3
7582_biu: stringint	1
7583_biu: opaque_mysql_type_decimal	3
7584_biu: opaque_mysql_type_varbinary	NULL
7585_biu: opaque_mysql_type_binary	NULL
7586_biu: opaque_mysql_type_string	NULL
7587_biu: opaque_mysql_type_var_string	NULL
7588_biu: bool	1
7589_biu: uint	12
7590_biu: int	12
7591_biu: double	3
7592_biu: stringint	1
7593_biu: opaque_mysql_type_decimal	3
7594_biu: opaque_mysql_type_varbinary	NULL
7595_biu: opaque_mysql_type_binary	NULL
7596_biu: opaque_mysql_type_string	NULL
7597_biu: opaque_mysql_type_var_string	NULL
7598_biu: bool	1
7599_biu: uint	12
7600_biu: int	12
7601_biu: double	3
7602_biu: stringint	1
7603_biu: opaque_mysql_type_decimal	3
7604_biu: opaque_mysql_type_varbinary	NULL
7605_biu: opaque_mysql_type_binary	NULL
7606_biu: opaque_mysql_type_string	NULL
7607_biu: opaque_mysql_type_var_string	NULL
7608select c, _dec from at
7609where c like '_dec%';
7610c	_dec
7611_dec: bool	1.00
7612_dec: uint	12.00
7613_dec: int	12.00
7614_dec: double	3.14
7615_dec: stringint	1.00
7616_dec: stringdecimal	3.14
7617_dec: opaque_mysql_type_decimal	3.14
7618_dec: opaque_mysql_type_varbinary	NULL
7619_dec: opaque_mysql_type_binary	NULL
7620_dec: opaque_mysql_type_string	NULL
7621_dec: opaque_mysql_type_var_string	NULL
7622_dec: bool	1.00
7623_dec: uint	12.00
7624_dec: int	12.00
7625_dec: double	3.14
7626_dec: stringint	1.00
7627_dec: stringdecimal	3.14
7628_dec: opaque_mysql_type_decimal	3.14
7629_dec: opaque_mysql_type_varbinary	NULL
7630_dec: opaque_mysql_type_binary	NULL
7631_dec: opaque_mysql_type_string	NULL
7632_dec: opaque_mysql_type_var_string	NULL
7633_dec: bool	1.00
7634_dec: uint	12.00
7635_dec: int	12.00
7636_dec: double	3.14
7637_dec: stringint	1.00
7638_dec: stringdecimal	3.14
7639_dec: opaque_mysql_type_decimal	3.14
7640_dec: opaque_mysql_type_varbinary	NULL
7641_dec: opaque_mysql_type_binary	NULL
7642_dec: opaque_mysql_type_string	NULL
7643_dec: opaque_mysql_type_var_string	NULL
7644select c, _flo from at
7645where c like '_flo%';
7646c	_flo
7647_flo: bool	1
7648_flo: uint	12
7649_flo: int	12
7650_flo: double	3.14
7651_flo: stringint	1
7652_flo: stringdecimal	3.14
7653_flo: opaque_mysql_type_decimal	3.14
7654_flo: opaque_mysql_type_varbinary	NULL
7655_flo: opaque_mysql_type_binary	NULL
7656_flo: opaque_mysql_type_string	NULL
7657_flo: opaque_mysql_type_var_string	NULL
7658_flo: bool	1
7659_flo: uint	12
7660_flo: int	12
7661_flo: double	3.14
7662_flo: stringint	1
7663_flo: stringdecimal	3.14
7664_flo: opaque_mysql_type_decimal	3.14
7665_flo: opaque_mysql_type_varbinary	NULL
7666_flo: opaque_mysql_type_binary	NULL
7667_flo: opaque_mysql_type_string	NULL
7668_flo: opaque_mysql_type_var_string	NULL
7669_flo: bool	1
7670_flo: uint	12
7671_flo: int	12
7672_flo: double	3.14
7673_flo: stringint	1
7674_flo: stringdecimal	3.14
7675_flo: opaque_mysql_type_decimal	3.14
7676_flo: opaque_mysql_type_varbinary	NULL
7677_flo: opaque_mysql_type_binary	NULL
7678_flo: opaque_mysql_type_string	NULL
7679_flo: opaque_mysql_type_var_string	NULL
7680select c, _dou from at
7681where c like '_dou%';
7682c	_dou
7683_dou: bool	1
7684_dou: uint	12
7685_dou: int	12
7686_dou: double	3.14
7687_dou: stringint	1
7688_dou: stringdecimal	3.14
7689_dou: opaque_mysql_type_decimal	3.14
7690_dou: opaque_mysql_type_varbinary	NULL
7691_dou: opaque_mysql_type_binary	NULL
7692_dou: opaque_mysql_type_string	NULL
7693_dou: opaque_mysql_type_var_string	NULL
7694_dou: bool	1
7695_dou: uint	12
7696_dou: int	12
7697_dou: double	3.14
7698_dou: stringint	1
7699_dou: stringdecimal	3.14
7700_dou: opaque_mysql_type_decimal	3.14
7701_dou: opaque_mysql_type_varbinary	NULL
7702_dou: opaque_mysql_type_binary	NULL
7703_dou: opaque_mysql_type_string	NULL
7704_dou: opaque_mysql_type_var_string	NULL
7705_dou: bool	1
7706_dou: uint	12
7707_dou: int	12
7708_dou: double	3.14
7709_dou: stringint	1
7710_dou: stringdecimal	3.14
7711_dou: opaque_mysql_type_decimal	3.14
7712_dou: opaque_mysql_type_varbinary	NULL
7713_dou: opaque_mysql_type_binary	NULL
7714_dou: opaque_mysql_type_string	NULL
7715_dou: opaque_mysql_type_var_string	NULL
7716select c, _dat from at
7717where c like '_dat%';
7718c	_dat
7719_dat: opaque_mysql_type_date	--EXPECTED_DATE--
7720_dat: opaque_mysql_type_time	--DATE--
7721_dat: opaque_mysql_type_datetime	--EXPECTED_DATE--
7722_dat: opaque_mysql_type_varbinary	NULL
7723_dat: opaque_mysql_type_binary	NULL
7724_dat: opaque_mysql_type_string	NULL
7725_dat: opaque_mysql_type_var_string	NULL
7726_dat: opaque_mysql_type_var_string	NULL
7727_dat: opaque_mysql_type_date	--EXPECTED_DATE--
7728_dat: opaque_mysql_type_time	--DATE--
7729_dat: opaque_mysql_type_datetime	--EXPECTED_DATE--
7730_dat: opaque_mysql_type_varbinary	NULL
7731_dat: opaque_mysql_type_binary	NULL
7732_dat: opaque_mysql_type_string	NULL
7733_dat: opaque_mysql_type_var_string	NULL
7734_dat: opaque_mysql_type_var_string	NULL
7735_dat: opaque_mysql_type_date	--EXPECTED_DATE--
7736_dat: opaque_mysql_type_time	--DATE--
7737_dat: opaque_mysql_type_datetime	--EXPECTED_DATE--
7738_dat: opaque_mysql_type_varbinary	NULL
7739_dat: opaque_mysql_type_binary	NULL
7740_dat: opaque_mysql_type_string	NULL
7741_dat: opaque_mysql_type_var_string	NULL
7742_dat: opaque_mysql_type_var_string	NULL
7743select c, _dtt from at
7744where c like '_dtt%';
7745c	_dtt
7746_dtt: opaque_mysql_type_date	--DATETIME--
7747_dtt: opaque_mysql_type_time	--DATETIME--
7748_dtt: opaque_mysql_type_datetime	--EXPECTED_DATETIME--
7749_dtt: opaque_mysql_type_varbinary	NULL
7750_dtt: opaque_mysql_type_binary	NULL
7751_dtt: opaque_mysql_type_string	NULL
7752_dtt: opaque_mysql_type_date	--DATETIME--
7753_dtt: opaque_mysql_type_time	--DATETIME--
7754_dtt: opaque_mysql_type_datetime	--EXPECTED_DATETIME--
7755_dtt: opaque_mysql_type_varbinary	NULL
7756_dtt: opaque_mysql_type_binary	NULL
7757_dtt: opaque_mysql_type_string	NULL
7758_dtt: opaque_mysql_type_date	--DATETIME--
7759_dtt: opaque_mysql_type_time	--DATETIME--
7760_dtt: opaque_mysql_type_datetime	--EXPECTED_DATETIME--
7761_dtt: opaque_mysql_type_varbinary	NULL
7762_dtt: opaque_mysql_type_binary	NULL
7763_dtt: opaque_mysql_type_string	NULL
7764select c, _smp from at
7765where c like '_smp%';
7766c	_smp
7767_smp: opaque_mysql_type_date	--TIMESTAMP--
7768_smp: opaque_mysql_type_time	--TIMESTAMP--
7769_smp: opaque_mysql_type_datetime	--EXPECTED_TIMESTAMP--
7770_smp: opaque_mysql_type_varbinary	--TIMESTAMP--
7771_smp: opaque_mysql_type_binary	--TIMESTAMP--
7772_smp: opaque_mysql_type_string	--TIMESTAMP--
7773_smp: opaque_mysql_type_var_string	--TIMESTAMP--
7774_smp: opaque_mysql_type_date	--TIMESTAMP--
7775_smp: opaque_mysql_type_time	--TIMESTAMP--
7776_smp: opaque_mysql_type_datetime	--EXPECTED_TIMESTAMP--
7777_smp: opaque_mysql_type_varbinary	--TIMESTAMP--
7778_smp: opaque_mysql_type_binary	--TIMESTAMP--
7779_smp: opaque_mysql_type_string	--TIMESTAMP--
7780_smp: opaque_mysql_type_var_string	--TIMESTAMP--
7781_smp: opaque_mysql_type_date	--TIMESTAMP--
7782_smp: opaque_mysql_type_time	--TIMESTAMP--
7783_smp: opaque_mysql_type_datetime	--EXPECTED_TIMESTAMP--
7784_smp: opaque_mysql_type_varbinary	--TIMESTAMP--
7785_smp: opaque_mysql_type_binary	--TIMESTAMP--
7786_smp: opaque_mysql_type_string	--TIMESTAMP--
7787_smp: opaque_mysql_type_var_string	--TIMESTAMP--
7788select c, _tim from at
7789where c like '_tim%';
7790c	_tim
7791_tim: opaque_mysql_type_date	--TIME--
7792_tim: opaque_mysql_type_time	--EXPECTED_TIME--
7793_tim: opaque_mysql_type_datetime	--EXPECTED_TIME--
7794_tim: opaque_mysql_type_varbinary	NULL
7795_tim: opaque_mysql_type_binary	NULL
7796_tim: opaque_mysql_type_string	NULL
7797_tim: opaque_mysql_type_var_string	NULL
7798_tim: opaque_mysql_type_date	--TIME--
7799_tim: opaque_mysql_type_time	--EXPECTED_TIME--
7800_tim: opaque_mysql_type_datetime	--EXPECTED_TIME--
7801_tim: opaque_mysql_type_varbinary	NULL
7802_tim: opaque_mysql_type_binary	NULL
7803_tim: opaque_mysql_type_string	NULL
7804_tim: opaque_mysql_type_var_string	NULL
7805_tim: opaque_mysql_type_date	--TIME--
7806_tim: opaque_mysql_type_time	--EXPECTED_TIME--
7807_tim: opaque_mysql_type_datetime	--EXPECTED_TIME--
7808_tim: opaque_mysql_type_varbinary	NULL
7809_tim: opaque_mysql_type_binary	NULL
7810_tim: opaque_mysql_type_string	NULL
7811_tim: opaque_mysql_type_var_string	NULL
7812select c, _yea from at
7813where c like '_yea%';
7814c	_yea
7815_yea: uint	2012
7816_yea: int	2012
7817_yea: double	2003
7818_yea: opaque_mysql_type_decimal	2003
7819_yea: opaque_mysql_type_varbinary	NULL
7820_yea: opaque_mysql_type_binary	NULL
7821_yea: opaque_mysql_type_string	NULL
7822_yea: opaque_mysql_type_var_string	NULL
7823_yea: uint	2012
7824_yea: int	2012
7825_yea: double	2003
7826_yea: opaque_mysql_type_decimal	2003
7827_yea: opaque_mysql_type_varbinary	NULL
7828_yea: opaque_mysql_type_binary	NULL
7829_yea: opaque_mysql_type_string	NULL
7830_yea: opaque_mysql_type_var_string	NULL
7831_yea: uint	2012
7832_yea: int	2012
7833_yea: double	2003
7834_yea: opaque_mysql_type_decimal	2003
7835_yea: opaque_mysql_type_varbinary	NULL
7836_yea: opaque_mysql_type_binary	NULL
7837_yea: opaque_mysql_type_string	NULL
7838_yea: opaque_mysql_type_var_string	NULL
7839select c, _jsn from at
7840where c like '_jsn%';
7841c	_jsn
7842_jsn: null	null
7843_jsn: bool	true
7844_jsn: uint	12
7845_jsn: int	12
7846_jsn: double	3.14
7847_jsn: stringany	"a"
7848_jsn: stringint	"1"
7849_jsn: stringdecimal	"3.14"
7850_jsn: object	{"a": 3}
7851_jsn: array	[1, 2]
7852_jsn: opaque_mysql_type_decimal	3.14
7853_jsn: opaque_mysql_type_set	"b,c"
7854_jsn: opaque_mysql_type_enum	"b"
7855_jsn: opaque_mysql_type_date	"2015-01-15"
7856_jsn: opaque_mysql_type_time	"23:24:25.000000"
7857_jsn: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
7858_jsn: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
7859_jsn: opaque_mysql_type_bit	"base64:type16:yv4="
7860_jsn: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
7861_jsn: opaque_mysql_type_blob	"base64:type252:yv66vg=="
7862_jsn: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
7863_jsn: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
7864_jsn: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
7865_jsn: opaque_mysql_type_varbinary	NULL
7866_jsn: opaque_mysql_type_binary	NULL
7867_jsn: opaque_mysql_type_varchar	"base64:type15:Zm9v"
7868_jsn: opaque_mysql_type_string	NULL
7869_jsn: opaque_mysql_type_var_string	NULL
7870_jsn: null	null
7871_jsn: bool	true
7872_jsn: uint	12
7873_jsn: int	12
7874_jsn: double	3.14
7875_jsn: stringany	"a"
7876_jsn: stringint	"1"
7877_jsn: stringdecimal	"3.14"
7878_jsn: object	{"a": 3}
7879_jsn: array	[1, 2]
7880_jsn: opaque_mysql_type_decimal	3.14
7881_jsn: opaque_mysql_type_set	"b,c"
7882_jsn: opaque_mysql_type_enum	"b"
7883_jsn: opaque_mysql_type_date	"2015-01-15"
7884_jsn: opaque_mysql_type_time	"23:24:25.000000"
7885_jsn: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
7886_jsn: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
7887_jsn: opaque_mysql_type_bit	"base64:type16:yv4="
7888_jsn: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
7889_jsn: opaque_mysql_type_blob	"base64:type252:yv66vg=="
7890_jsn: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
7891_jsn: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
7892_jsn: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
7893_jsn: opaque_mysql_type_varbinary	NULL
7894_jsn: opaque_mysql_type_binary	NULL
7895_jsn: opaque_mysql_type_varchar	"base64:type15:Zm9v"
7896_jsn: opaque_mysql_type_string	NULL
7897_jsn: opaque_mysql_type_var_string	NULL
7898_jsn: null	null
7899_jsn: bool	true
7900_jsn: uint	12
7901_jsn: int	12
7902_jsn: double	3.14
7903_jsn: stringany	"a"
7904_jsn: stringint	"1"
7905_jsn: stringdecimal	"3.14"
7906_jsn: object	{"a": 3}
7907_jsn: array	[1, 2]
7908_jsn: opaque_mysql_type_decimal	3.14
7909_jsn: opaque_mysql_type_set	"b,c"
7910_jsn: opaque_mysql_type_enum	"b"
7911_jsn: opaque_mysql_type_date	"2015-01-15"
7912_jsn: opaque_mysql_type_time	"23:24:25.000000"
7913_jsn: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
7914_jsn: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
7915_jsn: opaque_mysql_type_bit	"base64:type16:yv4="
7916_jsn: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
7917_jsn: opaque_mysql_type_blob	"base64:type252:yv66vg=="
7918_jsn: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
7919_jsn: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
7920_jsn: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
7921_jsn: opaque_mysql_type_varbinary	NULL
7922_jsn: opaque_mysql_type_binary	NULL
7923_jsn: opaque_mysql_type_varchar	"base64:type15:Zm9v"
7924_jsn: opaque_mysql_type_string	NULL
7925_jsn: opaque_mysql_type_var_string	NULL
7926select c, _chr from at
7927where c like '_chr%';
7928c	_chr
7929_chr: null	null
7930_chr: bool	true
7931_chr: uint	12
7932_chr: int	12
7933_chr: double	3.14
7934_chr: stringany	"a"
7935_chr: stringint	"1"
7936_chr: stringdecimal	"3.14"
7937_chr: object	{"a": 3}
7938_chr: array	[1, 2]
7939_chr: opaque_mysql_type_decimal	3.14
7940_chr: opaque_mysql_type_set	"b,c"
7941_chr: opaque_mysql_type_enum	"b"
7942_chr: opaque_mysql_type_date	"2015-01-15"
7943_chr: opaque_mysql_type_time	"23:24:25.000000"
7944_chr: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
7945_chr: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
7946_chr: opaque_mysql_type_bit	"base64:type16:yv4="
7947_chr: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
7948_chr: opaque_mysql_type_blob	"base64:type252:yv66vg=="
7949_chr: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
7950_chr: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
7951_chr: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
7952_chr: opaque_mysql_type_varbinary	NULL
7953_chr: opaque_mysql_type_binary	NULL
7954_chr: opaque_mysql_type_varchar	"base64:type15:Zm9v"
7955_chr: opaque_mysql_type_string	NULL
7956_chr: opaque_mysql_type_var_string	NULL
7957_chr: null	null
7958_chr: bool	true
7959_chr: uint	12
7960_chr: int	12
7961_chr: double	3.14
7962_chr: stringany	"a"
7963_chr: stringint	"1"
7964_chr: stringdecimal	"3.14"
7965_chr: object	{"a": 3}
7966_chr: array	[1, 2]
7967_chr: opaque_mysql_type_decimal	3.14
7968_chr: opaque_mysql_type_set	"b,c"
7969_chr: opaque_mysql_type_enum	"b"
7970_chr: opaque_mysql_type_date	"2015-01-15"
7971_chr: opaque_mysql_type_time	"23:24:25.000000"
7972_chr: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
7973_chr: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
7974_chr: opaque_mysql_type_bit	"base64:type16:yv4="
7975_chr: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
7976_chr: opaque_mysql_type_blob	"base64:type252:yv66vg=="
7977_chr: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
7978_chr: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
7979_chr: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
7980_chr: opaque_mysql_type_varbinary	NULL
7981_chr: opaque_mysql_type_binary	NULL
7982_chr: opaque_mysql_type_varchar	"base64:type15:Zm9v"
7983_chr: opaque_mysql_type_string	NULL
7984_chr: opaque_mysql_type_var_string	NULL
7985_chr: null	null
7986_chr: bool	true
7987_chr: uint	12
7988_chr: int	12
7989_chr: double	3.14
7990_chr: stringany	"a"
7991_chr: stringint	"1"
7992_chr: stringdecimal	"3.14"
7993_chr: object	{"a": 3}
7994_chr: array	[1, 2]
7995_chr: opaque_mysql_type_decimal	3.14
7996_chr: opaque_mysql_type_set	"b,c"
7997_chr: opaque_mysql_type_enum	"b"
7998_chr: opaque_mysql_type_date	"2015-01-15"
7999_chr: opaque_mysql_type_time	"23:24:25.000000"
8000_chr: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8001_chr: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8002_chr: opaque_mysql_type_bit	"base64:type16:yv4="
8003_chr: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8004_chr: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8005_chr: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8006_chr: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8007_chr: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8008_chr: opaque_mysql_type_varbinary	NULL
8009_chr: opaque_mysql_type_binary	NULL
8010_chr: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8011_chr: opaque_mysql_type_string	NULL
8012_chr: opaque_mysql_type_var_string	NULL
8013select c, _vch from at
8014where c like '_vch%';
8015c	_vch
8016_vch: null	null
8017_vch: bool	true
8018_vch: uint	12
8019_vch: int	12
8020_vch: double	3.14
8021_vch: stringany	"a"
8022_vch: stringint	"1"
8023_vch: stringdecimal	"3.14"
8024_vch: object	{"a": 3}
8025_vch: array	[1, 2]
8026_vch: opaque_mysql_type_decimal	3.14
8027_vch: opaque_mysql_type_set	"b,c"
8028_vch: opaque_mysql_type_enum	"b"
8029_vch: opaque_mysql_type_date	"2015-01-15"
8030_vch: opaque_mysql_type_time	"23:24:25.000000"
8031_vch: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8032_vch: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8033_vch: opaque_mysql_type_bit	"base64:type16:yv4="
8034_vch: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8035_vch: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8036_vch: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8037_vch: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8038_vch: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8039_vch: opaque_mysql_type_varbinary	NULL
8040_vch: opaque_mysql_type_binary	NULL
8041_vch: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8042_vch: opaque_mysql_type_string	NULL
8043_vch: opaque_mysql_type_var_string	NULL
8044_vch: null	null
8045_vch: bool	true
8046_vch: uint	12
8047_vch: int	12
8048_vch: double	3.14
8049_vch: stringany	"a"
8050_vch: stringint	"1"
8051_vch: stringdecimal	"3.14"
8052_vch: object	{"a": 3}
8053_vch: array	[1, 2]
8054_vch: opaque_mysql_type_decimal	3.14
8055_vch: opaque_mysql_type_set	"b,c"
8056_vch: opaque_mysql_type_enum	"b"
8057_vch: opaque_mysql_type_date	"2015-01-15"
8058_vch: opaque_mysql_type_time	"23:24:25.000000"
8059_vch: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8060_vch: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8061_vch: opaque_mysql_type_bit	"base64:type16:yv4="
8062_vch: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8063_vch: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8064_vch: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8065_vch: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8066_vch: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8067_vch: opaque_mysql_type_varbinary	NULL
8068_vch: opaque_mysql_type_binary	NULL
8069_vch: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8070_vch: opaque_mysql_type_string	NULL
8071_vch: opaque_mysql_type_var_string	NULL
8072_vch: null	null
8073_vch: bool	true
8074_vch: uint	12
8075_vch: int	12
8076_vch: double	3.14
8077_vch: stringany	"a"
8078_vch: stringint	"1"
8079_vch: stringdecimal	"3.14"
8080_vch: object	{"a": 3}
8081_vch: array	[1, 2]
8082_vch: opaque_mysql_type_decimal	3.14
8083_vch: opaque_mysql_type_set	"b,c"
8084_vch: opaque_mysql_type_enum	"b"
8085_vch: opaque_mysql_type_date	"2015-01-15"
8086_vch: opaque_mysql_type_time	"23:24:25.000000"
8087_vch: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8088_vch: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8089_vch: opaque_mysql_type_bit	"base64:type16:yv4="
8090_vch: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8091_vch: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8092_vch: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8093_vch: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8094_vch: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8095_vch: opaque_mysql_type_varbinary	NULL
8096_vch: opaque_mysql_type_binary	NULL
8097_vch: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8098_vch: opaque_mysql_type_string	NULL
8099_vch: opaque_mysql_type_var_string	NULL
8100select c, replace(_bin, '\0', '') from at
8101where c like '_bin%';
8102c	replace(_bin, '\0', '')
8103_bin: null	null
8104_bin: bool	true
8105_bin: uint	12
8106_bin: int	12
8107_bin: double	3.14
8108_bin: stringany	"a"
8109_bin: stringint	"1"
8110_bin: stringdecimal	"3.14"
8111_bin: object	{"a": 3}
8112_bin: array	[1, 2]
8113_bin: opaque_mysql_type_decimal	3.14
8114_bin: opaque_mysql_type_set	"b,c"
8115_bin: opaque_mysql_type_enum	"b"
8116_bin: opaque_mysql_type_date	"2015-01-15"
8117_bin: opaque_mysql_type_time	"23:24:25.000000"
8118_bin: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8119_bin: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8120_bin: opaque_mysql_type_bit	"base64:type16:yv4="
8121_bin: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8122_bin: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8123_bin: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8124_bin: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8125_bin: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8126_bin: opaque_mysql_type_varbinary	NULL
8127_bin: opaque_mysql_type_binary	NULL
8128_bin: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8129_bin: opaque_mysql_type_string	NULL
8130_bin: opaque_mysql_type_var_string	NULL
8131_bin: null	null
8132_bin: bool	true
8133_bin: uint	12
8134_bin: int	12
8135_bin: double	3.14
8136_bin: stringany	"a"
8137_bin: stringint	"1"
8138_bin: stringdecimal	"3.14"
8139_bin: object	{"a": 3}
8140_bin: array	[1, 2]
8141_bin: opaque_mysql_type_decimal	3.14
8142_bin: opaque_mysql_type_set	"b,c"
8143_bin: opaque_mysql_type_enum	"b"
8144_bin: opaque_mysql_type_date	"2015-01-15"
8145_bin: opaque_mysql_type_time	"23:24:25.000000"
8146_bin: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8147_bin: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8148_bin: opaque_mysql_type_bit	"base64:type16:yv4="
8149_bin: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8150_bin: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8151_bin: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8152_bin: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8153_bin: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8154_bin: opaque_mysql_type_varbinary	NULL
8155_bin: opaque_mysql_type_binary	NULL
8156_bin: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8157_bin: opaque_mysql_type_string	NULL
8158_bin: opaque_mysql_type_var_string	NULL
8159_bin: null	null
8160_bin: bool	true
8161_bin: uint	12
8162_bin: int	12
8163_bin: double	3.14
8164_bin: stringany	"a"
8165_bin: stringint	"1"
8166_bin: stringdecimal	"3.14"
8167_bin: object	{"a": 3}
8168_bin: array	[1, 2]
8169_bin: opaque_mysql_type_decimal	3.14
8170_bin: opaque_mysql_type_set	"b,c"
8171_bin: opaque_mysql_type_enum	"b"
8172_bin: opaque_mysql_type_date	"2015-01-15"
8173_bin: opaque_mysql_type_time	"23:24:25.000000"
8174_bin: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8175_bin: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8176_bin: opaque_mysql_type_bit	"base64:type16:yv4="
8177_bin: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8178_bin: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8179_bin: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8180_bin: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8181_bin: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8182_bin: opaque_mysql_type_varbinary	NULL
8183_bin: opaque_mysql_type_binary	NULL
8184_bin: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8185_bin: opaque_mysql_type_string	NULL
8186_bin: opaque_mysql_type_var_string	NULL
8187select c, _vbn from at
8188where c like '_vbn%';
8189c	_vbn
8190_vbn: null	null
8191_vbn: bool	true
8192_vbn: uint	12
8193_vbn: int	12
8194_vbn: double	3.14
8195_vbn: stringany	"a"
8196_vbn: stringint	"1"
8197_vbn: stringdecimal	"3.14"
8198_vbn: object	{"a": 3}
8199_vbn: array	[1, 2]
8200_vbn: opaque_mysql_type_decimal	3.14
8201_vbn: opaque_mysql_type_set	"b,c"
8202_vbn: opaque_mysql_type_enum	"b"
8203_vbn: opaque_mysql_type_date	"2015-01-15"
8204_vbn: opaque_mysql_type_time	"23:24:25.000000"
8205_vbn: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8206_vbn: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8207_vbn: opaque_mysql_type_bit	"base64:type16:yv4="
8208_vbn: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8209_vbn: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8210_vbn: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8211_vbn: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8212_vbn: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8213_vbn: opaque_mysql_type_varbinary	NULL
8214_vbn: opaque_mysql_type_binary	NULL
8215_vbn: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8216_vbn: opaque_mysql_type_string	NULL
8217_vbn: opaque_mysql_type_var_string	NULL
8218_vbn: null	null
8219_vbn: bool	true
8220_vbn: uint	12
8221_vbn: int	12
8222_vbn: double	3.14
8223_vbn: stringany	"a"
8224_vbn: stringint	"1"
8225_vbn: stringdecimal	"3.14"
8226_vbn: object	{"a": 3}
8227_vbn: array	[1, 2]
8228_vbn: opaque_mysql_type_decimal	3.14
8229_vbn: opaque_mysql_type_set	"b,c"
8230_vbn: opaque_mysql_type_enum	"b"
8231_vbn: opaque_mysql_type_date	"2015-01-15"
8232_vbn: opaque_mysql_type_time	"23:24:25.000000"
8233_vbn: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8234_vbn: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8235_vbn: opaque_mysql_type_bit	"base64:type16:yv4="
8236_vbn: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8237_vbn: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8238_vbn: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8239_vbn: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8240_vbn: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8241_vbn: opaque_mysql_type_varbinary	NULL
8242_vbn: opaque_mysql_type_binary	NULL
8243_vbn: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8244_vbn: opaque_mysql_type_string	NULL
8245_vbn: opaque_mysql_type_var_string	NULL
8246_vbn: null	null
8247_vbn: bool	true
8248_vbn: uint	12
8249_vbn: int	12
8250_vbn: double	3.14
8251_vbn: stringany	"a"
8252_vbn: stringint	"1"
8253_vbn: stringdecimal	"3.14"
8254_vbn: object	{"a": 3}
8255_vbn: array	[1, 2]
8256_vbn: opaque_mysql_type_decimal	3.14
8257_vbn: opaque_mysql_type_set	"b,c"
8258_vbn: opaque_mysql_type_enum	"b"
8259_vbn: opaque_mysql_type_date	"2015-01-15"
8260_vbn: opaque_mysql_type_time	"23:24:25.000000"
8261_vbn: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8262_vbn: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8263_vbn: opaque_mysql_type_bit	"base64:type16:yv4="
8264_vbn: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8265_vbn: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8266_vbn: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8267_vbn: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8268_vbn: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8269_vbn: opaque_mysql_type_varbinary	NULL
8270_vbn: opaque_mysql_type_binary	NULL
8271_vbn: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8272_vbn: opaque_mysql_type_string	NULL
8273_vbn: opaque_mysql_type_var_string	NULL
8274select c, _tbl from at
8275where c like '_tbl%';
8276c	_tbl
8277_tbl: null	null
8278_tbl: bool	true
8279_tbl: uint	12
8280_tbl: int	12
8281_tbl: double	3.14
8282_tbl: stringany	"a"
8283_tbl: stringint	"1"
8284_tbl: stringdecimal	"3.14"
8285_tbl: object	{"a": 3}
8286_tbl: array	[1, 2]
8287_tbl: opaque_mysql_type_decimal	3.14
8288_tbl: opaque_mysql_type_set	"b,c"
8289_tbl: opaque_mysql_type_enum	"b"
8290_tbl: opaque_mysql_type_date	"2015-01-15"
8291_tbl: opaque_mysql_type_time	"23:24:25.000000"
8292_tbl: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8293_tbl: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8294_tbl: opaque_mysql_type_bit	"base64:type16:yv4="
8295_tbl: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8296_tbl: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8297_tbl: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8298_tbl: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8299_tbl: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8300_tbl: opaque_mysql_type_varbinary	NULL
8301_tbl: opaque_mysql_type_binary	NULL
8302_tbl: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8303_tbl: opaque_mysql_type_string	NULL
8304_tbl: opaque_mysql_type_var_string	NULL
8305_tbl: null	null
8306_tbl: bool	true
8307_tbl: uint	12
8308_tbl: int	12
8309_tbl: double	3.14
8310_tbl: stringany	"a"
8311_tbl: stringint	"1"
8312_tbl: stringdecimal	"3.14"
8313_tbl: object	{"a": 3}
8314_tbl: array	[1, 2]
8315_tbl: opaque_mysql_type_decimal	3.14
8316_tbl: opaque_mysql_type_set	"b,c"
8317_tbl: opaque_mysql_type_enum	"b"
8318_tbl: opaque_mysql_type_date	"2015-01-15"
8319_tbl: opaque_mysql_type_time	"23:24:25.000000"
8320_tbl: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8321_tbl: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8322_tbl: opaque_mysql_type_bit	"base64:type16:yv4="
8323_tbl: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8324_tbl: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8325_tbl: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8326_tbl: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8327_tbl: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8328_tbl: opaque_mysql_type_varbinary	NULL
8329_tbl: opaque_mysql_type_binary	NULL
8330_tbl: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8331_tbl: opaque_mysql_type_string	NULL
8332_tbl: opaque_mysql_type_var_string	NULL
8333_tbl: null	null
8334_tbl: bool	true
8335_tbl: uint	12
8336_tbl: int	12
8337_tbl: double	3.14
8338_tbl: stringany	"a"
8339_tbl: stringint	"1"
8340_tbl: stringdecimal	"3.14"
8341_tbl: object	{"a": 3}
8342_tbl: array	[1, 2]
8343_tbl: opaque_mysql_type_decimal	3.14
8344_tbl: opaque_mysql_type_set	"b,c"
8345_tbl: opaque_mysql_type_enum	"b"
8346_tbl: opaque_mysql_type_date	"2015-01-15"
8347_tbl: opaque_mysql_type_time	"23:24:25.000000"
8348_tbl: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8349_tbl: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8350_tbl: opaque_mysql_type_bit	"base64:type16:yv4="
8351_tbl: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8352_tbl: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8353_tbl: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8354_tbl: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8355_tbl: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8356_tbl: opaque_mysql_type_varbinary	NULL
8357_tbl: opaque_mysql_type_binary	NULL
8358_tbl: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8359_tbl: opaque_mysql_type_string	NULL
8360_tbl: opaque_mysql_type_var_string	NULL
8361select c, _ttx from at
8362where c like '_ttx%';
8363c	_ttx
8364_ttx: null	null
8365_ttx: bool	true
8366_ttx: uint	12
8367_ttx: int	12
8368_ttx: double	3.14
8369_ttx: stringany	"a"
8370_ttx: stringint	"1"
8371_ttx: stringdecimal	"3.14"
8372_ttx: object	{"a": 3}
8373_ttx: array	[1, 2]
8374_ttx: opaque_mysql_type_decimal	3.14
8375_ttx: opaque_mysql_type_set	"b,c"
8376_ttx: opaque_mysql_type_enum	"b"
8377_ttx: opaque_mysql_type_date	"2015-01-15"
8378_ttx: opaque_mysql_type_time	"23:24:25.000000"
8379_ttx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8380_ttx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8381_ttx: opaque_mysql_type_bit	"base64:type16:yv4="
8382_ttx: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8383_ttx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8384_ttx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8385_ttx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8386_ttx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8387_ttx: opaque_mysql_type_varbinary	NULL
8388_ttx: opaque_mysql_type_binary	NULL
8389_ttx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8390_ttx: opaque_mysql_type_string	NULL
8391_ttx: opaque_mysql_type_var_string	NULL
8392_ttx: null	null
8393_ttx: bool	true
8394_ttx: uint	12
8395_ttx: int	12
8396_ttx: double	3.14
8397_ttx: stringany	"a"
8398_ttx: stringint	"1"
8399_ttx: stringdecimal	"3.14"
8400_ttx: object	{"a": 3}
8401_ttx: array	[1, 2]
8402_ttx: opaque_mysql_type_decimal	3.14
8403_ttx: opaque_mysql_type_set	"b,c"
8404_ttx: opaque_mysql_type_enum	"b"
8405_ttx: opaque_mysql_type_date	"2015-01-15"
8406_ttx: opaque_mysql_type_time	"23:24:25.000000"
8407_ttx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8408_ttx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8409_ttx: opaque_mysql_type_bit	"base64:type16:yv4="
8410_ttx: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8411_ttx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8412_ttx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8413_ttx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8414_ttx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8415_ttx: opaque_mysql_type_varbinary	NULL
8416_ttx: opaque_mysql_type_binary	NULL
8417_ttx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8418_ttx: opaque_mysql_type_string	NULL
8419_ttx: opaque_mysql_type_var_string	NULL
8420_ttx: null	null
8421_ttx: bool	true
8422_ttx: uint	12
8423_ttx: int	12
8424_ttx: double	3.14
8425_ttx: stringany	"a"
8426_ttx: stringint	"1"
8427_ttx: stringdecimal	"3.14"
8428_ttx: object	{"a": 3}
8429_ttx: array	[1, 2]
8430_ttx: opaque_mysql_type_decimal	3.14
8431_ttx: opaque_mysql_type_set	"b,c"
8432_ttx: opaque_mysql_type_enum	"b"
8433_ttx: opaque_mysql_type_date	"2015-01-15"
8434_ttx: opaque_mysql_type_time	"23:24:25.000000"
8435_ttx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8436_ttx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8437_ttx: opaque_mysql_type_bit	"base64:type16:yv4="
8438_ttx: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8439_ttx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8440_ttx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8441_ttx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8442_ttx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8443_ttx: opaque_mysql_type_varbinary	NULL
8444_ttx: opaque_mysql_type_binary	NULL
8445_ttx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8446_ttx: opaque_mysql_type_string	NULL
8447_ttx: opaque_mysql_type_var_string	NULL
8448select c, _blb from at
8449where c like '_blb%';
8450c	_blb
8451_blb: null	null
8452_blb: bool	true
8453_blb: uint	12
8454_blb: int	12
8455_blb: double	3.14
8456_blb: stringany	"a"
8457_blb: stringint	"1"
8458_blb: stringdecimal	"3.14"
8459_blb: object	{"a": 3}
8460_blb: array	[1, 2]
8461_blb: opaque_mysql_type_decimal	3.14
8462_blb: opaque_mysql_type_set	"b,c"
8463_blb: opaque_mysql_type_enum	"b"
8464_blb: opaque_mysql_type_date	"2015-01-15"
8465_blb: opaque_mysql_type_time	"23:24:25.000000"
8466_blb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8467_blb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8468_blb: opaque_mysql_type_bit	"base64:type16:yv4="
8469_blb: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8470_blb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8471_blb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8472_blb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8473_blb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8474_blb: opaque_mysql_type_varbinary	NULL
8475_blb: opaque_mysql_type_binary	NULL
8476_blb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8477_blb: opaque_mysql_type_string	NULL
8478_blb: opaque_mysql_type_var_string	NULL
8479_blb: null	null
8480_blb: bool	true
8481_blb: uint	12
8482_blb: int	12
8483_blb: double	3.14
8484_blb: stringany	"a"
8485_blb: stringint	"1"
8486_blb: stringdecimal	"3.14"
8487_blb: object	{"a": 3}
8488_blb: array	[1, 2]
8489_blb: opaque_mysql_type_decimal	3.14
8490_blb: opaque_mysql_type_set	"b,c"
8491_blb: opaque_mysql_type_enum	"b"
8492_blb: opaque_mysql_type_date	"2015-01-15"
8493_blb: opaque_mysql_type_time	"23:24:25.000000"
8494_blb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8495_blb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8496_blb: opaque_mysql_type_bit	"base64:type16:yv4="
8497_blb: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8498_blb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8499_blb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8500_blb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8501_blb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8502_blb: opaque_mysql_type_varbinary	NULL
8503_blb: opaque_mysql_type_binary	NULL
8504_blb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8505_blb: opaque_mysql_type_string	NULL
8506_blb: opaque_mysql_type_var_string	NULL
8507_blb: null	null
8508_blb: bool	true
8509_blb: uint	12
8510_blb: int	12
8511_blb: double	3.14
8512_blb: stringany	"a"
8513_blb: stringint	"1"
8514_blb: stringdecimal	"3.14"
8515_blb: object	{"a": 3}
8516_blb: array	[1, 2]
8517_blb: opaque_mysql_type_decimal	3.14
8518_blb: opaque_mysql_type_set	"b,c"
8519_blb: opaque_mysql_type_enum	"b"
8520_blb: opaque_mysql_type_date	"2015-01-15"
8521_blb: opaque_mysql_type_time	"23:24:25.000000"
8522_blb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8523_blb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8524_blb: opaque_mysql_type_bit	"base64:type16:yv4="
8525_blb: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8526_blb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8527_blb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8528_blb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8529_blb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8530_blb: opaque_mysql_type_varbinary	NULL
8531_blb: opaque_mysql_type_binary	NULL
8532_blb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8533_blb: opaque_mysql_type_string	NULL
8534_blb: opaque_mysql_type_var_string	NULL
8535select c, _txt from at
8536where c like '_txt%';
8537c	_txt
8538_txt: null	null
8539_txt: bool	true
8540_txt: uint	12
8541_txt: int	12
8542_txt: double	3.14
8543_txt: stringany	"a"
8544_txt: stringint	"1"
8545_txt: stringdecimal	"3.14"
8546_txt: object	{"a": 3}
8547_txt: array	[1, 2]
8548_txt: opaque_mysql_type_decimal	3.14
8549_txt: opaque_mysql_type_set	"b,c"
8550_txt: opaque_mysql_type_enum	"b"
8551_txt: opaque_mysql_type_date	"2015-01-15"
8552_txt: opaque_mysql_type_time	"23:24:25.000000"
8553_txt: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8554_txt: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8555_txt: opaque_mysql_type_bit	"base64:type16:yv4="
8556_txt: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8557_txt: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8558_txt: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8559_txt: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8560_txt: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8561_txt: opaque_mysql_type_varbinary	NULL
8562_txt: opaque_mysql_type_binary	NULL
8563_txt: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8564_txt: opaque_mysql_type_string	NULL
8565_txt: opaque_mysql_type_var_string	NULL
8566_txt: null	null
8567_txt: bool	true
8568_txt: uint	12
8569_txt: int	12
8570_txt: double	3.14
8571_txt: stringany	"a"
8572_txt: stringint	"1"
8573_txt: stringdecimal	"3.14"
8574_txt: object	{"a": 3}
8575_txt: array	[1, 2]
8576_txt: opaque_mysql_type_decimal	3.14
8577_txt: opaque_mysql_type_set	"b,c"
8578_txt: opaque_mysql_type_enum	"b"
8579_txt: opaque_mysql_type_date	"2015-01-15"
8580_txt: opaque_mysql_type_time	"23:24:25.000000"
8581_txt: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8582_txt: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8583_txt: opaque_mysql_type_bit	"base64:type16:yv4="
8584_txt: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8585_txt: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8586_txt: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8587_txt: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8588_txt: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8589_txt: opaque_mysql_type_varbinary	NULL
8590_txt: opaque_mysql_type_binary	NULL
8591_txt: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8592_txt: opaque_mysql_type_string	NULL
8593_txt: opaque_mysql_type_var_string	NULL
8594_txt: null	null
8595_txt: bool	true
8596_txt: uint	12
8597_txt: int	12
8598_txt: double	3.14
8599_txt: stringany	"a"
8600_txt: stringint	"1"
8601_txt: stringdecimal	"3.14"
8602_txt: object	{"a": 3}
8603_txt: array	[1, 2]
8604_txt: opaque_mysql_type_decimal	3.14
8605_txt: opaque_mysql_type_set	"b,c"
8606_txt: opaque_mysql_type_enum	"b"
8607_txt: opaque_mysql_type_date	"2015-01-15"
8608_txt: opaque_mysql_type_time	"23:24:25.000000"
8609_txt: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8610_txt: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8611_txt: opaque_mysql_type_bit	"base64:type16:yv4="
8612_txt: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8613_txt: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8614_txt: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8615_txt: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8616_txt: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8617_txt: opaque_mysql_type_varbinary	NULL
8618_txt: opaque_mysql_type_binary	NULL
8619_txt: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8620_txt: opaque_mysql_type_string	NULL
8621_txt: opaque_mysql_type_var_string	NULL
8622select c, _mbb from at
8623where c like '_mbb%';
8624c	_mbb
8625_mbb: null	null
8626_mbb: bool	true
8627_mbb: uint	12
8628_mbb: int	12
8629_mbb: double	3.14
8630_mbb: stringany	"a"
8631_mbb: stringint	"1"
8632_mbb: stringdecimal	"3.14"
8633_mbb: object	{"a": 3}
8634_mbb: array	[1, 2]
8635_mbb: opaque_mysql_type_decimal	3.14
8636_mbb: opaque_mysql_type_set	"b,c"
8637_mbb: opaque_mysql_type_enum	"b"
8638_mbb: opaque_mysql_type_date	"2015-01-15"
8639_mbb: opaque_mysql_type_time	"23:24:25.000000"
8640_mbb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8641_mbb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8642_mbb: opaque_mysql_type_bit	"base64:type16:yv4="
8643_mbb: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8644_mbb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8645_mbb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8646_mbb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8647_mbb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8648_mbb: opaque_mysql_type_varbinary	NULL
8649_mbb: opaque_mysql_type_binary	NULL
8650_mbb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8651_mbb: opaque_mysql_type_string	NULL
8652_mbb: opaque_mysql_type_var_string	NULL
8653_mbb: null	null
8654_mbb: bool	true
8655_mbb: uint	12
8656_mbb: int	12
8657_mbb: double	3.14
8658_mbb: stringany	"a"
8659_mbb: stringint	"1"
8660_mbb: stringdecimal	"3.14"
8661_mbb: object	{"a": 3}
8662_mbb: array	[1, 2]
8663_mbb: opaque_mysql_type_decimal	3.14
8664_mbb: opaque_mysql_type_set	"b,c"
8665_mbb: opaque_mysql_type_enum	"b"
8666_mbb: opaque_mysql_type_date	"2015-01-15"
8667_mbb: opaque_mysql_type_time	"23:24:25.000000"
8668_mbb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8669_mbb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8670_mbb: opaque_mysql_type_bit	"base64:type16:yv4="
8671_mbb: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8672_mbb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8673_mbb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8674_mbb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8675_mbb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8676_mbb: opaque_mysql_type_varbinary	NULL
8677_mbb: opaque_mysql_type_binary	NULL
8678_mbb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8679_mbb: opaque_mysql_type_string	NULL
8680_mbb: opaque_mysql_type_var_string	NULL
8681_mbb: null	null
8682_mbb: bool	true
8683_mbb: uint	12
8684_mbb: int	12
8685_mbb: double	3.14
8686_mbb: stringany	"a"
8687_mbb: stringint	"1"
8688_mbb: stringdecimal	"3.14"
8689_mbb: object	{"a": 3}
8690_mbb: array	[1, 2]
8691_mbb: opaque_mysql_type_decimal	3.14
8692_mbb: opaque_mysql_type_set	"b,c"
8693_mbb: opaque_mysql_type_enum	"b"
8694_mbb: opaque_mysql_type_date	"2015-01-15"
8695_mbb: opaque_mysql_type_time	"23:24:25.000000"
8696_mbb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8697_mbb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8698_mbb: opaque_mysql_type_bit	"base64:type16:yv4="
8699_mbb: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8700_mbb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8701_mbb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8702_mbb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8703_mbb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8704_mbb: opaque_mysql_type_varbinary	NULL
8705_mbb: opaque_mysql_type_binary	NULL
8706_mbb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8707_mbb: opaque_mysql_type_string	NULL
8708_mbb: opaque_mysql_type_var_string	NULL
8709select c, _mtx from at
8710where c like '_mtx%';
8711c	_mtx
8712_mtx: null	null
8713_mtx: bool	true
8714_mtx: uint	12
8715_mtx: int	12
8716_mtx: double	3.14
8717_mtx: stringany	"a"
8718_mtx: stringint	"1"
8719_mtx: stringdecimal	"3.14"
8720_mtx: object	{"a": 3}
8721_mtx: array	[1, 2]
8722_mtx: opaque_mysql_type_decimal	3.14
8723_mtx: opaque_mysql_type_set	"b,c"
8724_mtx: opaque_mysql_type_enum	"b"
8725_mtx: opaque_mysql_type_date	"2015-01-15"
8726_mtx: opaque_mysql_type_time	"23:24:25.000000"
8727_mtx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8728_mtx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8729_mtx: opaque_mysql_type_bit	"base64:type16:yv4="
8730_mtx: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8731_mtx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8732_mtx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8733_mtx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8734_mtx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8735_mtx: opaque_mysql_type_varbinary	NULL
8736_mtx: opaque_mysql_type_binary	NULL
8737_mtx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8738_mtx: opaque_mysql_type_string	NULL
8739_mtx: opaque_mysql_type_var_string	NULL
8740_mtx: null	null
8741_mtx: bool	true
8742_mtx: uint	12
8743_mtx: int	12
8744_mtx: double	3.14
8745_mtx: stringany	"a"
8746_mtx: stringint	"1"
8747_mtx: stringdecimal	"3.14"
8748_mtx: object	{"a": 3}
8749_mtx: array	[1, 2]
8750_mtx: opaque_mysql_type_decimal	3.14
8751_mtx: opaque_mysql_type_set	"b,c"
8752_mtx: opaque_mysql_type_enum	"b"
8753_mtx: opaque_mysql_type_date	"2015-01-15"
8754_mtx: opaque_mysql_type_time	"23:24:25.000000"
8755_mtx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8756_mtx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8757_mtx: opaque_mysql_type_bit	"base64:type16:yv4="
8758_mtx: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8759_mtx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8760_mtx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8761_mtx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8762_mtx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8763_mtx: opaque_mysql_type_varbinary	NULL
8764_mtx: opaque_mysql_type_binary	NULL
8765_mtx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8766_mtx: opaque_mysql_type_string	NULL
8767_mtx: opaque_mysql_type_var_string	NULL
8768_mtx: null	null
8769_mtx: bool	true
8770_mtx: uint	12
8771_mtx: int	12
8772_mtx: double	3.14
8773_mtx: stringany	"a"
8774_mtx: stringint	"1"
8775_mtx: stringdecimal	"3.14"
8776_mtx: object	{"a": 3}
8777_mtx: array	[1, 2]
8778_mtx: opaque_mysql_type_decimal	3.14
8779_mtx: opaque_mysql_type_set	"b,c"
8780_mtx: opaque_mysql_type_enum	"b"
8781_mtx: opaque_mysql_type_date	"2015-01-15"
8782_mtx: opaque_mysql_type_time	"23:24:25.000000"
8783_mtx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8784_mtx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8785_mtx: opaque_mysql_type_bit	"base64:type16:yv4="
8786_mtx: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8787_mtx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8788_mtx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8789_mtx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8790_mtx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8791_mtx: opaque_mysql_type_varbinary	NULL
8792_mtx: opaque_mysql_type_binary	NULL
8793_mtx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8794_mtx: opaque_mysql_type_string	NULL
8795_mtx: opaque_mysql_type_var_string	NULL
8796select c, _lbb from at
8797where c like '_lbb%';
8798c	_lbb
8799_lbb: null	null
8800_lbb: bool	true
8801_lbb: uint	12
8802_lbb: int	12
8803_lbb: double	3.14
8804_lbb: stringany	"a"
8805_lbb: stringint	"1"
8806_lbb: stringdecimal	"3.14"
8807_lbb: object	{"a": 3}
8808_lbb: array	[1, 2]
8809_lbb: opaque_mysql_type_decimal	3.14
8810_lbb: opaque_mysql_type_set	"b,c"
8811_lbb: opaque_mysql_type_enum	"b"
8812_lbb: opaque_mysql_type_date	"2015-01-15"
8813_lbb: opaque_mysql_type_time	"23:24:25.000000"
8814_lbb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8815_lbb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8816_lbb: opaque_mysql_type_bit	"base64:type16:yv4="
8817_lbb: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8818_lbb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8819_lbb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8820_lbb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8821_lbb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8822_lbb: opaque_mysql_type_varbinary	NULL
8823_lbb: opaque_mysql_type_binary	NULL
8824_lbb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8825_lbb: opaque_mysql_type_string	NULL
8826_lbb: opaque_mysql_type_var_string	NULL
8827_lbb: null	null
8828_lbb: bool	true
8829_lbb: uint	12
8830_lbb: int	12
8831_lbb: double	3.14
8832_lbb: stringany	"a"
8833_lbb: stringint	"1"
8834_lbb: stringdecimal	"3.14"
8835_lbb: object	{"a": 3}
8836_lbb: array	[1, 2]
8837_lbb: opaque_mysql_type_decimal	3.14
8838_lbb: opaque_mysql_type_set	"b,c"
8839_lbb: opaque_mysql_type_enum	"b"
8840_lbb: opaque_mysql_type_date	"2015-01-15"
8841_lbb: opaque_mysql_type_time	"23:24:25.000000"
8842_lbb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8843_lbb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8844_lbb: opaque_mysql_type_bit	"base64:type16:yv4="
8845_lbb: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8846_lbb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8847_lbb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8848_lbb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8849_lbb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8850_lbb: opaque_mysql_type_varbinary	NULL
8851_lbb: opaque_mysql_type_binary	NULL
8852_lbb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8853_lbb: opaque_mysql_type_string	NULL
8854_lbb: opaque_mysql_type_var_string	NULL
8855_lbb: null	null
8856_lbb: bool	true
8857_lbb: uint	12
8858_lbb: int	12
8859_lbb: double	3.14
8860_lbb: stringany	"a"
8861_lbb: stringint	"1"
8862_lbb: stringdecimal	"3.14"
8863_lbb: object	{"a": 3}
8864_lbb: array	[1, 2]
8865_lbb: opaque_mysql_type_decimal	3.14
8866_lbb: opaque_mysql_type_set	"b,c"
8867_lbb: opaque_mysql_type_enum	"b"
8868_lbb: opaque_mysql_type_date	"2015-01-15"
8869_lbb: opaque_mysql_type_time	"23:24:25.000000"
8870_lbb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8871_lbb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8872_lbb: opaque_mysql_type_bit	"base64:type16:yv4="
8873_lbb: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8874_lbb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8875_lbb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8876_lbb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8877_lbb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8878_lbb: opaque_mysql_type_varbinary	NULL
8879_lbb: opaque_mysql_type_binary	NULL
8880_lbb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8881_lbb: opaque_mysql_type_string	NULL
8882_lbb: opaque_mysql_type_var_string	NULL
8883select c, _ltx from at
8884where c like '_ltx%';
8885c	_ltx
8886_ltx: null	null
8887_ltx: bool	true
8888_ltx: uint	12
8889_ltx: int	12
8890_ltx: double	3.14
8891_ltx: stringany	"a"
8892_ltx: stringint	"1"
8893_ltx: stringdecimal	"3.14"
8894_ltx: object	{"a": 3}
8895_ltx: array	[1, 2]
8896_ltx: opaque_mysql_type_decimal	3.14
8897_ltx: opaque_mysql_type_set	"b,c"
8898_ltx: opaque_mysql_type_enum	"b"
8899_ltx: opaque_mysql_type_date	"2015-01-15"
8900_ltx: opaque_mysql_type_time	"23:24:25.000000"
8901_ltx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8902_ltx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8903_ltx: opaque_mysql_type_bit	"base64:type16:yv4="
8904_ltx: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8905_ltx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8906_ltx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8907_ltx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8908_ltx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8909_ltx: opaque_mysql_type_varbinary	NULL
8910_ltx: opaque_mysql_type_binary	NULL
8911_ltx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8912_ltx: opaque_mysql_type_string	NULL
8913_ltx: opaque_mysql_type_var_string	NULL
8914_ltx: null	null
8915_ltx: bool	true
8916_ltx: uint	12
8917_ltx: int	12
8918_ltx: double	3.14
8919_ltx: stringany	"a"
8920_ltx: stringint	"1"
8921_ltx: stringdecimal	"3.14"
8922_ltx: object	{"a": 3}
8923_ltx: array	[1, 2]
8924_ltx: opaque_mysql_type_decimal	3.14
8925_ltx: opaque_mysql_type_set	"b,c"
8926_ltx: opaque_mysql_type_enum	"b"
8927_ltx: opaque_mysql_type_date	"2015-01-15"
8928_ltx: opaque_mysql_type_time	"23:24:25.000000"
8929_ltx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8930_ltx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8931_ltx: opaque_mysql_type_bit	"base64:type16:yv4="
8932_ltx: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8933_ltx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8934_ltx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8935_ltx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8936_ltx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8937_ltx: opaque_mysql_type_varbinary	NULL
8938_ltx: opaque_mysql_type_binary	NULL
8939_ltx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8940_ltx: opaque_mysql_type_string	NULL
8941_ltx: opaque_mysql_type_var_string	NULL
8942_ltx: null	null
8943_ltx: bool	true
8944_ltx: uint	12
8945_ltx: int	12
8946_ltx: double	3.14
8947_ltx: stringany	"a"
8948_ltx: stringint	"1"
8949_ltx: stringdecimal	"3.14"
8950_ltx: object	{"a": 3}
8951_ltx: array	[1, 2]
8952_ltx: opaque_mysql_type_decimal	3.14
8953_ltx: opaque_mysql_type_set	"b,c"
8954_ltx: opaque_mysql_type_enum	"b"
8955_ltx: opaque_mysql_type_date	"2015-01-15"
8956_ltx: opaque_mysql_type_time	"23:24:25.000000"
8957_ltx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
8958_ltx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1, 1]}
8959_ltx: opaque_mysql_type_bit	"base64:type16:yv4="
8960_ltx: opaque_mysql_type_year	"base64:type13:MTk5Mg=="
8961_ltx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
8962_ltx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
8963_ltx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
8964_ltx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
8965_ltx: opaque_mysql_type_varbinary	NULL
8966_ltx: opaque_mysql_type_binary	NULL
8967_ltx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
8968_ltx: opaque_mysql_type_string	NULL
8969_ltx: opaque_mysql_type_var_string	NULL
8970select c, _enu from at
8971where c like '_enu%';
8972c	_enu
8973_enu: opaque_mysql_type_varbinary	NULL
8974_enu: opaque_mysql_type_binary	NULL
8975_enu: opaque_mysql_type_string	NULL
8976_enu: opaque_mysql_type_var_string	NULL
8977_enu: opaque_mysql_type_varbinary	NULL
8978_enu: opaque_mysql_type_binary	NULL
8979_enu: opaque_mysql_type_string	NULL
8980_enu: opaque_mysql_type_var_string	NULL
8981_enu: opaque_mysql_type_varbinary	NULL
8982_enu: opaque_mysql_type_binary	NULL
8983_enu: opaque_mysql_type_string	NULL
8984_enu: opaque_mysql_type_var_string	NULL
8985select c, _set from at
8986where c like '_set%';
8987c	_set
8988_set: opaque_mysql_type_varbinary	NULL
8989_set: opaque_mysql_type_binary	NULL
8990_set: opaque_mysql_type_string	NULL
8991_set: opaque_mysql_type_var_string	NULL
8992_set: opaque_mysql_type_varbinary	NULL
8993_set: opaque_mysql_type_binary	NULL
8994_set: opaque_mysql_type_string	NULL
8995_set: opaque_mysql_type_var_string	NULL
8996_set: opaque_mysql_type_varbinary	NULL
8997_set: opaque_mysql_type_binary	NULL
8998_set: opaque_mysql_type_string	NULL
8999_set: opaque_mysql_type_var_string	NULL
9000select c, _geo from at
9001where c like '_geo%';
9002c	_geo
9003_geo: opaque_mysql_type_varbinary	NULL
9004_geo: opaque_mysql_type_binary	NULL
9005_geo: opaque_mysql_type_string	NULL
9006_geo: opaque_mysql_type_var_string	NULL
9007_geo: opaque_mysql_type_varbinary	NULL
9008_geo: opaque_mysql_type_binary	NULL
9009_geo: opaque_mysql_type_string	NULL
9010_geo: opaque_mysql_type_var_string	NULL
9011_geo: opaque_mysql_type_varbinary	NULL
9012_geo: opaque_mysql_type_binary	NULL
9013_geo: opaque_mysql_type_string	NULL
9014_geo: opaque_mysql_type_var_string	NULL
9015select c, _pnt from at
9016where c like '_pnt%';
9017c	_pnt
9018_pnt: opaque_mysql_type_varbinary	NULL
9019_pnt: opaque_mysql_type_binary	NULL
9020_pnt: opaque_mysql_type_string	NULL
9021_pnt: opaque_mysql_type_var_string	NULL
9022_pnt: opaque_mysql_type_varbinary	NULL
9023_pnt: opaque_mysql_type_binary	NULL
9024_pnt: opaque_mysql_type_string	NULL
9025_pnt: opaque_mysql_type_var_string	NULL
9026_pnt: opaque_mysql_type_varbinary	NULL
9027_pnt: opaque_mysql_type_binary	NULL
9028_pnt: opaque_mysql_type_string	NULL
9029_pnt: opaque_mysql_type_var_string	NULL
9030select c, _lst from at
9031where c like '_lst%';
9032c	_lst
9033_lst: opaque_mysql_type_varbinary	NULL
9034_lst: opaque_mysql_type_binary	NULL
9035_lst: opaque_mysql_type_string	NULL
9036_lst: opaque_mysql_type_var_string	NULL
9037_lst: opaque_mysql_type_varbinary	NULL
9038_lst: opaque_mysql_type_binary	NULL
9039_lst: opaque_mysql_type_string	NULL
9040_lst: opaque_mysql_type_var_string	NULL
9041_lst: opaque_mysql_type_varbinary	NULL
9042_lst: opaque_mysql_type_binary	NULL
9043_lst: opaque_mysql_type_string	NULL
9044_lst: opaque_mysql_type_var_string	NULL
9045select c, _pol from at
9046where c like '_pol%';
9047c	_pol
9048_pol: opaque_mysql_type_varbinary	NULL
9049_pol: opaque_mysql_type_binary	NULL
9050_pol: opaque_mysql_type_string	NULL
9051_pol: opaque_mysql_type_var_string	NULL
9052_pol: opaque_mysql_type_varbinary	NULL
9053_pol: opaque_mysql_type_binary	NULL
9054_pol: opaque_mysql_type_string	NULL
9055_pol: opaque_mysql_type_var_string	NULL
9056_pol: opaque_mysql_type_varbinary	NULL
9057_pol: opaque_mysql_type_binary	NULL
9058_pol: opaque_mysql_type_string	NULL
9059_pol: opaque_mysql_type_var_string	NULL
9060select c, _mpt from at
9061where c like '_mpt%';
9062c	_mpt
9063_mpt: opaque_mysql_type_varbinary	NULL
9064_mpt: opaque_mysql_type_binary	NULL
9065_mpt: opaque_mysql_type_string	NULL
9066_mpt: opaque_mysql_type_var_string	NULL
9067_mpt: opaque_mysql_type_varbinary	NULL
9068_mpt: opaque_mysql_type_binary	NULL
9069_mpt: opaque_mysql_type_string	NULL
9070_mpt: opaque_mysql_type_var_string	NULL
9071_mpt: opaque_mysql_type_varbinary	NULL
9072_mpt: opaque_mysql_type_binary	NULL
9073_mpt: opaque_mysql_type_string	NULL
9074_mpt: opaque_mysql_type_var_string	NULL
9075select c, _mls from at
9076where c like '_mls%';
9077c	_mls
9078_mls: opaque_mysql_type_varbinary	NULL
9079_mls: opaque_mysql_type_binary	NULL
9080_mls: opaque_mysql_type_string	NULL
9081_mls: opaque_mysql_type_var_string	NULL
9082_mls: opaque_mysql_type_varbinary	NULL
9083_mls: opaque_mysql_type_binary	NULL
9084_mls: opaque_mysql_type_string	NULL
9085_mls: opaque_mysql_type_var_string	NULL
9086_mls: opaque_mysql_type_varbinary	NULL
9087_mls: opaque_mysql_type_binary	NULL
9088_mls: opaque_mysql_type_string	NULL
9089_mls: opaque_mysql_type_var_string	NULL
9090select c, _mpy from at
9091where c like '_mpy%';
9092c	_mpy
9093_mpy: opaque_mysql_type_varbinary	NULL
9094_mpy: opaque_mysql_type_binary	NULL
9095_mpy: opaque_mysql_type_string	NULL
9096_mpy: opaque_mysql_type_var_string	NULL
9097_mpy: opaque_mysql_type_varbinary	NULL
9098_mpy: opaque_mysql_type_binary	NULL
9099_mpy: opaque_mysql_type_string	NULL
9100_mpy: opaque_mysql_type_var_string	NULL
9101_mpy: opaque_mysql_type_varbinary	NULL
9102_mpy: opaque_mysql_type_binary	NULL
9103_mpy: opaque_mysql_type_string	NULL
9104_mpy: opaque_mysql_type_var_string	NULL
9105select c, _gco from at
9106where c like '_gco%';
9107c	_gco
9108_gco: opaque_mysql_type_varbinary	NULL
9109_gco: opaque_mysql_type_binary	NULL
9110_gco: opaque_mysql_type_string	NULL
9111_gco: opaque_mysql_type_var_string	NULL
9112_gco: opaque_mysql_type_varbinary	NULL
9113_gco: opaque_mysql_type_binary	NULL
9114_gco: opaque_mysql_type_string	NULL
9115_gco: opaque_mysql_type_var_string	NULL
9116_gco: opaque_mysql_type_varbinary	NULL
9117_gco: opaque_mysql_type_binary	NULL
9118_gco: opaque_mysql_type_string	NULL
9119_gco: opaque_mysql_type_var_string	NULL
9120# Explicit coercions (CAST)
9121# ----------------------------------------------------------------------
9122# CAST to BINARY[(N)]
9123# CAST to CHAR[(N)]
9124# CAST to DATE
9125# CAST to DATETIME
9126# CAST to TIME
9127# CAST to DECIMAL[(M[,D])]
9128# CAST to SIGNED [INTEGER]
9129# CAST to UNSIGNED [INTEGER]
9130# CAST to JSON
9131# ----------------------------------------------------------------------
9132#  C A S T   F R O M   J S O N   C O L U M N
9133# ----------------------------------------------------------------------
9134select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='null';
9135concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9136From JSON col null as BINARY(35)	null
9137select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='bool';
9138concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9139From JSON col bool as BINARY(35)	true
9140select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='uint';
9141concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9142From JSON col uint as BINARY(35)	12
9143select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='int';
9144concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9145From JSON col int as BINARY(35)	12
9146select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='double';
9147concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9148From JSON col double as BINARY(35)	3.14
9149select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='stringany';
9150concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9151From JSON col stringany as BINARY(35)	"a"
9152select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='stringint';
9153concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9154From JSON col stringint as BINARY(35)	"1"
9155select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='stringdecimal';
9156concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9157From JSON col stringdecimal as BINARY(35)	"3.14"
9158select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='object';
9159concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9160From JSON col object as BINARY(35)	{"a": 3}
9161select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='array';
9162concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9163From JSON col array as BINARY(35)	[1, 2]
9164select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_decimal';
9165concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9166From JSON col opaque_mysql_type_decimal as BINARY(35)	3.14
9167select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_set';
9168concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9169From JSON col opaque_mysql_type_set as BINARY(35)	"b,c"
9170select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_enum';
9171concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9172From JSON col opaque_mysql_type_enum as BINARY(35)	"b"
9173select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_date';
9174concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9175From JSON col opaque_mysql_type_date as BINARY(35)	"2015-01-15"
9176select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_time';
9177concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9178From JSON col opaque_mysql_type_time as BINARY(35)	"23:24:25.000000"
9179select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_datetime';
9180concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9181From JSON col opaque_mysql_type_datetime as BINARY(35)	"2015-01-15 23:24:25.000000"
9182select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_geom';
9183concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9184From JSON col opaque_mysql_type_geom as BINARY(35)	{"type": "Point", "coordinates": [1
9185Warnings:
9186Warning	1292	Truncated incorrect BINARY(35) value: '{"type": "Point", "coordinates": [1, 1]}'
9187select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_bit';
9188concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9189From JSON col opaque_mysql_type_bit as BINARY(35)	"base64:type16:yv4="
9190select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_year';
9191concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9192From JSON col opaque_mysql_type_year as BINARY(35)	"base64:type13:MTk5Mg=="
9193select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_year';
9194concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9195From JSON col opaque_mysql_type_year as BINARY(35)	"base64:type13:MTk5Mg=="
9196select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_blob';
9197concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9198From JSON col opaque_mysql_type_blob as BINARY(35)	"base64:type252:yv66vg=="
9199select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_longblob';
9200concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9201From JSON col opaque_mysql_type_longblob as BINARY(35)	"base64:type251:yv66vg=="
9202select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_mediumblob';
9203concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9204From JSON col opaque_mysql_type_mediumblob as BINARY(35)	"base64:type250:yv66vg=="
9205select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_tinyblob';
9206concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9207From JSON col opaque_mysql_type_tinyblob as BINARY(35)	"base64:type249:yv66vg=="
9208select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_varbinary';
9209concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9210From JSON col opaque_mysql_type_varbinary as BINARY(35)	NULL
9211select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_binary';
9212concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9213From JSON col opaque_mysql_type_binary as BINARY(35)	NULL
9214select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_varchar';
9215concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9216From JSON col opaque_mysql_type_varchar as BINARY(35)	"base64:type15:Zm9v"
9217select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_string';
9218concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9219From JSON col opaque_mysql_type_string as BINARY(35)	NULL
9220select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_var_string';
9221concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
9222From JSON col opaque_mysql_type_var_string as BINARY(35)	NULL
9223select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='null';
9224concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9225From JSON col null as CHAR(35))	null
9226select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='bool';
9227concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9228From JSON col bool as CHAR(35))	true
9229select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='uint';
9230concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9231From JSON col uint as CHAR(35))	12
9232select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='int';
9233concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9234From JSON col int as CHAR(35))	12
9235select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='double';
9236concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9237From JSON col double as CHAR(35))	3.14
9238select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='stringany';
9239concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9240From JSON col stringany as CHAR(35))	"a"
9241select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='stringint';
9242concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9243From JSON col stringint as CHAR(35))	"1"
9244select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='stringdecimal';
9245concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9246From JSON col stringdecimal as CHAR(35))	"3.14"
9247select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='object';
9248concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9249From JSON col object as CHAR(35))	{"a": 3}
9250select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='array';
9251concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9252From JSON col array as CHAR(35))	[1, 2]
9253select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_decimal';
9254concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9255From JSON col opaque_mysql_type_decimal as CHAR(35))	3.14
9256select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_set';
9257concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9258From JSON col opaque_mysql_type_set as CHAR(35))	"b,c"
9259select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_enum';
9260concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9261From JSON col opaque_mysql_type_enum as CHAR(35))	"b"
9262select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_date';
9263concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9264From JSON col opaque_mysql_type_date as CHAR(35))	"2015-01-15"
9265select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_time';
9266concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9267From JSON col opaque_mysql_type_time as CHAR(35))	"23:24:25.000000"
9268select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_datetime';
9269concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9270From JSON col opaque_mysql_type_datetime as CHAR(35))	"2015-01-15 23:24:25.000000"
9271select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_geom';
9272concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9273From JSON col opaque_mysql_type_geom as CHAR(35))	{"type": "Point", "coordinates": [1
9274Warnings:
9275Warning	1292	Truncated incorrect CHAR(35) value: '{"type": "Point", "coordinates": [1, 1]}'
9276select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_bit';
9277concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9278From JSON col opaque_mysql_type_bit as CHAR(35))	"base64:type16:yv4="
9279select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_year';
9280concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9281From JSON col opaque_mysql_type_year as CHAR(35))	"base64:type13:MTk5Mg=="
9282select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_year';
9283concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9284From JSON col opaque_mysql_type_year as CHAR(35))	"base64:type13:MTk5Mg=="
9285select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_blob';
9286concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9287From JSON col opaque_mysql_type_blob as CHAR(35))	"base64:type252:yv66vg=="
9288select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_longblob';
9289concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9290From JSON col opaque_mysql_type_longblob as CHAR(35))	"base64:type251:yv66vg=="
9291select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_mediumblob';
9292concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9293From JSON col opaque_mysql_type_mediumblob as CHAR(35))	"base64:type250:yv66vg=="
9294select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_tinyblob';
9295concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9296From JSON col opaque_mysql_type_tinyblob as CHAR(35))	"base64:type249:yv66vg=="
9297select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_varbinary';
9298concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9299From JSON col opaque_mysql_type_varbinary as CHAR(35))	NULL
9300select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_binary';
9301concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9302From JSON col opaque_mysql_type_binary as CHAR(35))	NULL
9303select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_varchar';
9304concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9305From JSON col opaque_mysql_type_varchar as CHAR(35))	"base64:type15:Zm9v"
9306select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_string';
9307concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9308From JSON col opaque_mysql_type_string as CHAR(35))	NULL
9309select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_var_string';
9310concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
9311From JSON col opaque_mysql_type_var_string as CHAR(35))	NULL
9312select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='null';
9313concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9314From JSON col null as DATE	NULL
9315Warnings:
9316Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
9317select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='bool';
9318concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9319From JSON col bool as DATE	NULL
9320Warnings:
9321Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
9322select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='uint';
9323concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9324From JSON col uint as DATE	NULL
9325Warnings:
9326Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3
9327select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='int';
9328concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9329From JSON col int as DATE	NULL
9330Warnings:
9331Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4
9332select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='double';
9333concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9334From JSON col double as DATE	NULL
9335Warnings:
9336Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5
9337select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='stringany';
9338concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9339From JSON col stringany as DATE	NULL
9340Warnings:
9341Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6
9342select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='stringint';
9343concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9344From JSON col stringint as DATE	NULL
9345Warnings:
9346Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7
9347select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='stringdecimal';
9348concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9349From JSON col stringdecimal as DATE	NULL
9350Warnings:
9351Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8
9352select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='object';
9353concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9354From JSON col object as DATE	NULL
9355Warnings:
9356Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9
9357select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='array';
9358concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9359From JSON col array as DATE	NULL
9360Warnings:
9361Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10
9362select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_decimal';
9363concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9364From JSON col opaque_mysql_type_decimal as DATE	NULL
9365Warnings:
9366Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11
9367select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_set';
9368concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9369From JSON col opaque_mysql_type_set as DATE	NULL
9370Warnings:
9371Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12
9372select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_enum';
9373concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9374From JSON col opaque_mysql_type_enum as DATE	NULL
9375Warnings:
9376Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13
9377select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_date';
9378concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9379From JSON col opaque_mysql_type_date as DATE	2015-01-15
9380select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_time';
9381concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9382From JSON col opaque_mysql_type_time as DATE	--DATE--
9383select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_datetime';
9384concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9385From JSON col opaque_mysql_type_datetime as DATE	2015-01-15
9386select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_geom';
9387concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9388From JSON col opaque_mysql_type_geom as DATE	NULL
9389Warnings:
9390Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17
9391select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_bit';
9392concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9393From JSON col opaque_mysql_type_bit as DATE	NULL
9394Warnings:
9395Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18
9396select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_year';
9397concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9398From JSON col opaque_mysql_type_year as DATE	NULL
9399Warnings:
9400Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19
9401select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_year';
9402concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9403From JSON col opaque_mysql_type_year as DATE	NULL
9404Warnings:
9405Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19
9406select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_blob';
9407concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9408From JSON col opaque_mysql_type_blob as DATE	NULL
9409Warnings:
9410Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20
9411select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_longblob';
9412concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9413From JSON col opaque_mysql_type_longblob as DATE	NULL
9414Warnings:
9415Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21
9416select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_mediumblob';
9417concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9418From JSON col opaque_mysql_type_mediumblob as DATE	NULL
9419Warnings:
9420Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22
9421select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_tinyblob';
9422concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9423From JSON col opaque_mysql_type_tinyblob as DATE	NULL
9424Warnings:
9425Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23
9426select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_varbinary';
9427concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9428From JSON col opaque_mysql_type_varbinary as DATE	NULL
9429select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_binary';
9430concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9431From JSON col opaque_mysql_type_binary as DATE	NULL
9432select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_varchar';
9433concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9434From JSON col opaque_mysql_type_varchar as DATE	NULL
9435Warnings:
9436Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26
9437select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_string';
9438concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9439From JSON col opaque_mysql_type_string as DATE	NULL
9440select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_var_string';
9441concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
9442From JSON col opaque_mysql_type_var_string as DATE	NULL
9443select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='null';
9444concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9445From JSON col null as DATETIME	NULL
9446Warnings:
9447Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
9448select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='bool';
9449concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9450From JSON col bool as DATETIME	NULL
9451Warnings:
9452Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
9453select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='uint';
9454concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9455From JSON col uint as DATETIME	NULL
9456Warnings:
9457Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3
9458select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='int';
9459concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9460From JSON col int as DATETIME	NULL
9461Warnings:
9462Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4
9463select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='double';
9464concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9465From JSON col double as DATETIME	NULL
9466Warnings:
9467Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5
9468select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='stringany';
9469concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9470From JSON col stringany as DATETIME	NULL
9471Warnings:
9472Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6
9473select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='stringint';
9474concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9475From JSON col stringint as DATETIME	NULL
9476Warnings:
9477Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7
9478select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='stringdecimal';
9479concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9480From JSON col stringdecimal as DATETIME	NULL
9481Warnings:
9482Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8
9483select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='object';
9484concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9485From JSON col object as DATETIME	NULL
9486Warnings:
9487Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9
9488select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='array';
9489concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9490From JSON col array as DATETIME	NULL
9491Warnings:
9492Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10
9493select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_decimal';
9494concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9495From JSON col opaque_mysql_type_decimal as DATETIME	NULL
9496Warnings:
9497Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11
9498select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_set';
9499concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9500From JSON col opaque_mysql_type_set as DATETIME	NULL
9501Warnings:
9502Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12
9503select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_enum';
9504concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9505From JSON col opaque_mysql_type_enum as DATETIME	NULL
9506Warnings:
9507Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13
9508select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_date';
9509concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9510From JSON col opaque_mysql_type_date as DATETIME	2015-01-15 00:00:00
9511select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_time';
9512concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9513From JSON col opaque_mysql_type_time as DATETIME	--DATE-- 23:24:25
9514select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_datetime';
9515concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9516From JSON col opaque_mysql_type_datetime as DATETIME	2015-01-15 23:24:25
9517select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_geom';
9518concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9519From JSON col opaque_mysql_type_geom as DATETIME	NULL
9520Warnings:
9521Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17
9522select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_bit';
9523concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9524From JSON col opaque_mysql_type_bit as DATETIME	NULL
9525Warnings:
9526Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18
9527select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_year';
9528concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9529From JSON col opaque_mysql_type_year as DATETIME	NULL
9530Warnings:
9531Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19
9532select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_year';
9533concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9534From JSON col opaque_mysql_type_year as DATETIME	NULL
9535Warnings:
9536Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19
9537select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_blob';
9538concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9539From JSON col opaque_mysql_type_blob as DATETIME	NULL
9540Warnings:
9541Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20
9542select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_longblob';
9543concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9544From JSON col opaque_mysql_type_longblob as DATETIME	NULL
9545Warnings:
9546Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21
9547select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_mediumblob';
9548concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9549From JSON col opaque_mysql_type_mediumblob as DATETIME	NULL
9550Warnings:
9551Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22
9552select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_tinyblob';
9553concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9554From JSON col opaque_mysql_type_tinyblob as DATETIME	NULL
9555Warnings:
9556Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23
9557select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_varbinary';
9558concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9559From JSON col opaque_mysql_type_varbinary as DATETIME	NULL
9560select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_binary';
9561concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9562From JSON col opaque_mysql_type_binary as DATETIME	NULL
9563select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_varchar';
9564concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9565From JSON col opaque_mysql_type_varchar as DATETIME	NULL
9566Warnings:
9567Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26
9568select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_string';
9569concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9570From JSON col opaque_mysql_type_string as DATETIME	NULL
9571select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_var_string';
9572concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
9573From JSON col opaque_mysql_type_var_string as DATETIME	NULL
9574select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='null';
9575concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9576From JSON col null as TIME	NULL
9577Warnings:
9578Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
9579select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='bool';
9580concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9581From JSON col bool as TIME	NULL
9582Warnings:
9583Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
9584select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='uint';
9585concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9586From JSON col uint as TIME	NULL
9587Warnings:
9588Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3
9589select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='int';
9590concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9591From JSON col int as TIME	NULL
9592Warnings:
9593Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4
9594select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='double';
9595concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9596From JSON col double as TIME	NULL
9597Warnings:
9598Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5
9599select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='stringany';
9600concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9601From JSON col stringany as TIME	NULL
9602Warnings:
9603Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6
9604select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='stringint';
9605concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9606From JSON col stringint as TIME	NULL
9607Warnings:
9608Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7
9609select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='stringdecimal';
9610concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9611From JSON col stringdecimal as TIME	NULL
9612Warnings:
9613Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8
9614select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='object';
9615concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9616From JSON col object as TIME	NULL
9617Warnings:
9618Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9
9619select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='array';
9620concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9621From JSON col array as TIME	NULL
9622Warnings:
9623Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10
9624select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_decimal';
9625concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9626From JSON col opaque_mysql_type_decimal as TIME	NULL
9627Warnings:
9628Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11
9629select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_set';
9630concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9631From JSON col opaque_mysql_type_set as TIME	NULL
9632Warnings:
9633Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12
9634select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_enum';
9635concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9636From JSON col opaque_mysql_type_enum as TIME	NULL
9637Warnings:
9638Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13
9639select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_date';
9640concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9641From JSON col opaque_mysql_type_date as TIME	00:00:00
9642select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_time';
9643concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9644From JSON col opaque_mysql_type_time as TIME	23:24:25
9645select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_datetime';
9646concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9647From JSON col opaque_mysql_type_datetime as TIME	23:24:25
9648select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_geom';
9649concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9650From JSON col opaque_mysql_type_geom as TIME	NULL
9651Warnings:
9652Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17
9653select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_bit';
9654concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9655From JSON col opaque_mysql_type_bit as TIME	NULL
9656Warnings:
9657Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18
9658select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_year';
9659concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9660From JSON col opaque_mysql_type_year as TIME	NULL
9661Warnings:
9662Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19
9663select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_year';
9664concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9665From JSON col opaque_mysql_type_year as TIME	NULL
9666Warnings:
9667Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19
9668select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_blob';
9669concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9670From JSON col opaque_mysql_type_blob as TIME	NULL
9671Warnings:
9672Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20
9673select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_longblob';
9674concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9675From JSON col opaque_mysql_type_longblob as TIME	NULL
9676Warnings:
9677Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21
9678select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_mediumblob';
9679concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9680From JSON col opaque_mysql_type_mediumblob as TIME	NULL
9681Warnings:
9682Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22
9683select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_tinyblob';
9684concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9685From JSON col opaque_mysql_type_tinyblob as TIME	NULL
9686Warnings:
9687Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23
9688select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_varbinary';
9689concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9690From JSON col opaque_mysql_type_varbinary as TIME	NULL
9691select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_binary';
9692concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9693From JSON col opaque_mysql_type_binary as TIME	NULL
9694select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_varchar';
9695concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9696From JSON col opaque_mysql_type_varchar as TIME	NULL
9697Warnings:
9698Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26
9699select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_string';
9700concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9701From JSON col opaque_mysql_type_string as TIME	NULL
9702select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_var_string';
9703concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
9704From JSON col opaque_mysql_type_var_string as TIME	NULL
9705select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='null';
9706concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9707From JSON col null as DECIMAL(5,2)	0.00
9708Warnings:
9709Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 1
9710select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='bool';
9711concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9712From JSON col bool as DECIMAL(5,2)	1.00
9713select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='uint';
9714concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9715From JSON col uint as DECIMAL(5,2)	12.00
9716select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='int';
9717concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9718From JSON col int as DECIMAL(5,2)	12.00
9719select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='double';
9720concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9721From JSON col double as DECIMAL(5,2)	3.14
9722select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='stringany';
9723concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9724From JSON col stringany as DECIMAL(5,2)	0.00
9725Warnings:
9726Warning	1366	Incorrect DECIMAL value: '0' for column '' at row -1
9727Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 6
9728select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='stringint';
9729concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9730From JSON col stringint as DECIMAL(5,2)	1.00
9731select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='stringdecimal';
9732concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9733From JSON col stringdecimal as DECIMAL(5,2)	3.14
9734select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='object';
9735concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9736From JSON col object as DECIMAL(5,2)	0.00
9737Warnings:
9738Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 9
9739select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='array';
9740concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9741From JSON col array as DECIMAL(5,2)	0.00
9742Warnings:
9743Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 10
9744select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_decimal';
9745concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9746From JSON col opaque_mysql_type_decimal as DECIMAL(5,2)	3.14
9747select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_set';
9748concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9749From JSON col opaque_mysql_type_set as DECIMAL(5,2)	0.00
9750Warnings:
9751Warning	1366	Incorrect DECIMAL value: '0' for column '' at row -1
9752Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 12
9753select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_enum';
9754concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9755From JSON col opaque_mysql_type_enum as DECIMAL(5,2)	0.00
9756Warnings:
9757Warning	1366	Incorrect DECIMAL value: '0' for column '' at row -1
9758Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 13
9759select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_date';
9760concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9761From JSON col opaque_mysql_type_date as DECIMAL(5,2)	0.00
9762Warnings:
9763Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 14
9764select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_time';
9765concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9766From JSON col opaque_mysql_type_time as DECIMAL(5,2)	0.00
9767Warnings:
9768Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 15
9769select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_datetime';
9770concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9771From JSON col opaque_mysql_type_datetime as DECIMAL(5,2)	0.00
9772Warnings:
9773Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 16
9774select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_geom';
9775concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9776From JSON col opaque_mysql_type_geom as DECIMAL(5,2)	0.00
9777Warnings:
9778Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 17
9779select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_bit';
9780concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9781From JSON col opaque_mysql_type_bit as DECIMAL(5,2)	0.00
9782Warnings:
9783Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 18
9784select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_year';
9785concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9786From JSON col opaque_mysql_type_year as DECIMAL(5,2)	0.00
9787Warnings:
9788Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 19
9789select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_year';
9790concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9791From JSON col opaque_mysql_type_year as DECIMAL(5,2)	0.00
9792Warnings:
9793Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 19
9794select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_blob';
9795concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9796From JSON col opaque_mysql_type_blob as DECIMAL(5,2)	0.00
9797Warnings:
9798Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 20
9799select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_longblob';
9800concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9801From JSON col opaque_mysql_type_longblob as DECIMAL(5,2)	0.00
9802Warnings:
9803Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 21
9804select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_mediumblob';
9805concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9806From JSON col opaque_mysql_type_mediumblob as DECIMAL(5,2)	0.00
9807Warnings:
9808Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 22
9809select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_tinyblob';
9810concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9811From JSON col opaque_mysql_type_tinyblob as DECIMAL(5,2)	0.00
9812Warnings:
9813Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 23
9814select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_varbinary';
9815concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9816From JSON col opaque_mysql_type_varbinary as DECIMAL(5,2)	NULL
9817select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_binary';
9818concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9819From JSON col opaque_mysql_type_binary as DECIMAL(5,2)	NULL
9820select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_varchar';
9821concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9822From JSON col opaque_mysql_type_varchar as DECIMAL(5,2)	0.00
9823Warnings:
9824Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 26
9825select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_string';
9826concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9827From JSON col opaque_mysql_type_string as DECIMAL(5,2)	NULL
9828select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_var_string';
9829concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
9830From JSON col opaque_mysql_type_var_string as DECIMAL(5,2)	NULL
9831select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='null';
9832concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9833From JSON col null as UNSIGNED	0
9834Warnings:
9835Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
9836select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='bool';
9837concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9838From JSON col bool as UNSIGNED	1
9839select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='uint';
9840concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9841From JSON col uint as UNSIGNED	12
9842select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='int';
9843concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9844From JSON col int as UNSIGNED	12
9845select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='double';
9846concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9847From JSON col double as UNSIGNED	3
9848select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='stringany';
9849concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9850From JSON col stringany as UNSIGNED	0
9851Warnings:
9852Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 6
9853select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='stringint';
9854concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9855From JSON col stringint as UNSIGNED	1
9856select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='stringdecimal';
9857concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9858From JSON col stringdecimal as UNSIGNED	3
9859Warnings:
9860Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 8
9861select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='object';
9862concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9863From JSON col object as UNSIGNED	0
9864Warnings:
9865Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 9
9866select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='array';
9867concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9868From JSON col array as UNSIGNED	0
9869Warnings:
9870Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 10
9871select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_decimal';
9872concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9873From JSON col opaque_mysql_type_decimal as UNSIGNED	3
9874select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_set';
9875concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9876From JSON col opaque_mysql_type_set as UNSIGNED	0
9877Warnings:
9878Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 12
9879select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_enum';
9880concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9881From JSON col opaque_mysql_type_enum as UNSIGNED	0
9882Warnings:
9883Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 13
9884select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_date';
9885concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9886From JSON col opaque_mysql_type_date as UNSIGNED	0
9887Warnings:
9888Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 14
9889select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_time';
9890concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9891From JSON col opaque_mysql_type_time as UNSIGNED	0
9892Warnings:
9893Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 15
9894select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_datetime';
9895concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9896From JSON col opaque_mysql_type_datetime as UNSIGNED	0
9897Warnings:
9898Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 16
9899select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_geom';
9900concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9901From JSON col opaque_mysql_type_geom as UNSIGNED	0
9902Warnings:
9903Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 17
9904select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_bit';
9905concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9906From JSON col opaque_mysql_type_bit as UNSIGNED	0
9907Warnings:
9908Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 18
9909select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_year';
9910concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9911From JSON col opaque_mysql_type_year as UNSIGNED	0
9912Warnings:
9913Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 19
9914select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_year';
9915concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9916From JSON col opaque_mysql_type_year as UNSIGNED	0
9917Warnings:
9918Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 19
9919select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_blob';
9920concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9921From JSON col opaque_mysql_type_blob as UNSIGNED	0
9922Warnings:
9923Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 20
9924select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_longblob';
9925concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9926From JSON col opaque_mysql_type_longblob as UNSIGNED	0
9927Warnings:
9928Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 21
9929select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_mediumblob';
9930concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9931From JSON col opaque_mysql_type_mediumblob as UNSIGNED	0
9932Warnings:
9933Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 22
9934select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_tinyblob';
9935concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9936From JSON col opaque_mysql_type_tinyblob as UNSIGNED	0
9937Warnings:
9938Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 23
9939select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_varbinary';
9940concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9941From JSON col opaque_mysql_type_varbinary as UNSIGNED	NULL
9942select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_binary';
9943concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9944From JSON col opaque_mysql_type_binary as UNSIGNED	NULL
9945select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_varchar';
9946concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9947From JSON col opaque_mysql_type_varchar as UNSIGNED	0
9948Warnings:
9949Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 26
9950select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_string';
9951concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9952From JSON col opaque_mysql_type_string as UNSIGNED	NULL
9953select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_var_string';
9954concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
9955From JSON col opaque_mysql_type_var_string as UNSIGNED	NULL
9956select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='null';
9957concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
9958From JSON col null as SIGNED	0
9959Warnings:
9960Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
9961select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='bool';
9962concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
9963From JSON col bool as SIGNED	1
9964select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='uint';
9965concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
9966From JSON col uint as SIGNED	12
9967select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='int';
9968concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
9969From JSON col int as SIGNED	12
9970select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='double';
9971concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
9972From JSON col double as SIGNED	3
9973select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='stringany';
9974concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
9975From JSON col stringany as SIGNED	0
9976Warnings:
9977Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 6
9978select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='stringint';
9979concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
9980From JSON col stringint as SIGNED	1
9981select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='stringdecimal';
9982concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
9983From JSON col stringdecimal as SIGNED	3
9984Warnings:
9985Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 8
9986select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='object';
9987concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
9988From JSON col object as SIGNED	0
9989Warnings:
9990Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 9
9991select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='array';
9992concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
9993From JSON col array as SIGNED	0
9994Warnings:
9995Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 10
9996select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_decimal';
9997concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
9998From JSON col opaque_mysql_type_decimal as SIGNED	3
9999select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_set';
10000concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10001From JSON col opaque_mysql_type_set as SIGNED	0
10002Warnings:
10003Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 12
10004select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_enum';
10005concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10006From JSON col opaque_mysql_type_enum as SIGNED	0
10007Warnings:
10008Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 13
10009select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_date';
10010concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10011From JSON col opaque_mysql_type_date as SIGNED	0
10012Warnings:
10013Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 14
10014select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_time';
10015concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10016From JSON col opaque_mysql_type_time as SIGNED	0
10017Warnings:
10018Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 15
10019select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_datetime';
10020concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10021From JSON col opaque_mysql_type_datetime as SIGNED	0
10022Warnings:
10023Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 16
10024select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_geom';
10025concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10026From JSON col opaque_mysql_type_geom as SIGNED	0
10027Warnings:
10028Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 17
10029select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_bit';
10030concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10031From JSON col opaque_mysql_type_bit as SIGNED	0
10032Warnings:
10033Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 18
10034select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_year';
10035concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10036From JSON col opaque_mysql_type_year as SIGNED	0
10037Warnings:
10038Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 19
10039select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_year';
10040concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10041From JSON col opaque_mysql_type_year as SIGNED	0
10042Warnings:
10043Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 19
10044select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_blob';
10045concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10046From JSON col opaque_mysql_type_blob as SIGNED	0
10047Warnings:
10048Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 20
10049select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_longblob';
10050concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10051From JSON col opaque_mysql_type_longblob as SIGNED	0
10052Warnings:
10053Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 21
10054select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_mediumblob';
10055concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10056From JSON col opaque_mysql_type_mediumblob as SIGNED	0
10057Warnings:
10058Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 22
10059select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_tinyblob';
10060concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10061From JSON col opaque_mysql_type_tinyblob as SIGNED	0
10062Warnings:
10063Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 23
10064select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_varbinary';
10065concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10066From JSON col opaque_mysql_type_varbinary as SIGNED	NULL
10067select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_binary';
10068concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10069From JSON col opaque_mysql_type_binary as SIGNED	NULL
10070select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_varchar';
10071concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10072From JSON col opaque_mysql_type_varchar as SIGNED	0
10073Warnings:
10074Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 26
10075select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_string';
10076concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10077From JSON col opaque_mysql_type_string as SIGNED	NULL
10078select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_var_string';
10079concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
10080From JSON col opaque_mysql_type_var_string as SIGNED	NULL
10081# ----------------------------------------------------------------------
10082#  C A S T   F R O M   J S O N   F U N C T I O N
10083# ----------------------------------------------------------------------
10084select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='null';
10085concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10086From JSON func null as BINARY(35)	null
10087select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='bool';
10088concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10089From JSON func bool as BINARY(35)	true
10090select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='uint';
10091concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10092From JSON func uint as BINARY(35)	12
10093select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='int';
10094concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10095From JSON func int as BINARY(35)	12
10096select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='double';
10097concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10098From JSON func double as BINARY(35)	3.14
10099select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='stringany';
10100concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10101From JSON func stringany as BINARY(35)	"a"
10102select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='stringint';
10103concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10104From JSON func stringint as BINARY(35)	"1"
10105select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='stringdecimal';
10106concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10107From JSON func stringdecimal as BINARY(35)	"3.14"
10108select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='object';
10109concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10110From JSON func object as BINARY(35)	{"a": 3}
10111select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='array';
10112concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10113From JSON func array as BINARY(35)	[1, 2]
10114select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_decimal';
10115concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10116From JSON func opaque_mysql_type_decimal as BINARY(35)	3.14
10117select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_set';
10118concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10119From JSON func opaque_mysql_type_set as BINARY(35)	"b,c"
10120select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_enum';
10121concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10122From JSON func opaque_mysql_type_enum as BINARY(35)	"b"
10123select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_date';
10124concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10125From JSON func opaque_mysql_type_date as BINARY(35)	"2015-01-15"
10126select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_time';
10127concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10128From JSON func opaque_mysql_type_time as BINARY(35)	"23:24:25.000000"
10129select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_datetime';
10130concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10131From JSON func opaque_mysql_type_datetime as BINARY(35)	"2015-01-15 23:24:25.000000"
10132select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_geom';
10133concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10134From JSON func opaque_mysql_type_geom as BINARY(35)	{"type": "Point", "coordinates": [1
10135Warnings:
10136Warning	1292	Truncated incorrect BINARY(35) value: '{"type": "Point", "coordinates": [1, 1]}'
10137select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_bit';
10138concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10139From JSON func opaque_mysql_type_bit as BINARY(35)	"base64:type16:yv4="
10140select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_year';
10141concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10142From JSON func opaque_mysql_type_year as BINARY(35)	"base64:type13:MTk5Mg=="
10143select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_year';
10144concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10145From JSON func opaque_mysql_type_year as BINARY(35)	"base64:type13:MTk5Mg=="
10146select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_blob';
10147concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10148From JSON func opaque_mysql_type_blob as BINARY(35)	"base64:type252:yv66vg=="
10149select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_longblob';
10150concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10151From JSON func opaque_mysql_type_longblob as BINARY(35)	"base64:type251:yv66vg=="
10152select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_mediumblob';
10153concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10154From JSON func opaque_mysql_type_mediumblob as BINARY(35)	"base64:type250:yv66vg=="
10155select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_tinyblob';
10156concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10157From JSON func opaque_mysql_type_tinyblob as BINARY(35)	"base64:type249:yv66vg=="
10158select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_varbinary';
10159concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10160From JSON func opaque_mysql_type_varbinary as BINARY(35)	NULL
10161select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_binary';
10162concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10163From JSON func opaque_mysql_type_binary as BINARY(35)	NULL
10164select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_varchar';
10165concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10166From JSON func opaque_mysql_type_varchar as BINARY(35)	"base64:type15:Zm9v"
10167select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_string';
10168concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10169From JSON func opaque_mysql_type_string as BINARY(35)	NULL
10170select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_var_string';
10171concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
10172From JSON func opaque_mysql_type_var_string as BINARY(35)	NULL
10173select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='null';
10174concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10175From JSON func null as CHAR(35))	null
10176select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='bool';
10177concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10178From JSON func bool as CHAR(35))	true
10179select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='uint';
10180concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10181From JSON func uint as CHAR(35))	12
10182select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='int';
10183concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10184From JSON func int as CHAR(35))	12
10185select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='double';
10186concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10187From JSON func double as CHAR(35))	3.14
10188select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='stringany';
10189concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10190From JSON func stringany as CHAR(35))	"a"
10191select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='stringint';
10192concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10193From JSON func stringint as CHAR(35))	"1"
10194select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='stringdecimal';
10195concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10196From JSON func stringdecimal as CHAR(35))	"3.14"
10197select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='object';
10198concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10199From JSON func object as CHAR(35))	{"a": 3}
10200select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='array';
10201concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10202From JSON func array as CHAR(35))	[1, 2]
10203select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_decimal';
10204concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10205From JSON func opaque_mysql_type_decimal as CHAR(35))	3.14
10206select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_set';
10207concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10208From JSON func opaque_mysql_type_set as CHAR(35))	"b,c"
10209select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_enum';
10210concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10211From JSON func opaque_mysql_type_enum as CHAR(35))	"b"
10212select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_date';
10213concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10214From JSON func opaque_mysql_type_date as CHAR(35))	"2015-01-15"
10215select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_time';
10216concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10217From JSON func opaque_mysql_type_time as CHAR(35))	"23:24:25.000000"
10218select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_datetime';
10219concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10220From JSON func opaque_mysql_type_datetime as CHAR(35))	"2015-01-15 23:24:25.000000"
10221select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_geom';
10222concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10223From JSON func opaque_mysql_type_geom as CHAR(35))	{"type": "Point", "coordinates": [1
10224Warnings:
10225Warning	1292	Truncated incorrect CHAR(35) value: '{"type": "Point", "coordinates": [1, 1]}'
10226select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_bit';
10227concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10228From JSON func opaque_mysql_type_bit as CHAR(35))	"base64:type16:yv4="
10229select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_year';
10230concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10231From JSON func opaque_mysql_type_year as CHAR(35))	"base64:type13:MTk5Mg=="
10232select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_year';
10233concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10234From JSON func opaque_mysql_type_year as CHAR(35))	"base64:type13:MTk5Mg=="
10235select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_blob';
10236concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10237From JSON func opaque_mysql_type_blob as CHAR(35))	"base64:type252:yv66vg=="
10238select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_longblob';
10239concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10240From JSON func opaque_mysql_type_longblob as CHAR(35))	"base64:type251:yv66vg=="
10241select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_mediumblob';
10242concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10243From JSON func opaque_mysql_type_mediumblob as CHAR(35))	"base64:type250:yv66vg=="
10244select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_tinyblob';
10245concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10246From JSON func opaque_mysql_type_tinyblob as CHAR(35))	"base64:type249:yv66vg=="
10247select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_varbinary';
10248concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10249From JSON func opaque_mysql_type_varbinary as CHAR(35))	NULL
10250select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_binary';
10251concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10252From JSON func opaque_mysql_type_binary as CHAR(35))	NULL
10253select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_varchar';
10254concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10255From JSON func opaque_mysql_type_varchar as CHAR(35))	"base64:type15:Zm9v"
10256select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_string';
10257concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10258From JSON func opaque_mysql_type_string as CHAR(35))	NULL
10259select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_var_string';
10260concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
10261From JSON func opaque_mysql_type_var_string as CHAR(35))	NULL
10262select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='null';
10263concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10264From JSON func null as DATE	NULL
10265Warnings:
10266Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
10267select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='bool';
10268concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10269From JSON func bool as DATE	NULL
10270Warnings:
10271Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2
10272select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='uint';
10273concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10274From JSON func uint as DATE	NULL
10275Warnings:
10276Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3
10277select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='int';
10278concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10279From JSON func int as DATE	NULL
10280Warnings:
10281Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4
10282select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='double';
10283concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10284From JSON func double as DATE	NULL
10285Warnings:
10286Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5
10287select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='stringany';
10288concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10289From JSON func stringany as DATE	NULL
10290Warnings:
10291Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6
10292select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='stringint';
10293concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10294From JSON func stringint as DATE	NULL
10295Warnings:
10296Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7
10297select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='stringdecimal';
10298concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10299From JSON func stringdecimal as DATE	NULL
10300Warnings:
10301Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8
10302select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='object';
10303concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10304From JSON func object as DATE	NULL
10305Warnings:
10306Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9
10307select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='array';
10308concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10309From JSON func array as DATE	NULL
10310Warnings:
10311Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10
10312select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_decimal';
10313concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10314From JSON func opaque_mysql_type_decimal as DATE	NULL
10315Warnings:
10316Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11
10317select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_set';
10318concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10319From JSON func opaque_mysql_type_set as DATE	NULL
10320Warnings:
10321Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12
10322select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_enum';
10323concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10324From JSON func opaque_mysql_type_enum as DATE	NULL
10325Warnings:
10326Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13
10327select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_date';
10328concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10329From JSON func opaque_mysql_type_date as DATE	2015-01-15
10330select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_time';
10331concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10332From JSON func opaque_mysql_type_time as DATE	--DATE--
10333select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_datetime';
10334concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10335From JSON func opaque_mysql_type_datetime as DATE	2015-01-15
10336select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_geom';
10337concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10338From JSON func opaque_mysql_type_geom as DATE	NULL
10339Warnings:
10340Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17
10341select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_bit';
10342concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10343From JSON func opaque_mysql_type_bit as DATE	NULL
10344Warnings:
10345Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18
10346select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_year';
10347concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10348From JSON func opaque_mysql_type_year as DATE	NULL
10349Warnings:
10350Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19
10351select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_year';
10352concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10353From JSON func opaque_mysql_type_year as DATE	NULL
10354Warnings:
10355Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19
10356select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_blob';
10357concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10358From JSON func opaque_mysql_type_blob as DATE	NULL
10359Warnings:
10360Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20
10361select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_longblob';
10362concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10363From JSON func opaque_mysql_type_longblob as DATE	NULL
10364Warnings:
10365Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21
10366select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_mediumblob';
10367concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10368From JSON func opaque_mysql_type_mediumblob as DATE	NULL
10369Warnings:
10370Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22
10371select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_tinyblob';
10372concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10373From JSON func opaque_mysql_type_tinyblob as DATE	NULL
10374Warnings:
10375Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23
10376select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_varbinary';
10377concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10378From JSON func opaque_mysql_type_varbinary as DATE	NULL
10379select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_binary';
10380concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10381From JSON func opaque_mysql_type_binary as DATE	NULL
10382select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_varchar';
10383concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10384From JSON func opaque_mysql_type_varchar as DATE	NULL
10385Warnings:
10386Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26
10387select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_string';
10388concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10389From JSON func opaque_mysql_type_string as DATE	NULL
10390select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_var_string';
10391concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
10392From JSON func opaque_mysql_type_var_string as DATE	NULL
10393select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='null';
10394concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10395From JSON func null as DATETIME	NULL
10396Warnings:
10397Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
10398select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='bool';
10399concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10400From JSON func bool as DATETIME	NULL
10401Warnings:
10402Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2
10403select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='uint';
10404concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10405From JSON func uint as DATETIME	NULL
10406Warnings:
10407Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3
10408select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='int';
10409concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10410From JSON func int as DATETIME	NULL
10411Warnings:
10412Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4
10413select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='double';
10414concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10415From JSON func double as DATETIME	NULL
10416Warnings:
10417Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5
10418select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='stringany';
10419concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10420From JSON func stringany as DATETIME	NULL
10421Warnings:
10422Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6
10423select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='stringint';
10424concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10425From JSON func stringint as DATETIME	NULL
10426Warnings:
10427Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7
10428select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='stringdecimal';
10429concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10430From JSON func stringdecimal as DATETIME	NULL
10431Warnings:
10432Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8
10433select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='object';
10434concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10435From JSON func object as DATETIME	NULL
10436Warnings:
10437Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9
10438select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='array';
10439concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10440From JSON func array as DATETIME	NULL
10441Warnings:
10442Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10
10443select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_decimal';
10444concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10445From JSON func opaque_mysql_type_decimal as DATETIME	NULL
10446Warnings:
10447Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11
10448select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_set';
10449concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10450From JSON func opaque_mysql_type_set as DATETIME	NULL
10451Warnings:
10452Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12
10453select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_enum';
10454concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10455From JSON func opaque_mysql_type_enum as DATETIME	NULL
10456Warnings:
10457Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13
10458select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_date';
10459concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10460From JSON func opaque_mysql_type_date as DATETIME	2015-01-15 00:00:00
10461select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_time';
10462concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10463From JSON func opaque_mysql_type_time as DATETIME	--DATE-- 23:24:25
10464select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_datetime';
10465concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10466From JSON func opaque_mysql_type_datetime as DATETIME	2015-01-15 23:24:25
10467select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_geom';
10468concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10469From JSON func opaque_mysql_type_geom as DATETIME	NULL
10470Warnings:
10471Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17
10472select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_bit';
10473concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10474From JSON func opaque_mysql_type_bit as DATETIME	NULL
10475Warnings:
10476Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18
10477select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_year';
10478concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10479From JSON func opaque_mysql_type_year as DATETIME	NULL
10480Warnings:
10481Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19
10482select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_year';
10483concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10484From JSON func opaque_mysql_type_year as DATETIME	NULL
10485Warnings:
10486Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19
10487select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_blob';
10488concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10489From JSON func opaque_mysql_type_blob as DATETIME	NULL
10490Warnings:
10491Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20
10492select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_longblob';
10493concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10494From JSON func opaque_mysql_type_longblob as DATETIME	NULL
10495Warnings:
10496Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21
10497select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_mediumblob';
10498concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10499From JSON func opaque_mysql_type_mediumblob as DATETIME	NULL
10500Warnings:
10501Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22
10502select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_tinyblob';
10503concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10504From JSON func opaque_mysql_type_tinyblob as DATETIME	NULL
10505Warnings:
10506Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23
10507select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_varbinary';
10508concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10509From JSON func opaque_mysql_type_varbinary as DATETIME	NULL
10510select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_binary';
10511concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10512From JSON func opaque_mysql_type_binary as DATETIME	NULL
10513select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_varchar';
10514concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10515From JSON func opaque_mysql_type_varchar as DATETIME	NULL
10516Warnings:
10517Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26
10518select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_string';
10519concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10520From JSON func opaque_mysql_type_string as DATETIME	NULL
10521select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_var_string';
10522concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
10523From JSON func opaque_mysql_type_var_string as DATETIME	NULL
10524select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='null';
10525concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10526From JSON func null as TIME	NULL
10527Warnings:
10528Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
10529select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='bool';
10530concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10531From JSON func bool as TIME	NULL
10532Warnings:
10533Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2
10534select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='uint';
10535concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10536From JSON func uint as TIME	NULL
10537Warnings:
10538Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3
10539select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='int';
10540concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10541From JSON func int as TIME	NULL
10542Warnings:
10543Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4
10544select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='double';
10545concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10546From JSON func double as TIME	NULL
10547Warnings:
10548Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5
10549select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='stringany';
10550concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10551From JSON func stringany as TIME	NULL
10552Warnings:
10553Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6
10554select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='stringint';
10555concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10556From JSON func stringint as TIME	NULL
10557Warnings:
10558Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7
10559select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='stringdecimal';
10560concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10561From JSON func stringdecimal as TIME	NULL
10562Warnings:
10563Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8
10564select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='object';
10565concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10566From JSON func object as TIME	NULL
10567Warnings:
10568Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9
10569select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='array';
10570concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10571From JSON func array as TIME	NULL
10572Warnings:
10573Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10
10574select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_decimal';
10575concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10576From JSON func opaque_mysql_type_decimal as TIME	NULL
10577Warnings:
10578Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11
10579select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_set';
10580concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10581From JSON func opaque_mysql_type_set as TIME	NULL
10582Warnings:
10583Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12
10584select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_enum';
10585concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10586From JSON func opaque_mysql_type_enum as TIME	NULL
10587Warnings:
10588Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13
10589select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_date';
10590concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10591From JSON func opaque_mysql_type_date as TIME	00:00:00
10592select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_time';
10593concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10594From JSON func opaque_mysql_type_time as TIME	23:24:25
10595select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_datetime';
10596concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10597From JSON func opaque_mysql_type_datetime as TIME	23:24:25
10598select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_geom';
10599concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10600From JSON func opaque_mysql_type_geom as TIME	NULL
10601Warnings:
10602Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17
10603select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_bit';
10604concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10605From JSON func opaque_mysql_type_bit as TIME	NULL
10606Warnings:
10607Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18
10608select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_year';
10609concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10610From JSON func opaque_mysql_type_year as TIME	NULL
10611Warnings:
10612Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19
10613select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_year';
10614concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10615From JSON func opaque_mysql_type_year as TIME	NULL
10616Warnings:
10617Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19
10618select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_blob';
10619concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10620From JSON func opaque_mysql_type_blob as TIME	NULL
10621Warnings:
10622Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20
10623select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_longblob';
10624concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10625From JSON func opaque_mysql_type_longblob as TIME	NULL
10626Warnings:
10627Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21
10628select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_mediumblob';
10629concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10630From JSON func opaque_mysql_type_mediumblob as TIME	NULL
10631Warnings:
10632Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22
10633select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_tinyblob';
10634concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10635From JSON func opaque_mysql_type_tinyblob as TIME	NULL
10636Warnings:
10637Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23
10638select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_varbinary';
10639concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10640From JSON func opaque_mysql_type_varbinary as TIME	NULL
10641select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_binary';
10642concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10643From JSON func opaque_mysql_type_binary as TIME	NULL
10644select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_varchar';
10645concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10646From JSON func opaque_mysql_type_varchar as TIME	NULL
10647Warnings:
10648Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26
10649select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_string';
10650concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10651From JSON func opaque_mysql_type_string as TIME	NULL
10652select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_var_string';
10653concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
10654From JSON func opaque_mysql_type_var_string as TIME	NULL
10655select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='null';
10656concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10657From JSON func null as DECIMAL(5,2)	0.00
10658Warnings:
10659Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
10660select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='bool';
10661concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10662From JSON func bool as DECIMAL(5,2)	1.00
10663select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='uint';
10664concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10665From JSON func uint as DECIMAL(5,2)	12.00
10666select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='int';
10667concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10668From JSON func int as DECIMAL(5,2)	12.00
10669select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='double';
10670concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10671From JSON func double as DECIMAL(5,2)	3.14
10672select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='stringany';
10673concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10674From JSON func stringany as DECIMAL(5,2)	0.00
10675Warnings:
10676Warning	1366	Incorrect DECIMAL value: '0' for column '' at row -1
10677Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 6
10678select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='stringint';
10679concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10680From JSON func stringint as DECIMAL(5,2)	1.00
10681select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='stringdecimal';
10682concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10683From JSON func stringdecimal as DECIMAL(5,2)	3.14
10684select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='object';
10685concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10686From JSON func object as DECIMAL(5,2)	0.00
10687Warnings:
10688Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 9
10689select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='array';
10690concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10691From JSON func array as DECIMAL(5,2)	0.00
10692Warnings:
10693Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 10
10694select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_decimal';
10695concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10696From JSON func opaque_mysql_type_decimal as DECIMAL(5,2)	3.14
10697select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_set';
10698concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10699From JSON func opaque_mysql_type_set as DECIMAL(5,2)	0.00
10700Warnings:
10701Warning	1366	Incorrect DECIMAL value: '0' for column '' at row -1
10702Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 12
10703select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_enum';
10704concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10705From JSON func opaque_mysql_type_enum as DECIMAL(5,2)	0.00
10706Warnings:
10707Warning	1366	Incorrect DECIMAL value: '0' for column '' at row -1
10708Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 13
10709select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_date';
10710concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10711From JSON func opaque_mysql_type_date as DECIMAL(5,2)	0.00
10712Warnings:
10713Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 14
10714select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_time';
10715concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10716From JSON func opaque_mysql_type_time as DECIMAL(5,2)	0.00
10717Warnings:
10718Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 15
10719select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_datetime';
10720concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10721From JSON func opaque_mysql_type_datetime as DECIMAL(5,2)	0.00
10722Warnings:
10723Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 16
10724select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_geom';
10725concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10726From JSON func opaque_mysql_type_geom as DECIMAL(5,2)	0.00
10727Warnings:
10728Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 17
10729select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_bit';
10730concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10731From JSON func opaque_mysql_type_bit as DECIMAL(5,2)	0.00
10732Warnings:
10733Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 18
10734select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_year';
10735concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10736From JSON func opaque_mysql_type_year as DECIMAL(5,2)	0.00
10737Warnings:
10738Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 19
10739select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_year';
10740concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10741From JSON func opaque_mysql_type_year as DECIMAL(5,2)	0.00
10742Warnings:
10743Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 19
10744select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_blob';
10745concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10746From JSON func opaque_mysql_type_blob as DECIMAL(5,2)	0.00
10747Warnings:
10748Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 20
10749select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_longblob';
10750concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10751From JSON func opaque_mysql_type_longblob as DECIMAL(5,2)	0.00
10752Warnings:
10753Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 21
10754select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_mediumblob';
10755concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10756From JSON func opaque_mysql_type_mediumblob as DECIMAL(5,2)	0.00
10757Warnings:
10758Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 22
10759select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_tinyblob';
10760concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10761From JSON func opaque_mysql_type_tinyblob as DECIMAL(5,2)	0.00
10762Warnings:
10763Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 23
10764select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_varbinary';
10765concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10766From JSON func opaque_mysql_type_varbinary as DECIMAL(5,2)	NULL
10767select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_binary';
10768concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10769From JSON func opaque_mysql_type_binary as DECIMAL(5,2)	NULL
10770select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_varchar';
10771concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10772From JSON func opaque_mysql_type_varchar as DECIMAL(5,2)	0.00
10773Warnings:
10774Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 26
10775select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_string';
10776concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10777From JSON func opaque_mysql_type_string as DECIMAL(5,2)	NULL
10778select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_var_string';
10779concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
10780From JSON func opaque_mysql_type_var_string as DECIMAL(5,2)	NULL
10781select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='null';
10782concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10783From JSON func null as UNSIGNED	0
10784Warnings:
10785Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 1
10786select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='bool';
10787concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10788From JSON func bool as UNSIGNED	1
10789select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='uint';
10790concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10791From JSON func uint as UNSIGNED	12
10792select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='int';
10793concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10794From JSON func int as UNSIGNED	12
10795select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='double';
10796concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10797From JSON func double as UNSIGNED	3
10798select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='stringany';
10799concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10800From JSON func stringany as UNSIGNED	0
10801Warnings:
10802Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 6
10803select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='stringint';
10804concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10805From JSON func stringint as UNSIGNED	1
10806select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='stringdecimal';
10807concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10808From JSON func stringdecimal as UNSIGNED	3
10809Warnings:
10810Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 8
10811select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='object';
10812concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10813From JSON func object as UNSIGNED	0
10814Warnings:
10815Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 9
10816select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='array';
10817concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10818From JSON func array as UNSIGNED	0
10819Warnings:
10820Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 10
10821select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_decimal';
10822concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10823From JSON func opaque_mysql_type_decimal as UNSIGNED	3
10824select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_set';
10825concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10826From JSON func opaque_mysql_type_set as UNSIGNED	0
10827Warnings:
10828Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 12
10829select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_enum';
10830concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10831From JSON func opaque_mysql_type_enum as UNSIGNED	0
10832Warnings:
10833Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 13
10834select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_date';
10835concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10836From JSON func opaque_mysql_type_date as UNSIGNED	0
10837Warnings:
10838Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 14
10839select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_time';
10840concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10841From JSON func opaque_mysql_type_time as UNSIGNED	0
10842Warnings:
10843Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 15
10844select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_datetime';
10845concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10846From JSON func opaque_mysql_type_datetime as UNSIGNED	0
10847Warnings:
10848Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 16
10849select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_geom';
10850concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10851From JSON func opaque_mysql_type_geom as UNSIGNED	0
10852Warnings:
10853Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 17
10854select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_bit';
10855concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10856From JSON func opaque_mysql_type_bit as UNSIGNED	0
10857Warnings:
10858Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 18
10859select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_year';
10860concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10861From JSON func opaque_mysql_type_year as UNSIGNED	0
10862Warnings:
10863Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 19
10864select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_year';
10865concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10866From JSON func opaque_mysql_type_year as UNSIGNED	0
10867Warnings:
10868Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 19
10869select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_blob';
10870concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10871From JSON func opaque_mysql_type_blob as UNSIGNED	0
10872Warnings:
10873Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 20
10874select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_longblob';
10875concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10876From JSON func opaque_mysql_type_longblob as UNSIGNED	0
10877Warnings:
10878Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 21
10879select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_mediumblob';
10880concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10881From JSON func opaque_mysql_type_mediumblob as UNSIGNED	0
10882Warnings:
10883Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 22
10884select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_tinyblob';
10885concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10886From JSON func opaque_mysql_type_tinyblob as UNSIGNED	0
10887Warnings:
10888Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 23
10889select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_varbinary';
10890concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10891From JSON func opaque_mysql_type_varbinary as UNSIGNED	NULL
10892select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_binary';
10893concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10894From JSON func opaque_mysql_type_binary as UNSIGNED	NULL
10895select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_varchar';
10896concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10897From JSON func opaque_mysql_type_varchar as UNSIGNED	0
10898Warnings:
10899Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 26
10900select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_string';
10901concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10902From JSON func opaque_mysql_type_string as UNSIGNED	NULL
10903select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_var_string';
10904concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
10905From JSON func opaque_mysql_type_var_string as UNSIGNED	NULL
10906select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='null';
10907concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10908From JSON func null as SIGNED	0
10909Warnings:
10910Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 1
10911select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='bool';
10912concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10913From JSON func bool as SIGNED	1
10914select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='uint';
10915concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10916From JSON func uint as SIGNED	12
10917select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='int';
10918concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10919From JSON func int as SIGNED	12
10920select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='double';
10921concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10922From JSON func double as SIGNED	3
10923select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='stringany';
10924concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10925From JSON func stringany as SIGNED	0
10926Warnings:
10927Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 6
10928select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='stringint';
10929concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10930From JSON func stringint as SIGNED	1
10931select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='stringdecimal';
10932concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10933From JSON func stringdecimal as SIGNED	3
10934Warnings:
10935Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 8
10936select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='object';
10937concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10938From JSON func object as SIGNED	0
10939Warnings:
10940Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 9
10941select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='array';
10942concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10943From JSON func array as SIGNED	0
10944Warnings:
10945Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 10
10946select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_decimal';
10947concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10948From JSON func opaque_mysql_type_decimal as SIGNED	3
10949select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_set';
10950concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10951From JSON func opaque_mysql_type_set as SIGNED	0
10952Warnings:
10953Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 12
10954select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_enum';
10955concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10956From JSON func opaque_mysql_type_enum as SIGNED	0
10957Warnings:
10958Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 13
10959select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_date';
10960concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10961From JSON func opaque_mysql_type_date as SIGNED	0
10962Warnings:
10963Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 14
10964select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_time';
10965concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10966From JSON func opaque_mysql_type_time as SIGNED	0
10967Warnings:
10968Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 15
10969select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_datetime';
10970concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10971From JSON func opaque_mysql_type_datetime as SIGNED	0
10972Warnings:
10973Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 16
10974select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_geom';
10975concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10976From JSON func opaque_mysql_type_geom as SIGNED	0
10977Warnings:
10978Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 17
10979select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_bit';
10980concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10981From JSON func opaque_mysql_type_bit as SIGNED	0
10982Warnings:
10983Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 18
10984select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_year';
10985concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10986From JSON func opaque_mysql_type_year as SIGNED	0
10987Warnings:
10988Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 19
10989select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_year';
10990concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10991From JSON func opaque_mysql_type_year as SIGNED	0
10992Warnings:
10993Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 19
10994select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_blob';
10995concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
10996From JSON func opaque_mysql_type_blob as SIGNED	0
10997Warnings:
10998Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 20
10999select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_longblob';
11000concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
11001From JSON func opaque_mysql_type_longblob as SIGNED	0
11002Warnings:
11003Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 21
11004select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_mediumblob';
11005concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
11006From JSON func opaque_mysql_type_mediumblob as SIGNED	0
11007Warnings:
11008Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 22
11009select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_tinyblob';
11010concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
11011From JSON func opaque_mysql_type_tinyblob as SIGNED	0
11012Warnings:
11013Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 23
11014select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_varbinary';
11015concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
11016From JSON func opaque_mysql_type_varbinary as SIGNED	NULL
11017select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_binary';
11018concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
11019From JSON func opaque_mysql_type_binary as SIGNED	NULL
11020select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_varchar';
11021concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
11022From JSON func opaque_mysql_type_varchar as SIGNED	0
11023Warnings:
11024Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 26
11025select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_string';
11026concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
11027From JSON func opaque_mysql_type_string as SIGNED	NULL
11028select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_var_string';
11029concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
11030From JSON func opaque_mysql_type_var_string as SIGNED	NULL
11031# ----------------------------------------------------------------------
11032#  C A S T   F R O M   J S O N   S U B Q U E R Y
11033# ----------------------------------------------------------------------
11034select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='null') as BINARY(35)), '\0', '') from t where c='null';
11035concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='null') as BINARY(35)), '\0', '')
11036From JSON subselect null as BINARY(35)	null
11037select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='bool') as BINARY(35)), '\0', '') from t where c='bool';
11038concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='bool') as BINARY(35)), '\0', '')
11039From JSON subselect bool as BINARY(35)	true
11040select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='uint') as BINARY(35)), '\0', '') from t where c='uint';
11041concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='uint') as BINARY(35)), '\0', '')
11042From JSON subselect uint as BINARY(35)	12
11043select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='int') as BINARY(35)), '\0', '') from t where c='int';
11044concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='int') as BINARY(35)), '\0', '')
11045From JSON subselect int as BINARY(35)	12
11046select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='double') as BINARY(35)), '\0', '') from t where c='double';
11047concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='double') as BINARY(35)), '\0', '')
11048From JSON subselect double as BINARY(35)	3.14
11049select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='stringany') as BINARY(35)), '\0', '') from t where c='stringany';
11050concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='stringany') as BINARY(35)), '\0', '')
11051From JSON subselect stringany as BINARY(35)	"a"
11052select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='stringint') as BINARY(35)), '\0', '') from t where c='stringint';
11053concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='stringint') as BINARY(35)), '\0', '')
11054From JSON subselect stringint as BINARY(35)	"1"
11055select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='stringdecimal') as BINARY(35)), '\0', '') from t where c='stringdecimal';
11056concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='stringdecimal') as BINARY(35)), '\0', '')
11057From JSON subselect stringdecimal as BINARY(35)	"3.14"
11058select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='object') as BINARY(35)), '\0', '') from t where c='object';
11059concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='object') as BINARY(35)), '\0', '')
11060From JSON subselect object as BINARY(35)	{"a": 3}
11061select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='array') as BINARY(35)), '\0', '') from t where c='array';
11062concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='array') as BINARY(35)), '\0', '')
11063From JSON subselect array as BINARY(35)	[1, 2]
11064select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_decimal') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_decimal';
11065concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_decimal') as BINARY(35)), '\0', '')
11066From JSON subselect opaque_mysql_type_decimal as BINARY(35)	3.14
11067select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_set') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_set';
11068concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_set') as BINARY(35)), '\0', '')
11069From JSON subselect opaque_mysql_type_set as BINARY(35)	"b,c"
11070select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_enum') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_enum';
11071concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_enum') as BINARY(35)), '\0', '')
11072From JSON subselect opaque_mysql_type_enum as BINARY(35)	"b"
11073select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_date') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_date';
11074concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_date') as BINARY(35)), '\0', '')
11075From JSON subselect opaque_mysql_type_date as BINARY(35)	"2015-01-15"
11076select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_time') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_time';
11077concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_time') as BINARY(35)), '\0', '')
11078From JSON subselect opaque_mysql_type_time as BINARY(35)	"23:24:25.000000"
11079select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_datetime') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_datetime';
11080concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_datetime') as BINARY(35)), '\0', '')
11081From JSON subselect opaque_mysql_type_datetime as BINARY(35)	"2015-01-15 23:24:25.000000"
11082select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_geom') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_geom';
11083concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_geom') as BINARY(35)), '\0', '')
11084From JSON subselect opaque_mysql_type_geom as BINARY(35)	{"type": "Point", "coordinates": [1
11085Warnings:
11086Warning	1292	Truncated incorrect BINARY(35) value: '{"type": "Point", "coordinates": [1, 1]}'
11087select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_bit') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_bit';
11088concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_bit') as BINARY(35)), '\0', '')
11089From JSON subselect opaque_mysql_type_bit as BINARY(35)	"base64:type16:yv4="
11090select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_year') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_year';
11091concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_year') as BINARY(35)), '\0', '')
11092From JSON subselect opaque_mysql_type_year as BINARY(35)	"base64:type13:MTk5Mg=="
11093select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_year') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_year';
11094concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_year') as BINARY(35)), '\0', '')
11095From JSON subselect opaque_mysql_type_year as BINARY(35)	"base64:type13:MTk5Mg=="
11096select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_blob') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_blob';
11097concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_blob') as BINARY(35)), '\0', '')
11098From JSON subselect opaque_mysql_type_blob as BINARY(35)	"base64:type252:yv66vg=="
11099select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_longblob') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_longblob';
11100concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_longblob') as BINARY(35)), '\0', '')
11101From JSON subselect opaque_mysql_type_longblob as BINARY(35)	"base64:type251:yv66vg=="
11102select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_mediumblob') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_mediumblob';
11103concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_mediumblob') as BINARY(35)), '\0', '')
11104From JSON subselect opaque_mysql_type_mediumblob as BINARY(35)	"base64:type250:yv66vg=="
11105select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_tinyblob') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_tinyblob';
11106concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_tinyblob') as BINARY(35)), '\0', '')
11107From JSON subselect opaque_mysql_type_tinyblob as BINARY(35)	"base64:type249:yv66vg=="
11108select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_varbinary') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_varbinary';
11109concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_varbinary') as BINARY(35)), '\0', '')
11110From JSON subselect opaque_mysql_type_varbinary as BINARY(35)	NULL
11111select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_binary') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_binary';
11112concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_binary') as BINARY(35)), '\0', '')
11113From JSON subselect opaque_mysql_type_binary as BINARY(35)	NULL
11114select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_varchar') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_varchar';
11115concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_varchar') as BINARY(35)), '\0', '')
11116From JSON subselect opaque_mysql_type_varchar as BINARY(35)	"base64:type15:Zm9v"
11117select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_string') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_string';
11118concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_string') as BINARY(35)), '\0', '')
11119From JSON subselect opaque_mysql_type_string as BINARY(35)	NULL
11120select concat('From JSON subselect ',c, ' as BINARY(35)'), replace(cast((select j from t where c='opaque_mysql_type_var_string') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_var_string';
11121concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_var_string') as BINARY(35)), '\0', '')
11122From JSON subselect opaque_mysql_type_var_string as BINARY(35)	NULL
11123select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='null') as CHAR(35)) from t where c='null';
11124concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='null') as CHAR(35))
11125From JSON subselect null as CHAR(35))	null
11126select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='bool') as CHAR(35)) from t where c='bool';
11127concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='bool') as CHAR(35))
11128From JSON subselect bool as CHAR(35))	true
11129select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='uint') as CHAR(35)) from t where c='uint';
11130concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='uint') as CHAR(35))
11131From JSON subselect uint as CHAR(35))	12
11132select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='int') as CHAR(35)) from t where c='int';
11133concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='int') as CHAR(35))
11134From JSON subselect int as CHAR(35))	12
11135select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='double') as CHAR(35)) from t where c='double';
11136concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='double') as CHAR(35))
11137From JSON subselect double as CHAR(35))	3.14
11138select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='stringany') as CHAR(35)) from t where c='stringany';
11139concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='stringany') as CHAR(35))
11140From JSON subselect stringany as CHAR(35))	"a"
11141select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='stringint') as CHAR(35)) from t where c='stringint';
11142concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='stringint') as CHAR(35))
11143From JSON subselect stringint as CHAR(35))	"1"
11144select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='stringdecimal') as CHAR(35)) from t where c='stringdecimal';
11145concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='stringdecimal') as CHAR(35))
11146From JSON subselect stringdecimal as CHAR(35))	"3.14"
11147select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='object') as CHAR(35)) from t where c='object';
11148concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='object') as CHAR(35))
11149From JSON subselect object as CHAR(35))	{"a": 3}
11150select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='array') as CHAR(35)) from t where c='array';
11151concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='array') as CHAR(35))
11152From JSON subselect array as CHAR(35))	[1, 2]
11153select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='opaque_mysql_type_decimal') as CHAR(35)) from t where c='opaque_mysql_type_decimal';
11154concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_decimal') as CHAR(35))
11155From JSON subselect opaque_mysql_type_decimal as CHAR(35))	3.14
11156select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='opaque_mysql_type_set') as CHAR(35)) from t where c='opaque_mysql_type_set';
11157concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_set') as CHAR(35))
11158From JSON subselect opaque_mysql_type_set as CHAR(35))	"b,c"
11159select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='opaque_mysql_type_enum') as CHAR(35)) from t where c='opaque_mysql_type_enum';
11160concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_enum') as CHAR(35))
11161From JSON subselect opaque_mysql_type_enum as CHAR(35))	"b"
11162select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='opaque_mysql_type_date') as CHAR(35)) from t where c='opaque_mysql_type_date';
11163concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_date') as CHAR(35))
11164From JSON subselect opaque_mysql_type_date as CHAR(35))	"2015-01-15"
11165select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='opaque_mysql_type_time') as CHAR(35)) from t where c='opaque_mysql_type_time';
11166concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_time') as CHAR(35))
11167From JSON subselect opaque_mysql_type_time as CHAR(35))	"23:24:25.000000"
11168select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='opaque_mysql_type_datetime') as CHAR(35)) from t where c='opaque_mysql_type_datetime';
11169concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_datetime') as CHAR(35))
11170From JSON subselect opaque_mysql_type_datetime as CHAR(35))	"2015-01-15 23:24:25.000000"
11171select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='opaque_mysql_type_geom') as CHAR(35)) from t where c='opaque_mysql_type_geom';
11172concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_geom') as CHAR(35))
11173From JSON subselect opaque_mysql_type_geom as CHAR(35))	{"type": "Point", "coordinates": [1
11174Warnings:
11175Warning	1292	Truncated incorrect CHAR(35) value: '{"type": "Point", "coordinates": [1, 1]}'
11176select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='opaque_mysql_type_bit') as CHAR(35)) from t where c='opaque_mysql_type_bit';
11177concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_bit') as CHAR(35))
11178From JSON subselect opaque_mysql_type_bit as CHAR(35))	"base64:type16:yv4="
11179select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='opaque_mysql_type_year') as CHAR(35)) from t where c='opaque_mysql_type_year';
11180concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_year') as CHAR(35))
11181From JSON subselect opaque_mysql_type_year as CHAR(35))	"base64:type13:MTk5Mg=="
11182select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_year';
11183concat('From JSON subselect ',c, ' as CHAR(35))')	cast(j as CHAR(35))
11184From JSON subselect opaque_mysql_type_year as CHAR(35))	"base64:type13:MTk5Mg=="
11185select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='opaque_mysql_type_blob') as CHAR(35)) from t where c='opaque_mysql_type_blob';
11186concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_blob') as CHAR(35))
11187From JSON subselect opaque_mysql_type_blob as CHAR(35))	"base64:type252:yv66vg=="
11188select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_longblob';
11189concat('From JSON subselect ',c, ' as CHAR(35))')	cast(j as CHAR(35))
11190From JSON subselect opaque_mysql_type_longblob as CHAR(35))	"base64:type251:yv66vg=="
11191select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='opaque_mysql_type_mediumblob') as CHAR(35)) from t where c='opaque_mysql_type_mediumblob';
11192concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_mediumblob') as CHAR(35))
11193From JSON subselect opaque_mysql_type_mediumblob as CHAR(35))	"base64:type250:yv66vg=="
11194select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_tinyblob';
11195concat('From JSON subselect ',c, ' as CHAR(35))')	cast(j as CHAR(35))
11196From JSON subselect opaque_mysql_type_tinyblob as CHAR(35))	"base64:type249:yv66vg=="
11197select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='opaque_mysql_type_varbinary') as CHAR(35)) from t where c='opaque_mysql_type_varbinary';
11198concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_varbinary') as CHAR(35))
11199From JSON subselect opaque_mysql_type_varbinary as CHAR(35))	NULL
11200select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_binary';
11201concat('From JSON subselect ',c, ' as CHAR(35))')	cast(j as CHAR(35))
11202From JSON subselect opaque_mysql_type_binary as CHAR(35))	NULL
11203select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='opaque_mysql_type_varchar') as CHAR(35)) from t where c='opaque_mysql_type_varchar';
11204concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_varchar') as CHAR(35))
11205From JSON subselect opaque_mysql_type_varchar as CHAR(35))	"base64:type15:Zm9v"
11206select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_string';
11207concat('From JSON subselect ',c, ' as CHAR(35))')	cast(j as CHAR(35))
11208From JSON subselect opaque_mysql_type_string as CHAR(35))	NULL
11209select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='opaque_mysql_type_var_string') as CHAR(35)) from t where c='opaque_mysql_type_var_string';
11210concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_var_string') as CHAR(35))
11211From JSON subselect opaque_mysql_type_var_string as CHAR(35))	NULL
11212select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='null') as DATE) from t where c='null';
11213concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='null') as DATE)
11214From JSON subselect null as DATE	NULL
11215Warnings:
11216Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11217select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='bool';
11218concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
11219From JSON subselect bool as DATE	NULL
11220Warnings:
11221Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
11222select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='uint') as DATE) from t where c='uint';
11223concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='uint') as DATE)
11224From JSON subselect uint as DATE	NULL
11225Warnings:
11226Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11227select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='int';
11228concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
11229From JSON subselect int as DATE	NULL
11230Warnings:
11231Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4
11232select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='double') as DATE) from t where c='double';
11233concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='double') as DATE)
11234From JSON subselect double as DATE	NULL
11235Warnings:
11236Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11237select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='stringany';
11238concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
11239From JSON subselect stringany as DATE	NULL
11240Warnings:
11241Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6
11242select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='stringint') as DATE) from t where c='stringint';
11243concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='stringint') as DATE)
11244From JSON subselect stringint as DATE	NULL
11245Warnings:
11246Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11247select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='stringdecimal';
11248concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
11249From JSON subselect stringdecimal as DATE	NULL
11250Warnings:
11251Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8
11252select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='object') as DATE) from t where c='object';
11253concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='object') as DATE)
11254From JSON subselect object as DATE	NULL
11255Warnings:
11256Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11257select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='array';
11258concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
11259From JSON subselect array as DATE	NULL
11260Warnings:
11261Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10
11262select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_decimal') as DATE) from t where c='opaque_mysql_type_decimal';
11263concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_decimal') as DATE)
11264From JSON subselect opaque_mysql_type_decimal as DATE	NULL
11265Warnings:
11266Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11267select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_set';
11268concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
11269From JSON subselect opaque_mysql_type_set as DATE	NULL
11270Warnings:
11271Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12
11272select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_enum') as DATE) from t where c='opaque_mysql_type_enum';
11273concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_enum') as DATE)
11274From JSON subselect opaque_mysql_type_enum as DATE	NULL
11275Warnings:
11276Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11277select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_date';
11278concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
11279From JSON subselect opaque_mysql_type_date as DATE	2015-01-15
11280select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_time') as DATE) from t where c='opaque_mysql_type_time';
11281concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_time') as DATE)
11282From JSON subselect opaque_mysql_type_time as DATE	--DATE--
11283select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_datetime';
11284concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
11285From JSON subselect opaque_mysql_type_datetime as DATE	2015-01-15
11286select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_geom') as DATE) from t where c='opaque_mysql_type_geom';
11287concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_geom') as DATE)
11288From JSON subselect opaque_mysql_type_geom as DATE	NULL
11289Warnings:
11290Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11291select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_bit';
11292concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
11293From JSON subselect opaque_mysql_type_bit as DATE	NULL
11294Warnings:
11295Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18
11296select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_year') as DATE) from t where c='opaque_mysql_type_year';
11297concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_year') as DATE)
11298From JSON subselect opaque_mysql_type_year as DATE	NULL
11299Warnings:
11300Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11301select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_year') as DATE) from t where c='opaque_mysql_type_year';
11302concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_year') as DATE)
11303From JSON subselect opaque_mysql_type_year as DATE	NULL
11304Warnings:
11305Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11306select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_blob') as DATE) from t where c='opaque_mysql_type_blob';
11307concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_blob') as DATE)
11308From JSON subselect opaque_mysql_type_blob as DATE	NULL
11309Warnings:
11310Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11311select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_longblob') as DATE) from t where c='opaque_mysql_type_longblob';
11312concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_longblob') as DATE)
11313From JSON subselect opaque_mysql_type_longblob as DATE	NULL
11314Warnings:
11315Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11316select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_mediumblob') as DATE) from t where c='opaque_mysql_type_mediumblob';
11317concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_mediumblob') as DATE)
11318From JSON subselect opaque_mysql_type_mediumblob as DATE	NULL
11319Warnings:
11320Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11321select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_tinyblob') as DATE) from t where c='opaque_mysql_type_tinyblob';
11322concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_tinyblob') as DATE)
11323From JSON subselect opaque_mysql_type_tinyblob as DATE	NULL
11324Warnings:
11325Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11326select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_varbinary') as DATE) from t where c='opaque_mysql_type_varbinary';
11327concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_varbinary') as DATE)
11328From JSON subselect opaque_mysql_type_varbinary as DATE	NULL
11329select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_binary') as DATE) from t where c='opaque_mysql_type_binary';
11330concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_binary') as DATE)
11331From JSON subselect opaque_mysql_type_binary as DATE	NULL
11332select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_varchar') as DATE) from t where c='opaque_mysql_type_varchar';
11333concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_varchar') as DATE)
11334From JSON subselect opaque_mysql_type_varchar as DATE	NULL
11335Warnings:
11336Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11337select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_string') as DATE) from t where c='opaque_mysql_type_string';
11338concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_string') as DATE)
11339From JSON subselect opaque_mysql_type_string as DATE	NULL
11340select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='opaque_mysql_type_var_string') as DATE) from t where c='opaque_mysql_type_var_string';
11341concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_var_string') as DATE)
11342From JSON subselect opaque_mysql_type_var_string as DATE	NULL
11343select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='null') as DATETIME) from t where c='null';
11344concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='null') as DATETIME)
11345From JSON subselect null as DATETIME	NULL
11346Warnings:
11347Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11348select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='bool') as DATETIME) from t where c='bool';
11349concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='bool') as DATETIME)
11350From JSON subselect bool as DATETIME	NULL
11351Warnings:
11352Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11353select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='uint') as DATETIME) from t where c='uint';
11354concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='uint') as DATETIME)
11355From JSON subselect uint as DATETIME	NULL
11356Warnings:
11357Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11358select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='int') as DATETIME) from t where c='int';
11359concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='int') as DATETIME)
11360From JSON subselect int as DATETIME	NULL
11361Warnings:
11362Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11363select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='double') as DATETIME) from t where c='double';
11364concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='double') as DATETIME)
11365From JSON subselect double as DATETIME	NULL
11366Warnings:
11367Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11368select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='stringany') as DATETIME) from t where c='stringany';
11369concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='stringany') as DATETIME)
11370From JSON subselect stringany as DATETIME	NULL
11371Warnings:
11372Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11373select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='stringint') as DATETIME) from t where c='stringint';
11374concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='stringint') as DATETIME)
11375From JSON subselect stringint as DATETIME	NULL
11376Warnings:
11377Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11378select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='stringdecimal') as DATETIME) from t where c='stringdecimal';
11379concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='stringdecimal') as DATETIME)
11380From JSON subselect stringdecimal as DATETIME	NULL
11381Warnings:
11382Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11383select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='object') as DATETIME) from t where c='object';
11384concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='object') as DATETIME)
11385From JSON subselect object as DATETIME	NULL
11386Warnings:
11387Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11388select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='array') as DATETIME) from t where c='array';
11389concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='array') as DATETIME)
11390From JSON subselect array as DATETIME	NULL
11391Warnings:
11392Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11393select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='opaque_mysql_type_decimal') as DATETIME) from t where c='opaque_mysql_type_decimal';
11394concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_decimal') as DATETIME)
11395From JSON subselect opaque_mysql_type_decimal as DATETIME	NULL
11396Warnings:
11397Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11398select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='opaque_mysql_type_set') as DATETIME) from t where c='opaque_mysql_type_set';
11399concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_set') as DATETIME)
11400From JSON subselect opaque_mysql_type_set as DATETIME	NULL
11401Warnings:
11402Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11403select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='opaque_mysql_type_enum') as DATETIME) from t where c='opaque_mysql_type_enum';
11404concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_enum') as DATETIME)
11405From JSON subselect opaque_mysql_type_enum as DATETIME	NULL
11406Warnings:
11407Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11408select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='opaque_mysql_type_date') as DATETIME) from t where c='opaque_mysql_type_date';
11409concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_date') as DATETIME)
11410From JSON subselect opaque_mysql_type_date as DATETIME	2015-01-15 00:00:00
11411select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='opaque_mysql_type_time') as DATETIME) from t where c='opaque_mysql_type_time';
11412concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_time') as DATETIME)
11413From JSON subselect opaque_mysql_type_time as DATETIME	--DATE-- 23:24:25
11414select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_datetime';
11415concat('From JSON subselect ',c, ' as DATETIME')	cast(j as DATETIME)
11416From JSON subselect opaque_mysql_type_datetime as DATETIME	2015-01-15 23:24:25
11417select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='opaque_mysql_type_geom') as DATETIME) from t where c='opaque_mysql_type_geom';
11418concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_geom') as DATETIME)
11419From JSON subselect opaque_mysql_type_geom as DATETIME	NULL
11420Warnings:
11421Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11422select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_bit';
11423concat('From JSON subselect ',c, ' as DATETIME')	cast(j as DATETIME)
11424From JSON subselect opaque_mysql_type_bit as DATETIME	NULL
11425Warnings:
11426Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18
11427select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='opaque_mysql_type_year') as DATETIME) from t where c='opaque_mysql_type_year';
11428concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_year') as DATETIME)
11429From JSON subselect opaque_mysql_type_year as DATETIME	NULL
11430Warnings:
11431Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11432select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_year';
11433concat('From JSON subselect ',c, ' as DATETIME')	cast(j as DATETIME)
11434From JSON subselect opaque_mysql_type_year as DATETIME	NULL
11435Warnings:
11436Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19
11437select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='opaque_mysql_type_blob') as DATETIME) from t where c='opaque_mysql_type_blob';
11438concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_blob') as DATETIME)
11439From JSON subselect opaque_mysql_type_blob as DATETIME	NULL
11440Warnings:
11441Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11442select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_longblob';
11443concat('From JSON subselect ',c, ' as DATETIME')	cast(j as DATETIME)
11444From JSON subselect opaque_mysql_type_longblob as DATETIME	NULL
11445Warnings:
11446Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21
11447select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='opaque_mysql_type_mediumblob') as DATETIME) from t where c='opaque_mysql_type_mediumblob';
11448concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_mediumblob') as DATETIME)
11449From JSON subselect opaque_mysql_type_mediumblob as DATETIME	NULL
11450Warnings:
11451Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11452select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_tinyblob';
11453concat('From JSON subselect ',c, ' as DATETIME')	cast(j as DATETIME)
11454From JSON subselect opaque_mysql_type_tinyblob as DATETIME	NULL
11455Warnings:
11456Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23
11457select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='opaque_mysql_type_varbinary') as DATETIME) from t where c='opaque_mysql_type_varbinary';
11458concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_varbinary') as DATETIME)
11459From JSON subselect opaque_mysql_type_varbinary as DATETIME	NULL
11460select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_binary';
11461concat('From JSON subselect ',c, ' as DATETIME')	cast(j as DATETIME)
11462From JSON subselect opaque_mysql_type_binary as DATETIME	NULL
11463select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='opaque_mysql_type_varchar') as DATETIME) from t where c='opaque_mysql_type_varchar';
11464concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_varchar') as DATETIME)
11465From JSON subselect opaque_mysql_type_varchar as DATETIME	NULL
11466Warnings:
11467Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11468select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_string';
11469concat('From JSON subselect ',c, ' as DATETIME')	cast(j as DATETIME)
11470From JSON subselect opaque_mysql_type_string as DATETIME	NULL
11471select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='opaque_mysql_type_var_string') as DATETIME) from t where c='opaque_mysql_type_var_string';
11472concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_var_string') as DATETIME)
11473From JSON subselect opaque_mysql_type_var_string as DATETIME	NULL
11474select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='null') as TIME) from t where c='null';
11475concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='null') as TIME)
11476From JSON subselect null as TIME	NULL
11477Warnings:
11478Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11479select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='bool';
11480concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
11481From JSON subselect bool as TIME	NULL
11482Warnings:
11483Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
11484select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='uint') as TIME) from t where c='uint';
11485concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='uint') as TIME)
11486From JSON subselect uint as TIME	NULL
11487Warnings:
11488Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11489select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='int';
11490concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
11491From JSON subselect int as TIME	NULL
11492Warnings:
11493Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4
11494select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='double') as TIME) from t where c='double';
11495concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='double') as TIME)
11496From JSON subselect double as TIME	NULL
11497Warnings:
11498Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11499select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='stringany';
11500concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
11501From JSON subselect stringany as TIME	NULL
11502Warnings:
11503Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6
11504select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='stringint') as TIME) from t where c='stringint';
11505concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='stringint') as TIME)
11506From JSON subselect stringint as TIME	NULL
11507Warnings:
11508Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11509select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='stringdecimal';
11510concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
11511From JSON subselect stringdecimal as TIME	NULL
11512Warnings:
11513Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8
11514select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='object') as TIME) from t where c='object';
11515concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='object') as TIME)
11516From JSON subselect object as TIME	NULL
11517Warnings:
11518Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11519select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='array';
11520concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
11521From JSON subselect array as TIME	NULL
11522Warnings:
11523Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10
11524select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='opaque_mysql_type_decimal') as TIME) from t where c='opaque_mysql_type_decimal';
11525concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_decimal') as TIME)
11526From JSON subselect opaque_mysql_type_decimal as TIME	NULL
11527Warnings:
11528Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11529select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_set';
11530concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
11531From JSON subselect opaque_mysql_type_set as TIME	NULL
11532Warnings:
11533Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12
11534select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='opaque_mysql_type_enum') as TIME) from t where c='opaque_mysql_type_enum';
11535concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_enum') as TIME)
11536From JSON subselect opaque_mysql_type_enum as TIME	NULL
11537Warnings:
11538Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11539select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_date';
11540concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
11541From JSON subselect opaque_mysql_type_date as TIME	00:00:00
11542select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='opaque_mysql_type_time') as TIME) from t where c='opaque_mysql_type_time';
11543concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_time') as TIME)
11544From JSON subselect opaque_mysql_type_time as TIME	23:24:25
11545select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_datetime';
11546concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
11547From JSON subselect opaque_mysql_type_datetime as TIME	23:24:25
11548select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='opaque_mysql_type_geom') as TIME) from t where c='opaque_mysql_type_geom';
11549concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_geom') as TIME)
11550From JSON subselect opaque_mysql_type_geom as TIME	NULL
11551Warnings:
11552Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11553select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_bit';
11554concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
11555From JSON subselect opaque_mysql_type_bit as TIME	NULL
11556Warnings:
11557Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18
11558select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='opaque_mysql_type_year') as TIME) from t where c='opaque_mysql_type_year';
11559concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_year') as TIME)
11560From JSON subselect opaque_mysql_type_year as TIME	NULL
11561Warnings:
11562Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11563select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_year';
11564concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
11565From JSON subselect opaque_mysql_type_year as TIME	NULL
11566Warnings:
11567Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19
11568select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='opaque_mysql_type_blob') as TIME) from t where c='opaque_mysql_type_blob';
11569concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_blob') as TIME)
11570From JSON subselect opaque_mysql_type_blob as TIME	NULL
11571Warnings:
11572Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11573select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_longblob';
11574concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
11575From JSON subselect opaque_mysql_type_longblob as TIME	NULL
11576Warnings:
11577Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21
11578select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='opaque_mysql_type_mediumblob') as TIME) from t where c='opaque_mysql_type_mediumblob';
11579concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_mediumblob') as TIME)
11580From JSON subselect opaque_mysql_type_mediumblob as TIME	NULL
11581Warnings:
11582Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11583select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_tinyblob';
11584concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
11585From JSON subselect opaque_mysql_type_tinyblob as TIME	NULL
11586Warnings:
11587Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23
11588select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='opaque_mysql_type_varbinary') as TIME) from t where c='opaque_mysql_type_varbinary';
11589concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_varbinary') as TIME)
11590From JSON subselect opaque_mysql_type_varbinary as TIME	NULL
11591select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_binary';
11592concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
11593From JSON subselect opaque_mysql_type_binary as TIME	NULL
11594select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='opaque_mysql_type_varchar') as TIME) from t where c='opaque_mysql_type_varchar';
11595concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_varchar') as TIME)
11596From JSON subselect opaque_mysql_type_varchar as TIME	NULL
11597Warnings:
11598Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29
11599select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_string';
11600concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
11601From JSON subselect opaque_mysql_type_string as TIME	NULL
11602select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='opaque_mysql_type_var_string') as TIME) from t where c='opaque_mysql_type_var_string';
11603concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_var_string') as TIME)
11604From JSON subselect opaque_mysql_type_var_string as TIME	NULL
11605select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='null') as DECIMAL(5,2)) from t where c='null';
11606concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='null') as DECIMAL(5,2))
11607From JSON subselect null as DECIMAL(5,2)	0.00
11608Warnings:
11609Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 29
11610select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='bool';
11611concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
11612From JSON subselect bool as DECIMAL(5,2)	1.00
11613select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='uint') as DECIMAL(5,2)) from t where c='uint';
11614concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='uint') as DECIMAL(5,2))
11615From JSON subselect uint as DECIMAL(5,2)	12.00
11616select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='int';
11617concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
11618From JSON subselect int as DECIMAL(5,2)	12.00
11619select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='double') as DECIMAL(5,2)) from t where c='double';
11620concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='double') as DECIMAL(5,2))
11621From JSON subselect double as DECIMAL(5,2)	3.14
11622select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='stringany';
11623concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
11624From JSON subselect stringany as DECIMAL(5,2)	0.00
11625Warnings:
11626Warning	1366	Incorrect DECIMAL value: '0' for column '' at row -1
11627Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 6
11628select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='stringint') as DECIMAL(5,2)) from t where c='stringint';
11629concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='stringint') as DECIMAL(5,2))
11630From JSON subselect stringint as DECIMAL(5,2)	1.00
11631select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='stringdecimal';
11632concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
11633From JSON subselect stringdecimal as DECIMAL(5,2)	3.14
11634select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='object') as DECIMAL(5,2)) from t where c='object';
11635concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='object') as DECIMAL(5,2))
11636From JSON subselect object as DECIMAL(5,2)	0.00
11637Warnings:
11638Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 29
11639select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='array';
11640concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
11641From JSON subselect array as DECIMAL(5,2)	0.00
11642Warnings:
11643Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 10
11644select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='opaque_mysql_type_decimal') as DECIMAL(5,2)) from t where c='opaque_mysql_type_decimal';
11645concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_decimal') as DECIMAL(5,2))
11646From JSON subselect opaque_mysql_type_decimal as DECIMAL(5,2)	3.14
11647select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_set';
11648concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
11649From JSON subselect opaque_mysql_type_set as DECIMAL(5,2)	0.00
11650Warnings:
11651Warning	1366	Incorrect DECIMAL value: '0' for column '' at row -1
11652Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 12
11653select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='opaque_mysql_type_enum') as DECIMAL(5,2)) from t where c='opaque_mysql_type_enum';
11654concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_enum') as DECIMAL(5,2))
11655From JSON subselect opaque_mysql_type_enum as DECIMAL(5,2)	0.00
11656Warnings:
11657Warning	1366	Incorrect DECIMAL value: '0' for column '' at row -1
11658Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 29
11659select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_date';
11660concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
11661From JSON subselect opaque_mysql_type_date as DECIMAL(5,2)	0.00
11662Warnings:
11663Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 14
11664select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='opaque_mysql_type_time') as DECIMAL(5,2)) from t where c='opaque_mysql_type_time';
11665concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_time') as DECIMAL(5,2))
11666From JSON subselect opaque_mysql_type_time as DECIMAL(5,2)	0.00
11667Warnings:
11668Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 29
11669select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_datetime';
11670concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
11671From JSON subselect opaque_mysql_type_datetime as DECIMAL(5,2)	0.00
11672Warnings:
11673Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 16
11674select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='opaque_mysql_type_geom') as DECIMAL(5,2)) from t where c='opaque_mysql_type_geom';
11675concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_geom') as DECIMAL(5,2))
11676From JSON subselect opaque_mysql_type_geom as DECIMAL(5,2)	0.00
11677Warnings:
11678Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 29
11679select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_bit';
11680concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
11681From JSON subselect opaque_mysql_type_bit as DECIMAL(5,2)	0.00
11682Warnings:
11683Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 18
11684select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='opaque_mysql_type_year') as DECIMAL(5,2)) from t where c='opaque_mysql_type_year';
11685concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_year') as DECIMAL(5,2))
11686From JSON subselect opaque_mysql_type_year as DECIMAL(5,2)	0.00
11687Warnings:
11688Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 29
11689select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_year';
11690concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
11691From JSON subselect opaque_mysql_type_year as DECIMAL(5,2)	0.00
11692Warnings:
11693Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 19
11694select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='opaque_mysql_type_blob') as DECIMAL(5,2)) from t where c='opaque_mysql_type_blob';
11695concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_blob') as DECIMAL(5,2))
11696From JSON subselect opaque_mysql_type_blob as DECIMAL(5,2)	0.00
11697Warnings:
11698Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 29
11699select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_longblob';
11700concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
11701From JSON subselect opaque_mysql_type_longblob as DECIMAL(5,2)	0.00
11702Warnings:
11703Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 21
11704select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='opaque_mysql_type_mediumblob') as DECIMAL(5,2)) from t where c='opaque_mysql_type_mediumblob';
11705concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_mediumblob') as DECIMAL(5,2))
11706From JSON subselect opaque_mysql_type_mediumblob as DECIMAL(5,2)	0.00
11707Warnings:
11708Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 29
11709select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_tinyblob';
11710concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
11711From JSON subselect opaque_mysql_type_tinyblob as DECIMAL(5,2)	0.00
11712Warnings:
11713Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 23
11714select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='opaque_mysql_type_varbinary') as DECIMAL(5,2)) from t where c='opaque_mysql_type_varbinary';
11715concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_varbinary') as DECIMAL(5,2))
11716From JSON subselect opaque_mysql_type_varbinary as DECIMAL(5,2)	NULL
11717select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_binary';
11718concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
11719From JSON subselect opaque_mysql_type_binary as DECIMAL(5,2)	NULL
11720select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='opaque_mysql_type_varchar') as DECIMAL(5,2)) from t where c='opaque_mysql_type_varchar';
11721concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_varchar') as DECIMAL(5,2))
11722From JSON subselect opaque_mysql_type_varchar as DECIMAL(5,2)	0.00
11723Warnings:
11724Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 29
11725select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_string';
11726concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
11727From JSON subselect opaque_mysql_type_string as DECIMAL(5,2)	NULL
11728select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast((select j from t where c='opaque_mysql_type_var_string') as DECIMAL(5,2)) from t where c='opaque_mysql_type_var_string';
11729concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_var_string') as DECIMAL(5,2))
11730From JSON subselect opaque_mysql_type_var_string as DECIMAL(5,2)	NULL
11731select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='null') as UNSIGNED) from t where c='null';
11732concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='null') as UNSIGNED)
11733From JSON subselect null as UNSIGNED	0
11734Warnings:
11735Warning	1292	Truncated incorrect INTEGER value: 'null'
11736select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='bool';
11737concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
11738From JSON subselect bool as UNSIGNED	1
11739select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='uint') as UNSIGNED) from t where c='uint';
11740concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='uint') as UNSIGNED)
11741From JSON subselect uint as UNSIGNED	12
11742select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='int';
11743concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
11744From JSON subselect int as UNSIGNED	12
11745select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='double') as UNSIGNED) from t where c='double';
11746concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='double') as UNSIGNED)
11747From JSON subselect double as UNSIGNED	3
11748Warnings:
11749Warning	1292	Truncated incorrect INTEGER value: '3.14'
11750select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='stringany';
11751concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
11752From JSON subselect stringany as UNSIGNED	0
11753Warnings:
11754Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 6
11755select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='stringint') as UNSIGNED) from t where c='stringint';
11756concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='stringint') as UNSIGNED)
11757From JSON subselect stringint as UNSIGNED	0
11758Warnings:
11759Warning	1292	Truncated incorrect INTEGER value: '"1"'
11760select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='stringdecimal';
11761concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
11762From JSON subselect stringdecimal as UNSIGNED	3
11763Warnings:
11764Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 8
11765select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='object') as UNSIGNED) from t where c='object';
11766concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='object') as UNSIGNED)
11767From JSON subselect object as UNSIGNED	0
11768Warnings:
11769Warning	1292	Truncated incorrect INTEGER value: '{"a": 3}'
11770select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='array';
11771concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
11772From JSON subselect array as UNSIGNED	0
11773Warnings:
11774Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 10
11775select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='opaque_mysql_type_decimal') as UNSIGNED) from t where c='opaque_mysql_type_decimal';
11776concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_decimal') as UNSIGNED)
11777From JSON subselect opaque_mysql_type_decimal as UNSIGNED	3
11778Warnings:
11779Warning	1292	Truncated incorrect INTEGER value: '3.14'
11780select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_set';
11781concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
11782From JSON subselect opaque_mysql_type_set as UNSIGNED	0
11783Warnings:
11784Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 12
11785select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='opaque_mysql_type_enum') as UNSIGNED) from t where c='opaque_mysql_type_enum';
11786concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_enum') as UNSIGNED)
11787From JSON subselect opaque_mysql_type_enum as UNSIGNED	0
11788Warnings:
11789Warning	1292	Truncated incorrect INTEGER value: '"b"'
11790select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_date';
11791concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
11792From JSON subselect opaque_mysql_type_date as UNSIGNED	0
11793Warnings:
11794Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 14
11795select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='opaque_mysql_type_time') as UNSIGNED) from t where c='opaque_mysql_type_time';
11796concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_time') as UNSIGNED)
11797From JSON subselect opaque_mysql_type_time as UNSIGNED	0
11798Warnings:
11799Warning	1292	Truncated incorrect INTEGER value: '"23:24:25.000000"'
11800select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_datetime';
11801concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
11802From JSON subselect opaque_mysql_type_datetime as UNSIGNED	0
11803Warnings:
11804Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 16
11805select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='opaque_mysql_type_geom') as UNSIGNED) from t where c='opaque_mysql_type_geom';
11806concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_geom') as UNSIGNED)
11807From JSON subselect opaque_mysql_type_geom as UNSIGNED	0
11808Warnings:
11809Warning	1292	Truncated incorrect INTEGER value: '{"type": "Point", "coordinates": [1, 1]}'
11810select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_bit';
11811concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
11812From JSON subselect opaque_mysql_type_bit as UNSIGNED	0
11813Warnings:
11814Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 18
11815select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='opaque_mysql_type_year') as UNSIGNED) from t where c='opaque_mysql_type_year';
11816concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_year') as UNSIGNED)
11817From JSON subselect opaque_mysql_type_year as UNSIGNED	0
11818Warnings:
11819Warning	1292	Truncated incorrect INTEGER value: '"base64:type13:MTk5Mg=="'
11820select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_year';
11821concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
11822From JSON subselect opaque_mysql_type_year as UNSIGNED	0
11823Warnings:
11824Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 19
11825select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='opaque_mysql_type_blob') as UNSIGNED) from t where c='opaque_mysql_type_blob';
11826concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_blob') as UNSIGNED)
11827From JSON subselect opaque_mysql_type_blob as UNSIGNED	0
11828Warnings:
11829Warning	1292	Truncated incorrect INTEGER value: '"base64:type252:yv66vg=="'
11830select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_longblob';
11831concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
11832From JSON subselect opaque_mysql_type_longblob as UNSIGNED	0
11833Warnings:
11834Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 21
11835select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='opaque_mysql_type_mediumblob') as UNSIGNED) from t where c='opaque_mysql_type_mediumblob';
11836concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_mediumblob') as UNSIGNED)
11837From JSON subselect opaque_mysql_type_mediumblob as UNSIGNED	0
11838Warnings:
11839Warning	1292	Truncated incorrect INTEGER value: '"base64:type250:yv66vg=="'
11840select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_tinyblob';
11841concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
11842From JSON subselect opaque_mysql_type_tinyblob as UNSIGNED	0
11843Warnings:
11844Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 23
11845select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='opaque_mysql_type_varbinary') as UNSIGNED) from t where c='opaque_mysql_type_varbinary';
11846concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_varbinary') as UNSIGNED)
11847From JSON subselect opaque_mysql_type_varbinary as UNSIGNED	NULL
11848select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_binary';
11849concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
11850From JSON subselect opaque_mysql_type_binary as UNSIGNED	NULL
11851select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='opaque_mysql_type_varchar') as UNSIGNED) from t where c='opaque_mysql_type_varchar';
11852concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_varchar') as UNSIGNED)
11853From JSON subselect opaque_mysql_type_varchar as UNSIGNED	0
11854Warnings:
11855Warning	1292	Truncated incorrect INTEGER value: '"base64:type15:Zm9v"'
11856select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_string';
11857concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
11858From JSON subselect opaque_mysql_type_string as UNSIGNED	NULL
11859select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='opaque_mysql_type_var_string') as UNSIGNED) from t where c='opaque_mysql_type_var_string';
11860concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_var_string') as UNSIGNED)
11861From JSON subselect opaque_mysql_type_var_string as UNSIGNED	NULL
11862select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='null') as SIGNED) from t where c='null';
11863concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='null') as SIGNED)
11864From JSON subselect null as SIGNED	0
11865Warnings:
11866Warning	1292	Truncated incorrect INTEGER value: 'null'
11867select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='bool';
11868concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
11869From JSON subselect bool as SIGNED	1
11870select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='uint') as SIGNED) from t where c='uint';
11871concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='uint') as SIGNED)
11872From JSON subselect uint as SIGNED	12
11873select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='int';
11874concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
11875From JSON subselect int as SIGNED	12
11876select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='double') as SIGNED) from t where c='double';
11877concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='double') as SIGNED)
11878From JSON subselect double as SIGNED	3
11879Warnings:
11880Warning	1292	Truncated incorrect INTEGER value: '3.14'
11881select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='stringany';
11882concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
11883From JSON subselect stringany as SIGNED	0
11884Warnings:
11885Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 6
11886select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='stringint') as SIGNED) from t where c='stringint';
11887concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='stringint') as SIGNED)
11888From JSON subselect stringint as SIGNED	0
11889Warnings:
11890Warning	1292	Truncated incorrect INTEGER value: '"1"'
11891select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='stringdecimal';
11892concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
11893From JSON subselect stringdecimal as SIGNED	3
11894Warnings:
11895Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 8
11896select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='object') as SIGNED) from t where c='object';
11897concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='object') as SIGNED)
11898From JSON subselect object as SIGNED	0
11899Warnings:
11900Warning	1292	Truncated incorrect INTEGER value: '{"a": 3}'
11901select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='array';
11902concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
11903From JSON subselect array as SIGNED	0
11904Warnings:
11905Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 10
11906select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='opaque_mysql_type_decimal') as SIGNED) from t where c='opaque_mysql_type_decimal';
11907concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_decimal') as SIGNED)
11908From JSON subselect opaque_mysql_type_decimal as SIGNED	3
11909Warnings:
11910Warning	1292	Truncated incorrect INTEGER value: '3.14'
11911select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_set';
11912concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
11913From JSON subselect opaque_mysql_type_set as SIGNED	0
11914Warnings:
11915Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 12
11916select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='opaque_mysql_type_enum') as SIGNED) from t where c='opaque_mysql_type_enum';
11917concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_enum') as SIGNED)
11918From JSON subselect opaque_mysql_type_enum as SIGNED	0
11919Warnings:
11920Warning	1292	Truncated incorrect INTEGER value: '"b"'
11921select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_date';
11922concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
11923From JSON subselect opaque_mysql_type_date as SIGNED	0
11924Warnings:
11925Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 14
11926select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='opaque_mysql_type_time') as SIGNED) from t where c='opaque_mysql_type_time';
11927concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_time') as SIGNED)
11928From JSON subselect opaque_mysql_type_time as SIGNED	0
11929Warnings:
11930Warning	1292	Truncated incorrect INTEGER value: '"23:24:25.000000"'
11931select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_datetime';
11932concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
11933From JSON subselect opaque_mysql_type_datetime as SIGNED	0
11934Warnings:
11935Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 16
11936select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='opaque_mysql_type_geom') as SIGNED) from t where c='opaque_mysql_type_geom';
11937concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_geom') as SIGNED)
11938From JSON subselect opaque_mysql_type_geom as SIGNED	0
11939Warnings:
11940Warning	1292	Truncated incorrect INTEGER value: '{"type": "Point", "coordinates": [1, 1]}'
11941select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_bit';
11942concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
11943From JSON subselect opaque_mysql_type_bit as SIGNED	0
11944Warnings:
11945Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 18
11946select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='opaque_mysql_type_year') as SIGNED) from t where c='opaque_mysql_type_year';
11947concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_year') as SIGNED)
11948From JSON subselect opaque_mysql_type_year as SIGNED	0
11949Warnings:
11950Warning	1292	Truncated incorrect INTEGER value: '"base64:type13:MTk5Mg=="'
11951select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_year';
11952concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
11953From JSON subselect opaque_mysql_type_year as SIGNED	0
11954Warnings:
11955Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 19
11956select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='opaque_mysql_type_blob') as SIGNED) from t where c='opaque_mysql_type_blob';
11957concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_blob') as SIGNED)
11958From JSON subselect opaque_mysql_type_blob as SIGNED	0
11959Warnings:
11960Warning	1292	Truncated incorrect INTEGER value: '"base64:type252:yv66vg=="'
11961select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_longblob';
11962concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
11963From JSON subselect opaque_mysql_type_longblob as SIGNED	0
11964Warnings:
11965Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 21
11966select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='opaque_mysql_type_mediumblob') as SIGNED) from t where c='opaque_mysql_type_mediumblob';
11967concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_mediumblob') as SIGNED)
11968From JSON subselect opaque_mysql_type_mediumblob as SIGNED	0
11969Warnings:
11970Warning	1292	Truncated incorrect INTEGER value: '"base64:type250:yv66vg=="'
11971select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_tinyblob';
11972concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
11973From JSON subselect opaque_mysql_type_tinyblob as SIGNED	0
11974Warnings:
11975Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 23
11976select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='opaque_mysql_type_varbinary') as SIGNED) from t where c='opaque_mysql_type_varbinary';
11977concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_varbinary') as SIGNED)
11978From JSON subselect opaque_mysql_type_varbinary as SIGNED	NULL
11979select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_binary';
11980concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
11981From JSON subselect opaque_mysql_type_binary as SIGNED	NULL
11982select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='opaque_mysql_type_varchar') as SIGNED) from t where c='opaque_mysql_type_varchar';
11983concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_varchar') as SIGNED)
11984From JSON subselect opaque_mysql_type_varchar as SIGNED	0
11985Warnings:
11986Warning	1292	Truncated incorrect INTEGER value: '"base64:type15:Zm9v"'
11987select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_string';
11988concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
11989From JSON subselect opaque_mysql_type_string as SIGNED	NULL
11990select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='opaque_mysql_type_var_string') as SIGNED) from t where c='opaque_mysql_type_var_string';
11991concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_var_string') as SIGNED)
11992From JSON subselect opaque_mysql_type_var_string as SIGNED	NULL
11993Warnings:
11994Note	1051	Unknown table 'test.comparison_weight'
11995"Test for JSON vs JSON"
11996""
11997""
11998side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
11999"Comparator <"
12000"=============="
12001side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12002"Comparator >="
12003"=============="
12004side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12005"Comparator <="
12006"=============="
12007side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12008"Comparator ="
12009"=============="
12010side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12011"Comparator !="
12012"=============="
12013side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12014"Comparator <>"
12015"=============="
12016side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12017"Comparator <=>"
12018"=============="
12019side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12020"Test for SQL vs JSON"
12021"Comparator ="
12022""
12023"Testcase for Tinyint"
12024validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120252nd Level	12	1	INTEGER	INTEGER	2	2	0	1
120262nd Level	3	1	INTEGER	INTEGER	2	2	0	1
120272nd Level	1	12	INTEGER	INTEGER	2	2	0	1
120282nd Level	3	12	INTEGER	INTEGER	2	2	0	1
120292nd Level	1	3	INTEGER	INTEGER	2	2	0	1
120302nd Level	12	3	INTEGER	INTEGER	2	2	0	1
120312nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
120322nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
120332nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
12034"Testcase for Boolean"
12035validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120362nd Level	12	1	INTEGER	INTEGER	2	2	0	1
120372nd Level	3	1	INTEGER	INTEGER	2	2	0	1
120382nd Level	1	12	INTEGER	INTEGER	2	2	0	1
120392nd Level	3	12	INTEGER	INTEGER	2	2	0	1
120402nd Level	1	3	INTEGER	INTEGER	2	2	0	1
120412nd Level	12	3	INTEGER	INTEGER	2	2	0	1
120422nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
120432nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
120442nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
12045"Testcase for small Int Signed"
12046validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120472nd Level	12	1	INTEGER	INTEGER	2	2	0	1
120482nd Level	3	1	INTEGER	INTEGER	2	2	0	1
120492nd Level	1	12	INTEGER	INTEGER	2	2	0	1
120502nd Level	3	12	INTEGER	INTEGER	2	2	0	1
120512nd Level	1	3	INTEGER	INTEGER	2	2	0	1
120522nd Level	12	3	INTEGER	INTEGER	2	2	0	1
120532nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
120542nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
120552nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
12056"Testcase for Signed Medium Int"
12057validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120582nd Level	12	1	INTEGER	INTEGER	2	2	0	1
120592nd Level	3	1	INTEGER	INTEGER	2	2	0	1
120602nd Level	1	12	INTEGER	INTEGER	2	2	0	1
120612nd Level	3	12	INTEGER	INTEGER	2	2	0	1
120622nd Level	1	3	INTEGER	INTEGER	2	2	0	1
120632nd Level	12	3	INTEGER	INTEGER	2	2	0	1
120642nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
120652nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
120662nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
12067"Testcase for unsigned Medium Int"
12068validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120692nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
120702nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
120712nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
120722nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
120732nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
120742nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
120752nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
120762nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
120772nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
12078"Testcase for signed Int"
12079validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120802nd Level	12	1	INTEGER	INTEGER	2	2	0	1
120812nd Level	3	1	INTEGER	INTEGER	2	2	0	1
120822nd Level	1	12	INTEGER	INTEGER	2	2	0	1
120832nd Level	3	12	INTEGER	INTEGER	2	2	0	1
120842nd Level	1	3	INTEGER	INTEGER	2	2	0	1
120852nd Level	12	3	INTEGER	INTEGER	2	2	0	1
120862nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
120872nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
120882nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
12089"Testcase for Unsigned Int"
12090validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120912nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
120922nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
120932nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
120942nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
120952nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
120962nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
120972nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
120982nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
120992nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
12100"Testcase for Big Int"
12101validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
121022nd Level	12	1	INTEGER	INTEGER	2	2	0	1
121032nd Level	3	1	INTEGER	INTEGER	2	2	0	1
121042nd Level	1	12	INTEGER	INTEGER	2	2	0	1
121052nd Level	3	12	INTEGER	INTEGER	2	2	0	1
121062nd Level	1	3	INTEGER	INTEGER	2	2	0	1
121072nd Level	12	3	INTEGER	INTEGER	2	2	0	1
121082nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
121092nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
121102nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
12111"Testcase for Big Int Unsigned"
12112validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
121132nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
121142nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
121152nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
121162nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
121172nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
121182nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
121192nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
121202nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
121212nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
12122"Testcase for Decimal"
12123validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
121242nd Level	12.00	1	DECIMAL	INTEGER	2	2	0	1
121252nd Level	3.14	1	DECIMAL	INTEGER	2	2	0	1
121262nd Level	1.00	12	DECIMAL	INTEGER	2	2	0	1
121272nd Level	3.14	12	DECIMAL	INTEGER	2	2	0	1
121282nd Level	1.00	3	DECIMAL	INTEGER	2	2	0	1
121292nd Level	12.00	3	DECIMAL	INTEGER	2	2	0	1
121302nd Level	3.14	3	DECIMAL	INTEGER	2	2	0	1
121312nd Level	1.00	3.14	DECIMAL	DECIMAL	2	2	0	1
121322nd Level	12.00	3.14	DECIMAL	DECIMAL	2	2	0	1
12133"Testcase for Double"
12134validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
121352nd Level	12	1	DOUBLE	INTEGER	2	2	0	1
121362nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
121372nd Level	1	12	DOUBLE	INTEGER	2	2	0	1
121382nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
121392nd Level	1	3	DOUBLE	INTEGER	2	2	0	1
121402nd Level	12	3	DOUBLE	INTEGER	2	2	0	1
121412nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
121422nd Level	1	3.14	DOUBLE	DECIMAL	2	2	0	1
121432nd Level	12	3.14	DOUBLE	DECIMAL	2	2	0	1
12144"Testcase for CHAR"
12145validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
121462nd Level	12	1	INTEGER	INTEGER	2	2	0	1
121472nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
121482nd Level	12	12	INTEGER	INTEGER	2	2	0	1
121492nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
121502nd Level	12	3	INTEGER	INTEGER	2	2	0	1
121512nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
121522nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
121532nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
121542nd Level	null	null	NULL	NULL	1	1	0	1
121552nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
121562nd Level	"a"	"a"	STRING	STRING	3	3	0	1
121572nd Level	"1"	"a"	STRING	STRING	3	3	0	1
121582nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
121592nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
121602nd Level	"b"	"a"	STRING	STRING	3	3	0	1
121612nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
121622nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
121632nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
121642nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
121652nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
121662nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
121672nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
121682nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
121692nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
121702nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
121712nd Level	"a"	"1"	STRING	STRING	3	3	0	1
121722nd Level	"1"	"1"	STRING	STRING	3	3	0	1
121732nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
121742nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
121752nd Level	"b"	"1"	STRING	STRING	3	3	0	1
121762nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
121772nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
121782nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
121792nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
121802nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
121812nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
121822nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
121832nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
121842nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
121852nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
121861st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
121872nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
121882nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
121892nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
121902nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
121912nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
121922nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
121932nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
121942nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
121952nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
121962nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
121972nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
121982nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
121992nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
122002nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
122012nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
122022nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
122032nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
122042nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
122052nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
122062nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
122072nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
122082nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
122092nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
122102nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
122112nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
122122nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
122132nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
122142nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
122152nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
122162nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
122172nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
122182nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
122192nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
122202nd Level	"a"	"b"	STRING	STRING	3	3	0	1
122212nd Level	"1"	"b"	STRING	STRING	3	3	0	1
122222nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
122232nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
122242nd Level	"b"	"b"	STRING	STRING	3	3	0	1
122252nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
122262nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
122272nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
122282nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
122292nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
122302nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
122312nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
122322nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
122332nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
122342nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
122352nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
122362nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
122372nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
122382nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
122392nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
122402nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
122412nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
122422nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
122432nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
122442nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
122452nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
122462nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
122472nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
122482nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
122492nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
122502nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
122512nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
122522nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
122532nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
122542nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
122552nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
122562nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
122572nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
122582nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
122592nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
122602nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
122612nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
122622nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
122632nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
122642nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
122652nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122662nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122672nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122682nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122692nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122702nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122712nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122722nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122732nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122742nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122752nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122762nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122772nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122782nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122792nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
122802nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
122812nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
122822nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122832nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122842nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122852nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122862nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122872nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122882nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122892nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122902nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122912nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122922nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122932nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122942nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122952nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122962nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
122972nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
122982nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
122992nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
123002nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
123012nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
123022nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
123032nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
123042nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
123052nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
123062nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
123072nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
123082nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
123092nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
123102nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
123112nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
123122nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123132nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123142nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123152nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123162nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123172nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123182nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123192nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123202nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123212nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123222nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123232nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123242nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123252nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123262nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
123272nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123282nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123292nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123302nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123312nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123322nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123332nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123342nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123352nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123362nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123372nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123382nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123392nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123402nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123412nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
123422nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123432nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123442nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123452nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123462nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123472nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123482nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123492nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123502nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123512nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123522nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123532nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123542nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123552nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123562nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
123572nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123582nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123592nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123602nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123612nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123622nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123632nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123642nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123652nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123662nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123672nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123682nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123692nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123702nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123712nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
123722nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
123732nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
123742nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
123752nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
123762nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
123772nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
123782nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
123792nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
123802nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
123812nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
123822nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
123832nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
123842nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
123852nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
123862nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
12387"Testcase for VARCHAR"
12388validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
123892nd Level	12	1	INTEGER	INTEGER	2	2	0	1
123902nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
123912nd Level	12	12	INTEGER	INTEGER	2	2	0	1
123922nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
123932nd Level	12	3	INTEGER	INTEGER	2	2	0	1
123942nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
123952nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
123962nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
123972nd Level	null	null	NULL	NULL	1	1	0	1
123982nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
123992nd Level	"a"	"a"	STRING	STRING	3	3	0	1
124002nd Level	"1"	"a"	STRING	STRING	3	3	0	1
124012nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
124022nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
124032nd Level	"b"	"a"	STRING	STRING	3	3	0	1
124042nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
124052nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
124062nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
124072nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
124082nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
124092nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
124102nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
124112nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
124122nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
124132nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
124142nd Level	"a"	"1"	STRING	STRING	3	3	0	1
124152nd Level	"1"	"1"	STRING	STRING	3	3	0	1
124162nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
124172nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
124182nd Level	"b"	"1"	STRING	STRING	3	3	0	1
124192nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
124202nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
124212nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
124222nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
124232nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
124242nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
124252nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
124262nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
124272nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
124282nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
124291st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
124302nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
124312nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
124322nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
124332nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
124342nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
124352nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
124362nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
124372nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
124382nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
124392nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
124402nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
124412nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
124422nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
124432nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
124442nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
124452nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
124462nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
124472nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
124482nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
124492nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
124502nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
124512nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
124522nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
124532nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
124542nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
124552nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
124562nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
124572nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
124582nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
124592nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
124602nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
124612nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
124622nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
124632nd Level	"a"	"b"	STRING	STRING	3	3	0	1
124642nd Level	"1"	"b"	STRING	STRING	3	3	0	1
124652nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
124662nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
124672nd Level	"b"	"b"	STRING	STRING	3	3	0	1
124682nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
124692nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
124702nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
124712nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
124722nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
124732nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
124742nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
124752nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
124762nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
124772nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
124782nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
124792nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
124802nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
124812nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
124822nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
124832nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
124842nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
124852nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
124862nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
124872nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
124882nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
124892nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
124902nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
124912nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
124922nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
124932nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
124942nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
124952nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
124962nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
124972nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
124982nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
124992nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
125002nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
125012nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
125022nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
125032nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
125042nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
125052nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
125062nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
125072nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
125082nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125092nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125102nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125112nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125122nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125132nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125142nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125152nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125162nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125172nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125182nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125192nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125202nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125212nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125222nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
125232nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
125242nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
125252nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125262nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125272nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125282nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125292nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125302nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125312nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125322nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125332nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125342nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125352nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125362nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125372nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125382nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125392nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
125402nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125412nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125422nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125432nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125442nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125452nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125462nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125472nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125482nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125492nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125502nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125512nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125522nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125532nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125542nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
125552nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125562nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125572nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125582nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125592nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125602nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125612nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125622nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125632nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125642nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125652nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125662nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125672nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125682nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125692nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
125702nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125712nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125722nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125732nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125742nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125752nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125762nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125772nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125782nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125792nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125802nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125812nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125822nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125832nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125842nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
125852nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
125862nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
125872nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
125882nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
125892nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
125902nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
125912nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
125922nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
125932nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
125942nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
125952nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
125962nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
125972nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
125982nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
125992nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
126002nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126012nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126022nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126032nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126042nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126052nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126062nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126072nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126082nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126092nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126102nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126112nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126122nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126132nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126142nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
126152nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
126162nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
126172nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
126182nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
126192nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
126202nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
126212nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
126222nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
126232nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
126242nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
126252nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
126262nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
126272nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
126282nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
126292nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
12630"Testcase for Binary(255)"
12631validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12632"Testcase for Variable Binary"
12633validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12634"Testcase for TinyBlob"
12635validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12636"Testcase for TinyText"
12637validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
126382nd Level	12	1	INTEGER	INTEGER	2	2	0	1
126392nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
126402nd Level	12	12	INTEGER	INTEGER	2	2	0	1
126412nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
126422nd Level	12	3	INTEGER	INTEGER	2	2	0	1
126432nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
126442nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
126452nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
126462nd Level	null	null	NULL	NULL	1	1	0	1
126472nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
126482nd Level	"a"	"a"	STRING	STRING	3	3	0	1
126492nd Level	"1"	"a"	STRING	STRING	3	3	0	1
126502nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
126512nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
126522nd Level	"b"	"a"	STRING	STRING	3	3	0	1
126532nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
126542nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
126552nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
126562nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
126572nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
126582nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
126592nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
126602nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
126612nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
126622nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
126632nd Level	"a"	"1"	STRING	STRING	3	3	0	1
126642nd Level	"1"	"1"	STRING	STRING	3	3	0	1
126652nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
126662nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
126672nd Level	"b"	"1"	STRING	STRING	3	3	0	1
126682nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
126692nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
126702nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
126712nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
126722nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
126732nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
126742nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
126752nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
126762nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
126772nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
126781st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
126792nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
126802nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
126812nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
126822nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
126832nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
126842nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
126852nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
126862nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
126872nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
126882nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
126892nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
126902nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
126912nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
126922nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
126932nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
126942nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
126952nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
126962nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
126972nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
126982nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
126992nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
127002nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
127012nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
127022nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
127032nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
127042nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
127052nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
127062nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
127072nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
127082nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
127092nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
127102nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
127112nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
127122nd Level	"a"	"b"	STRING	STRING	3	3	0	1
127132nd Level	"1"	"b"	STRING	STRING	3	3	0	1
127142nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
127152nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
127162nd Level	"b"	"b"	STRING	STRING	3	3	0	1
127172nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
127182nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
127192nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
127202nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
127212nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
127222nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
127232nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
127242nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
127252nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
127262nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
127272nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
127282nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
127292nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
127302nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
127312nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
127322nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
127332nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
127342nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
127352nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
127362nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
127372nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
127382nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
127392nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
127402nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
127412nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
127422nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
127432nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
127442nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
127452nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
127462nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
127472nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
127482nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
127492nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
127502nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
127512nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
127522nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
127532nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
127542nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
127552nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
127562nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
127572nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127582nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127592nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127602nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127612nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127622nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127632nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127642nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127652nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127662nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127672nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127682nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127692nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127702nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127712nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
127722nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
127732nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
127742nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127752nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127762nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127772nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127782nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127792nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127802nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127812nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127822nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127832nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127842nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127852nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127862nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127872nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127882nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
127892nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
127902nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
127912nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
127922nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
127932nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
127942nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
127952nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
127962nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
127972nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
127982nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
127992nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
128002nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
128012nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
128022nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
128032nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
128042nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128052nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128062nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128072nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128082nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128092nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128102nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128112nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128122nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128132nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128142nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128152nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128162nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128172nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128182nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
128192nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128202nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128212nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128222nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128232nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128242nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128252nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128262nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128272nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128282nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128292nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128302nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128312nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128322nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128332nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
128342nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128352nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128362nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128372nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128382nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128392nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128402nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128412nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128422nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128432nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128442nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128452nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128462nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128472nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128482nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
128492nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128502nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128512nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128522nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128532nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128542nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128552nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128562nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128572nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128582nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128592nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128602nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128612nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128622nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128632nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
128642nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
128652nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
128662nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
128672nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
128682nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
128692nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
128702nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
128712nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
128722nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
128732nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
128742nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
128752nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
128762nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
128772nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
128782nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
12879"Testcase for Blob"
12880validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12881"Testcase for Text"
12882validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
128832nd Level	12	1	INTEGER	INTEGER	2	2	0	1
128842nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
128852nd Level	12	12	INTEGER	INTEGER	2	2	0	1
128862nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
128872nd Level	12	3	INTEGER	INTEGER	2	2	0	1
128882nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
128892nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
128902nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
128912nd Level	null	null	NULL	NULL	1	1	0	1
128922nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
128932nd Level	"a"	"a"	STRING	STRING	3	3	0	1
128942nd Level	"1"	"a"	STRING	STRING	3	3	0	1
128952nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
128962nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
128972nd Level	"b"	"a"	STRING	STRING	3	3	0	1
128982nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
128992nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
129002nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
129012nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
129022nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
129032nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
129042nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
129052nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
129062nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
129072nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
129082nd Level	"a"	"1"	STRING	STRING	3	3	0	1
129092nd Level	"1"	"1"	STRING	STRING	3	3	0	1
129102nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
129112nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
129122nd Level	"b"	"1"	STRING	STRING	3	3	0	1
129132nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
129142nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
129152nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
129162nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
129172nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
129182nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
129192nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
129202nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
129212nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
129222nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
129231st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
129242nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
129252nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
129262nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
129272nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
129282nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
129292nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
129302nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
129312nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
129322nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
129332nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
129342nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
129352nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
129362nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
129372nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
129382nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
129392nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
129402nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
129412nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
129422nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
129432nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
129442nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
129452nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
129462nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
129472nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
129482nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
129492nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
129502nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
129512nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
129522nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
129532nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
129542nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
129552nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
129562nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
129572nd Level	"a"	"b"	STRING	STRING	3	3	0	1
129582nd Level	"1"	"b"	STRING	STRING	3	3	0	1
129592nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
129602nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
129612nd Level	"b"	"b"	STRING	STRING	3	3	0	1
129622nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
129632nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
129642nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
129652nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
129662nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
129672nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
129682nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
129692nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
129702nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
129712nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
129722nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
129732nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
129742nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
129752nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
129762nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
129772nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
129782nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
129792nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
129802nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
129812nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
129822nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
129832nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
129842nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
129852nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
129862nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
129872nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
129882nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
129892nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
129902nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
129912nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
129922nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
129932nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
129942nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
129952nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
129962nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
129972nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
129982nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
129992nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
130002nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
130012nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
130022nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130032nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130042nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130052nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130062nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130072nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130082nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130092nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130102nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130112nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130122nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130132nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130142nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130152nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130162nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
130172nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
130182nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
130192nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130202nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130212nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130222nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130232nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130242nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130252nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130262nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130272nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130282nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130292nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130302nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130312nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130322nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130332nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
130342nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130352nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130362nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130372nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130382nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130392nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130402nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130412nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130422nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130432nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130442nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130452nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130462nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130472nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130482nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
130492nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130502nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130512nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130522nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130532nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130542nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130552nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130562nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130572nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130582nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130592nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130602nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130612nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130622nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130632nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
130642nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130652nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130662nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130672nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130682nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130692nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130702nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130712nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130722nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130732nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130742nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130752nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130762nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130772nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130782nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
130792nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130802nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130812nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130822nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130832nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130842nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130852nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130862nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130872nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130882nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130892nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130902nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130912nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130922nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130932nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
130942nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
130952nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
130962nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
130972nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
130982nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
130992nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
131002nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
131012nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
131022nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
131032nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
131042nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
131052nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
131062nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
131072nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
131082nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
131092nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
131102nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
131112nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
131122nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
131132nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
131142nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
131152nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
131162nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
131172nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
131182nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
131192nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
131202nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
131212nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
131222nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
131232nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
13124"Testcase for Medium Blob"
13125validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
13126"Testcase for Medium Text"
13127validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
131282nd Level	12	1	INTEGER	INTEGER	2	2	0	1
131292nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
131302nd Level	12	12	INTEGER	INTEGER	2	2	0	1
131312nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
131322nd Level	12	3	INTEGER	INTEGER	2	2	0	1
131332nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
131342nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
131352nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
131362nd Level	null	null	NULL	NULL	1	1	0	1
131372nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
131382nd Level	"a"	"a"	STRING	STRING	3	3	0	1
131392nd Level	"1"	"a"	STRING	STRING	3	3	0	1
131402nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
131412nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
131422nd Level	"b"	"a"	STRING	STRING	3	3	0	1
131432nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
131442nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
131452nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
131462nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
131472nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
131482nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
131492nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
131502nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
131512nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
131522nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
131532nd Level	"a"	"1"	STRING	STRING	3	3	0	1
131542nd Level	"1"	"1"	STRING	STRING	3	3	0	1
131552nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
131562nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
131572nd Level	"b"	"1"	STRING	STRING	3	3	0	1
131582nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
131592nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
131602nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
131612nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
131622nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
131632nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
131642nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
131652nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
131662nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
131672nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
131681st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
131692nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
131702nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
131712nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
131722nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
131732nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
131742nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
131752nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
131762nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
131772nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
131782nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
131792nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
131802nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
131812nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
131822nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
131832nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
131842nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
131852nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
131862nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
131872nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
131882nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
131892nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
131902nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
131912nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
131922nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
131932nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
131942nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
131952nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
131962nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
131972nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
131982nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
131992nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
132002nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
132012nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
132022nd Level	"a"	"b"	STRING	STRING	3	3	0	1
132032nd Level	"1"	"b"	STRING	STRING	3	3	0	1
132042nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
132052nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
132062nd Level	"b"	"b"	STRING	STRING	3	3	0	1
132072nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
132082nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
132092nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
132102nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
132112nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
132122nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
132132nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
132142nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
132152nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
132162nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
132172nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
132182nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
132192nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
132202nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
132212nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
132222nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
132232nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
132242nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
132252nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
132262nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
132272nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
132282nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
132292nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
132302nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
132312nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
132322nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
132332nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
132342nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
132352nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
132362nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
132372nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
132382nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
132392nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
132402nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
132412nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
132422nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
132432nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
132442nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
132452nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
132462nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
132472nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132482nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132492nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132502nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132512nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132522nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132532nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132542nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132552nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132562nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132572nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132582nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132592nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132602nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132612nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132622nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
132632nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
132642nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132652nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132662nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132672nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132682nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132692nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132702nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132712nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132722nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132732nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132742nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132752nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132762nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132772nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132782nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
132792nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132802nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132812nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132822nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132832nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132842nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132852nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132862nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132872nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132882nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132892nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132902nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132912nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132922nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132932nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
132942nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
132952nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
132962nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
132972nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
132982nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
132992nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133002nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133012nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133022nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133032nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133042nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133052nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133062nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133072nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133082nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133092nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133102nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133112nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133122nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133132nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133142nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133152nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133162nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133172nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133182nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133192nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133202nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133212nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133222nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133232nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133242nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133252nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133262nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133272nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133282nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133292nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133302nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133312nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133322nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133332nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133342nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133352nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133362nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133372nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133382nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133392nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133402nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133412nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133422nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133432nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133442nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133452nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133462nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133472nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133482nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133492nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133502nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133512nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133522nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133532nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133542nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133552nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133562nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133572nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133582nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133592nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133602nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133612nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133622nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133632nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133642nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133652nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133662nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133672nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133682nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
13369"Testcase for Long Blob"
13370validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
13371"Testcase for Long Text"
13372validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
133732nd Level	12	1	INTEGER	INTEGER	2	2	0	1
133742nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
133752nd Level	12	12	INTEGER	INTEGER	2	2	0	1
133762nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
133772nd Level	12	3	INTEGER	INTEGER	2	2	0	1
133782nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
133792nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
133802nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
133812nd Level	null	null	NULL	NULL	1	1	0	1
133822nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
133832nd Level	"a"	"a"	STRING	STRING	3	3	0	1
133842nd Level	"1"	"a"	STRING	STRING	3	3	0	1
133852nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
133862nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
133872nd Level	"b"	"a"	STRING	STRING	3	3	0	1
133882nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
133892nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
133902nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
133912nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
133922nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
133932nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
133942nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
133952nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
133962nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
133972nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
133982nd Level	"a"	"1"	STRING	STRING	3	3	0	1
133992nd Level	"1"	"1"	STRING	STRING	3	3	0	1
134002nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
134012nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
134022nd Level	"b"	"1"	STRING	STRING	3	3	0	1
134032nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
134042nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
134052nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
134062nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
134072nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
134082nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
134092nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
134102nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
134112nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
134122nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
134131st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
134142nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
134152nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
134162nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
134172nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
134182nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
134192nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
134202nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
134212nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
134222nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
134232nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
134242nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
134252nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
134262nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
134272nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
134282nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
134292nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
134302nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
134312nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
134322nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
134332nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
134342nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
134352nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
134362nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
134372nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
134382nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
134392nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
134402nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
134412nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
134422nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
134432nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
134442nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
134452nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
134462nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
134472nd Level	"a"	"b"	STRING	STRING	3	3	0	1
134482nd Level	"1"	"b"	STRING	STRING	3	3	0	1
134492nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
134502nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
134512nd Level	"b"	"b"	STRING	STRING	3	3	0	1
134522nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
134532nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
134542nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
134552nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
134562nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
134572nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
134582nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
134592nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
134602nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
134612nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
134622nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
134632nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
134642nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
134652nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
134662nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
134672nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
134682nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
134692nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
134702nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
134712nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
134722nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
134732nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
134742nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
134752nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
134762nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
134772nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
134782nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
134792nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
134802nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
134812nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
134822nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
134832nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
134842nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
134852nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
134862nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
134872nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
134882nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
134892nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
134902nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
134912nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
134922nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
134932nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
134942nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
134952nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
134962nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
134972nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
134982nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
134992nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135002nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135012nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135022nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135032nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135042nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135052nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135062nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135072nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
135082nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
135092nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135102nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135112nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135122nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135132nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135142nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135152nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135162nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135172nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135182nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135192nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135202nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135212nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135222nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135232nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
135242nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135252nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135262nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135272nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135282nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135292nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135302nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135312nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135322nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135332nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135342nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135352nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135362nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135372nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135382nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
135392nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135402nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135412nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135422nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135432nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135442nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135452nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135462nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135472nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135482nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135492nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135502nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135512nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135522nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135532nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135542nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135552nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135562nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135572nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135582nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135592nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135602nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135612nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135622nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135632nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135642nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135652nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135662nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135672nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135682nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135692nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135702nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135712nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135722nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135732nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135742nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135752nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135762nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135772nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135782nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135792nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135802nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135812nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135822nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135832nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135842nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135852nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135862nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135872nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135882nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135892nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135902nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135912nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135922nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135932nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135942nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135952nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135962nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135972nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135982nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135992nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136002nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136012nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136022nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136032nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136042nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136052nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136062nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136072nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136082nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136092nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136102nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136112nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136122nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136132nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
13614"Testcase for Enum"
13615validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
13616"Testcase for Set"
13617validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
13618"Test for SQL vs JSON"
13619"Comparator <"
13620""
13621"Testcase for Tinyint"
13622validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
136232nd Level	1	12	INTEGER	INTEGER	2	2	1	0
136242nd Level	3	12	INTEGER	INTEGER	2	2	1	0
136252nd Level	1	3	INTEGER	INTEGER	2	2	1	0
136262nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
136272nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
13628"Testcase for Boolean"
13629validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
136302nd Level	1	12	INTEGER	INTEGER	2	2	1	0
136312nd Level	3	12	INTEGER	INTEGER	2	2	1	0
136322nd Level	1	3	INTEGER	INTEGER	2	2	1	0
136332nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
136342nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
13635"Testcase for small Int Signed"
13636validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
136372nd Level	1	12	INTEGER	INTEGER	2	2	1	0
136382nd Level	3	12	INTEGER	INTEGER	2	2	1	0
136392nd Level	1	3	INTEGER	INTEGER	2	2	1	0
136402nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
136412nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
13642"Testcase for Signed Medium Int"
13643validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
136442nd Level	1	12	INTEGER	INTEGER	2	2	1	0
136452nd Level	3	12	INTEGER	INTEGER	2	2	1	0
136462nd Level	1	3	INTEGER	INTEGER	2	2	1	0
136472nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
136482nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
13649"Testcase for unsigned Medium Int"
13650validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
136512nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
136522nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
136532nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
136542nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
136552nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
13656"Testcase for signed Int"
13657validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
136582nd Level	1	12	INTEGER	INTEGER	2	2	1	0
136592nd Level	3	12	INTEGER	INTEGER	2	2	1	0
136602nd Level	1	3	INTEGER	INTEGER	2	2	1	0
136612nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
136622nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
13663"Testcase for Unsigned Int"
13664validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
136652nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
136662nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
136672nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
136682nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
136692nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
13670"Testcase for Big Int"
13671validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
136722nd Level	1	12	INTEGER	INTEGER	2	2	1	0
136732nd Level	3	12	INTEGER	INTEGER	2	2	1	0
136742nd Level	1	3	INTEGER	INTEGER	2	2	1	0
136752nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
136762nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
13677"Testcase for Big Int Unsigned"
13678validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
136792nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
136802nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
136812nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
136822nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
136832nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
13684"Testcase for Decimal"
13685validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
136862nd Level	1.00	12	DECIMAL	INTEGER	2	2	1	0
136872nd Level	3.14	12	DECIMAL	INTEGER	2	2	1	0
136882nd Level	1.00	3	DECIMAL	INTEGER	2	2	1	0
136892nd Level	1.00	3.14	DECIMAL	DECIMAL	2	2	1	0
13690"Testcase for Double"
13691validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
136922nd Level	1	12	DOUBLE	INTEGER	2	2	1	0
136932nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
136942nd Level	1	3	DOUBLE	INTEGER	2	2	1	0
136952nd Level	1	3.14	DOUBLE	DECIMAL	2	2	1	0
13696"Testcase for CHAR"
13697validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
136981st Level	null	1	NULL	INTEGER	1	2	0	1
136991st Level	null	12	NULL	INTEGER	1	2	0	1
137001st Level	null	3	NULL	INTEGER	1	2	0	1
137011st Level	null	3.14	NULL	DECIMAL	1	2	0	1
137022nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
137031st Level	null	"a"	NULL	STRING	1	3	0	1
137042nd Level	"a"	"a"	STRING	STRING	3	3	1	0
137052nd Level	"1"	"a"	STRING	STRING	3	3	1	0
137062nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
137071st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
137082nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
137092nd Level	"b"	"a"	STRING	STRING	3	3	1	0
137102nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
137112nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
137122nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
137132nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	1	0
137142nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	1	0
137152nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
137162nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
137172nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
137182nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
137192nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
137201st Level	null	"1"	NULL	STRING	1	3	0	1
137211st Level	12	"1"	INTEGER	STRING	2	3	0	1
137221st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
137232nd Level	"a"	"1"	STRING	STRING	3	3	1	0
137242nd Level	"1"	"1"	STRING	STRING	3	3	1	0
137252nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
137262nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
137272nd Level	"b"	"1"	STRING	STRING	3	3	1	0
137282nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
137292nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
137302nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
137312nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	1	0
137322nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	1	0
137332nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
137342nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
137352nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
137362nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
137372nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
137381st Level	null	"3.14"	NULL	STRING	1	3	0	1
137391st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
137402nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
137412nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
137422nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
137432nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
137442nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
137452nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
137462nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
137472nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
137482nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	1	0
137492nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	1	0
137502nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
137512nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
137522nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
137532nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
137542nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
137551st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
137562nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
137571st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
137582nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
137591st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
137602nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
137611st Level	null	"b,c"	NULL	STRING	1	3	0	1
137622nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
137632nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
137642nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
137651st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
137662nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
137672nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
137682nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
137692nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
137702nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
137712nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	1	0
137722nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	1	0
137732nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
137742nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
137752nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
137762nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
137772nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
137781st Level	null	"b"	NULL	STRING	1	3	0	1
137792nd Level	"a"	"b"	STRING	STRING	3	3	1	0
137802nd Level	"1"	"b"	STRING	STRING	3	3	1	0
137812nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
137821st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
137832nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
137842nd Level	"b"	"b"	STRING	STRING	3	3	1	0
137852nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
137862nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
137872nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
137882nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	1	0
137892nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	1	0
137902nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
137912nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
137922nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
137932nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
137942nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
137951st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
137961st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
137972nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
137982nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
137992nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
138002nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
138012nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
138022nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
138032nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
138042nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
138052nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
138062nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	1	0
138072nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
138082nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
138092nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
138102nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
138112nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
138121st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
138131st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
138142nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
138152nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
138162nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
138172nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
138182nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
138192nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
138202nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
138212nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
138222nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
138232nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
138242nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
138252nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
138262nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
138272nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
138282nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
138291st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
138301st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
138312nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138322nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138332nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138342nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138352nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138362nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138372nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138382nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138392nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138402nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138412nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138422nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138432nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138442nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138452nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
138461st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	1	0
138472nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
138481st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	1	0
138492nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
138501st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	0	1
138512nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138522nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138532nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138541st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	1	0
138552nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138562nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138572nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138582nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138592nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138602nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138612nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138622nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138632nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138642nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138652nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138662nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
138671st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	0	1
138682nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138692nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138702nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138711st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	1	0
138722nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138732nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138742nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138752nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138762nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138772nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138782nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138792nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138802nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138812nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138822nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138832nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
138841st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
138852nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
138862nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
138872nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
138881st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
138892nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
138902nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
138912nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
138922nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
138932nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
138942nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
138952nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
138962nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
138972nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
138982nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
138992nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
139002nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
139011st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
139022nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139032nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139042nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139051st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
139062nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139072nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139082nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139092nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139102nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139112nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139122nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139132nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139142nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139152nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139162nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139172nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
139181st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
139192nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139202nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139212nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139221st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
139232nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139242nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139252nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139262nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139272nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139282nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139292nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139302nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139312nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139322nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139332nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139342nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
139351st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
139362nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139372nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139382nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139391st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
139402nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139412nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139422nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139432nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139442nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139452nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139462nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139472nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139482nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139492nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139502nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139512nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
139521st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
139532nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
139542nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
139552nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
139561st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
139572nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
139582nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
139592nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
139602nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
139612nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
139622nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
139632nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
139642nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
139652nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
139662nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
139672nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
139682nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
13969"Testcase for VARCHAR"
13970validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
139711st Level	null	1	NULL	INTEGER	1	2	0	1
139721st Level	null	12	NULL	INTEGER	1	2	0	1
139731st Level	null	3	NULL	INTEGER	1	2	0	1
139741st Level	null	3.14	NULL	DECIMAL	1	2	0	1
139752nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
139761st Level	null	"a"	NULL	STRING	1	3	0	1
139772nd Level	"a"	"a"	STRING	STRING	3	3	1	0
139782nd Level	"1"	"a"	STRING	STRING	3	3	1	0
139792nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
139801st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
139812nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
139822nd Level	"b"	"a"	STRING	STRING	3	3	1	0
139832nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
139842nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
139852nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
139862nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	1	0
139872nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	1	0
139882nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
139892nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
139902nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
139912nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
139922nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
139931st Level	null	"1"	NULL	STRING	1	3	0	1
139941st Level	12	"1"	INTEGER	STRING	2	3	0	1
139951st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
139962nd Level	"a"	"1"	STRING	STRING	3	3	1	0
139972nd Level	"1"	"1"	STRING	STRING	3	3	1	0
139982nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
139992nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
140002nd Level	"b"	"1"	STRING	STRING	3	3	1	0
140012nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
140022nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
140032nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
140042nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	1	0
140052nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	1	0
140062nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
140072nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
140082nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
140092nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
140102nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
140111st Level	null	"3.14"	NULL	STRING	1	3	0	1
140121st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
140132nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
140142nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
140152nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
140162nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
140172nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
140182nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
140192nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
140202nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
140212nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	1	0
140222nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	1	0
140232nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
140242nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
140252nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
140262nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
140272nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
140281st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
140292nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
140301st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
140312nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
140321st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
140332nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
140341st Level	null	"b,c"	NULL	STRING	1	3	0	1
140352nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
140362nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
140372nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
140381st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
140392nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
140402nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
140412nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
140422nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
140432nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
140442nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	1	0
140452nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	1	0
140462nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
140472nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
140482nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
140492nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
140502nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
140511st Level	null	"b"	NULL	STRING	1	3	0	1
140522nd Level	"a"	"b"	STRING	STRING	3	3	1	0
140532nd Level	"1"	"b"	STRING	STRING	3	3	1	0
140542nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
140551st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
140562nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
140572nd Level	"b"	"b"	STRING	STRING	3	3	1	0
140582nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
140592nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
140602nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
140612nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	1	0
140622nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	1	0
140632nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
140642nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
140652nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
140662nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
140672nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
140681st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
140691st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
140702nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
140712nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
140722nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
140732nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
140742nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
140752nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
140762nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
140772nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
140782nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
140792nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	1	0
140802nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
140812nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
140822nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
140832nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
140842nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
140851st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
140861st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
140872nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
140882nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
140892nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
140902nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
140912nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
140922nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
140932nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
140942nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
140952nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
140962nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
140972nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
140982nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
140992nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
141002nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
141012nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
141021st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
141031st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
141042nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141052nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141062nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141072nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141082nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141092nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141102nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141112nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141122nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141132nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141142nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141152nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141162nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141172nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141182nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
141191st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	1	0
141202nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
141211st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	1	0
141222nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
141231st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	0	1
141242nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141252nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141262nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141271st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	1	0
141282nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141292nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141302nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141312nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141322nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141332nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141342nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141352nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141362nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141372nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141382nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141392nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
141401st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	0	1
141412nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141422nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141432nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141441st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	1	0
141452nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141462nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141472nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141482nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141492nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141502nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141512nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141522nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141532nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141542nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141552nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141562nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
141571st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
141582nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141592nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141602nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141611st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
141622nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141632nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141642nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141652nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141662nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141672nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141682nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141692nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141702nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141712nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141722nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141732nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
141741st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
141752nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141762nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141772nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141781st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
141792nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141802nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141812nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141822nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141832nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141842nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141852nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141862nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141872nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141882nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141892nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141902nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
141911st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
141922nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
141932nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
141942nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
141951st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
141962nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
141972nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
141982nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
141992nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
142002nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
142012nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
142022nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
142032nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
142042nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
142052nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
142062nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
142072nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
142081st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
142092nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142102nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142112nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142121st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
142132nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142142nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142152nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142162nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142172nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142182nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142192nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142202nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142212nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142222nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142232nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142242nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
142251st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
142262nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
142272nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
142282nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
142291st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
142302nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
142312nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
142322nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
142332nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
142342nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
142352nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
142362nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
142372nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
142382nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
142392nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
142402nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
142412nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
14242"Testcase for Binary(255)"
14243validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
14244"Testcase for Variable Binary"
14245validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
14246"Testcase for TinyBlob"
14247validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
14248"Testcase for TinyText"
14249validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
142501st Level	null	1	NULL	INTEGER	1	2	0	1
142511st Level	null	12	NULL	INTEGER	1	2	0	1
142521st Level	null	3	NULL	INTEGER	1	2	0	1
142531st Level	null	3.14	NULL	DECIMAL	1	2	0	1
142542nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
142551st Level	null	"a"	NULL	STRING	1	3	0	1
142562nd Level	"a"	"a"	STRING	STRING	3	3	1	0
142572nd Level	"1"	"a"	STRING	STRING	3	3	1	0
142582nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
142591st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
142602nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
142612nd Level	"b"	"a"	STRING	STRING	3	3	1	0
142622nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
142632nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
142642nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
142652nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	1	0
142662nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	1	0
142672nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
142682nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
142692nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
142702nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
142712nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
142721st Level	null	"1"	NULL	STRING	1	3	0	1
142731st Level	12	"1"	INTEGER	STRING	2	3	0	1
142741st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
142752nd Level	"a"	"1"	STRING	STRING	3	3	1	0
142762nd Level	"1"	"1"	STRING	STRING	3	3	1	0
142772nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
142782nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
142792nd Level	"b"	"1"	STRING	STRING	3	3	1	0
142802nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
142812nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
142822nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
142832nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	1	0
142842nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	1	0
142852nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
142862nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
142872nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
142882nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
142892nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
142901st Level	null	"3.14"	NULL	STRING	1	3	0	1
142911st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
142922nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
142932nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
142942nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
142952nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
142962nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
142972nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
142982nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
142992nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
143002nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	1	0
143012nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	1	0
143022nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
143032nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
143042nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
143052nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
143062nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
143071st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
143082nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
143091st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
143102nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
143111st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
143122nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
143131st Level	null	"b,c"	NULL	STRING	1	3	0	1
143142nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
143152nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
143162nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
143171st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
143182nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
143192nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
143202nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
143212nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
143222nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
143232nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	1	0
143242nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	1	0
143252nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
143262nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
143272nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
143282nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
143292nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
143301st Level	null	"b"	NULL	STRING	1	3	0	1
143312nd Level	"a"	"b"	STRING	STRING	3	3	1	0
143322nd Level	"1"	"b"	STRING	STRING	3	3	1	0
143332nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
143341st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
143352nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
143362nd Level	"b"	"b"	STRING	STRING	3	3	1	0
143372nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
143382nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
143392nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
143402nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	1	0
143412nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	1	0
143422nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
143432nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
143442nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
143452nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
143462nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
143471st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
143481st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
143492nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
143502nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
143512nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
143522nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
143532nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
143542nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
143552nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
143562nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
143572nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
143582nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	1	0
143592nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
143602nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
143612nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
143622nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
143632nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
143641st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
143651st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
143662nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
143672nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
143682nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
143692nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
143702nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
143712nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
143722nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
143732nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
143742nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
143752nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
143762nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
143772nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
143782nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
143792nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
143802nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
143811st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
143821st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
143832nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143842nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143852nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143862nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143872nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143882nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143892nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143902nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143912nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143922nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143932nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143942nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143952nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143962nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143972nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
143981st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	1	0
143992nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
144001st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	1	0
144012nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
144021st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	0	1
144032nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144042nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144052nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144061st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	1	0
144072nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144082nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144092nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144102nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144112nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144122nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144132nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144142nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144152nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144162nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144172nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144182nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
144191st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	0	1
144202nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144212nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144222nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144231st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	1	0
144242nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144252nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144262nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144272nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144282nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144292nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144302nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144312nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144322nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144332nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144342nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144352nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
144361st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
144372nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144382nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144392nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144401st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
144412nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144422nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144432nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144442nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144452nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144462nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144472nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144482nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144492nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144502nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144512nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144522nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
144531st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
144542nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144552nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144562nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144571st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
144582nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144592nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144602nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144612nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144622nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144632nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144642nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144652nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144662nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144672nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144682nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144692nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
144701st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
144712nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144722nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144732nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144741st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
144752nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144762nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144772nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144782nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144792nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144802nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144812nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144822nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144832nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144842nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144852nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144862nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
144871st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
144882nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
144892nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
144902nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
144911st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
144922nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
144932nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
144942nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
144952nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
144962nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
144972nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
144982nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
144992nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
145002nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
145012nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
145022nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
145032nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
145041st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
145052nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
145062nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
145072nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
145081st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
145092nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
145102nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
145112nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
145122nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
145132nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
145142nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
145152nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
145162nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
145172nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
145182nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
145192nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
145202nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
14521"Testcase for Blob"
14522validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
14523"Testcase for Text"
14524validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
145251st Level	null	1	NULL	INTEGER	1	2	0	1
145261st Level	null	12	NULL	INTEGER	1	2	0	1
145271st Level	null	3	NULL	INTEGER	1	2	0	1
145281st Level	null	3.14	NULL	DECIMAL	1	2	0	1
145292nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
145301st Level	null	"a"	NULL	STRING	1	3	0	1
145312nd Level	"a"	"a"	STRING	STRING	3	3	1	0
145322nd Level	"1"	"a"	STRING	STRING	3	3	1	0
145332nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
145341st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
145352nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
145362nd Level	"b"	"a"	STRING	STRING	3	3	1	0
145372nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
145382nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
145392nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
145402nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	1	0
145412nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	1	0
145422nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
145432nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
145442nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
145452nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
145462nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
145471st Level	null	"1"	NULL	STRING	1	3	0	1
145481st Level	12	"1"	INTEGER	STRING	2	3	0	1
145491st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
145502nd Level	"a"	"1"	STRING	STRING	3	3	1	0
145512nd Level	"1"	"1"	STRING	STRING	3	3	1	0
145522nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
145532nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
145542nd Level	"b"	"1"	STRING	STRING	3	3	1	0
145552nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
145562nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
145572nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
145582nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	1	0
145592nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	1	0
145602nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
145612nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
145622nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
145632nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
145642nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
145651st Level	null	"3.14"	NULL	STRING	1	3	0	1
145661st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
145672nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
145682nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
145692nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
145702nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
145712nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
145722nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
145732nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
145742nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
145752nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	1	0
145762nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	1	0
145772nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
145782nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
145792nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
145802nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
145812nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
145821st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
145832nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
145841st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
145852nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
145861st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
145872nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
145881st Level	null	"b,c"	NULL	STRING	1	3	0	1
145892nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
145902nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
145912nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
145921st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
145932nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
145942nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
145952nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
145962nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
145972nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
145982nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	1	0
145992nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	1	0
146002nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
146012nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
146022nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
146032nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
146042nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
146051st Level	null	"b"	NULL	STRING	1	3	0	1
146062nd Level	"a"	"b"	STRING	STRING	3	3	1	0
146072nd Level	"1"	"b"	STRING	STRING	3	3	1	0
146082nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
146091st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
146102nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
146112nd Level	"b"	"b"	STRING	STRING	3	3	1	0
146122nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
146132nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
146142nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
146152nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	1	0
146162nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	1	0
146172nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
146182nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
146192nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
146202nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
146212nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
146221st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
146231st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
146242nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
146252nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
146262nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
146272nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
146282nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
146292nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
146302nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
146312nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
146322nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
146332nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	1	0
146342nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
146352nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
146362nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
146372nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
146382nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
146391st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
146401st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
146412nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
146422nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
146432nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
146442nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
146452nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
146462nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
146472nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
146482nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
146492nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
146502nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
146512nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
146522nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
146532nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
146542nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
146552nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
146561st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
146571st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
146582nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146592nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146602nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146612nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146622nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146632nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146642nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146652nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146662nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146672nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146682nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146692nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146702nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146712nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146722nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
146731st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	1	0
146742nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
146751st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	1	0
146762nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
146771st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	0	1
146782nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146792nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146802nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146811st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	1	0
146822nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146832nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146842nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146852nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146862nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146872nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146882nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146892nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146902nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146912nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146922nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146932nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
146941st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	0	1
146952nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
146962nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
146972nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
146981st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	1	0
146992nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
147002nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
147012nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
147022nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
147032nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
147042nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
147052nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
147062nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
147072nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
147082nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
147092nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
147102nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
147111st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
147122nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147132nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147142nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147151st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
147162nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147172nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147182nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147192nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147202nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147212nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147222nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147232nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147242nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147252nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147262nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147272nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
147281st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
147292nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147302nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147312nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147321st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
147332nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147342nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147352nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147362nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147372nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147382nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147392nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147402nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147412nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147422nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147432nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147442nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
147451st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
147462nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147472nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147482nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147491st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
147502nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147512nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147522nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147532nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147542nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147552nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147562nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147572nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147582nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147592nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147602nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147612nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
147621st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
147632nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147642nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147652nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147661st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
147672nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147682nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147692nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147702nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147712nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147722nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147732nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147742nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147752nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147762nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147772nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147782nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
147791st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
147802nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
147812nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
147822nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
147831st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
147842nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
147852nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
147862nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
147872nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
147882nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
147892nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
147902nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
147912nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
147922nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
147932nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
147942nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
147952nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
14796"Testcase for Medium Blob"
14797validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
14798"Testcase for Medium Text"
14799validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
148001st Level	null	1	NULL	INTEGER	1	2	0	1
148011st Level	null	12	NULL	INTEGER	1	2	0	1
148021st Level	null	3	NULL	INTEGER	1	2	0	1
148031st Level	null	3.14	NULL	DECIMAL	1	2	0	1
148042nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
148051st Level	null	"a"	NULL	STRING	1	3	0	1
148062nd Level	"a"	"a"	STRING	STRING	3	3	1	0
148072nd Level	"1"	"a"	STRING	STRING	3	3	1	0
148082nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
148091st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
148102nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
148112nd Level	"b"	"a"	STRING	STRING	3	3	1	0
148122nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
148132nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
148142nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
148152nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	1	0
148162nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	1	0
148172nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
148182nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
148192nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
148202nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
148212nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
148221st Level	null	"1"	NULL	STRING	1	3	0	1
148231st Level	12	"1"	INTEGER	STRING	2	3	0	1
148241st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
148252nd Level	"a"	"1"	STRING	STRING	3	3	1	0
148262nd Level	"1"	"1"	STRING	STRING	3	3	1	0
148272nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
148282nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
148292nd Level	"b"	"1"	STRING	STRING	3	3	1	0
148302nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
148312nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
148322nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
148332nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	1	0
148342nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	1	0
148352nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
148362nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
148372nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
148382nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
148392nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
148401st Level	null	"3.14"	NULL	STRING	1	3	0	1
148411st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
148422nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
148432nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
148442nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
148452nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
148462nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
148472nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
148482nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
148492nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
148502nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	1	0
148512nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	1	0
148522nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
148532nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
148542nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
148552nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
148562nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
148571st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
148582nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
148591st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
148602nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
148611st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
148622nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
148631st Level	null	"b,c"	NULL	STRING	1	3	0	1
148642nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
148652nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
148662nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
148671st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
148682nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
148692nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
148702nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
148712nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
148722nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
148732nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	1	0
148742nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	1	0
148752nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
148762nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
148772nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
148782nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
148792nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
148801st Level	null	"b"	NULL	STRING	1	3	0	1
148812nd Level	"a"	"b"	STRING	STRING	3	3	1	0
148822nd Level	"1"	"b"	STRING	STRING	3	3	1	0
148832nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
148841st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
148852nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
148862nd Level	"b"	"b"	STRING	STRING	3	3	1	0
148872nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
148882nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
148892nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
148902nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	1	0
148912nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	1	0
148922nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
148932nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
148942nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
148952nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
148962nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
148971st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
148981st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
148992nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
149002nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
149012nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
149022nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
149032nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
149042nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
149052nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
149062nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
149072nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
149082nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	1	0
149092nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
149102nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
149112nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
149122nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
149132nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
149141st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
149151st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
149162nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
149172nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
149182nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
149192nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
149202nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
149212nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
149222nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
149232nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
149242nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
149252nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
149262nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
149272nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
149282nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
149292nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
149302nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
149311st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
149321st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
149332nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149342nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149352nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149362nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149372nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149382nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149392nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149402nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149412nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149422nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149432nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149442nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149452nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149462nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149472nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149481st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	1	0
149492nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
149501st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	1	0
149512nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
149521st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	0	1
149532nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149542nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149552nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149561st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	1	0
149572nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149582nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149592nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149602nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149612nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149622nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149632nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149642nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149652nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149662nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149672nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149682nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
149691st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	0	1
149702nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149712nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149722nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149731st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	1	0
149742nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149752nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149762nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149772nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149782nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149792nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149802nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149812nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149822nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149832nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149842nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149852nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
149861st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
149872nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
149882nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
149892nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
149901st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
149912nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
149922nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
149932nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
149942nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
149952nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
149962nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
149972nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
149982nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
149992nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
150002nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
150012nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
150022nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
150031st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
150042nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150052nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150062nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150071st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
150082nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150092nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150102nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150112nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150122nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150132nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150142nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150152nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150162nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150172nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150182nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150192nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150201st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
150212nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150222nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150232nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150241st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
150252nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150262nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150272nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150282nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150292nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150302nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150312nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150322nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150332nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150342nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150352nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150362nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150371st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
150382nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150392nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150402nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150411st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
150422nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150432nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150442nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150452nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150462nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150472nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150482nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150492nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150502nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150512nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150522nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150532nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150541st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
150552nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150562nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150572nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150581st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
150592nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150602nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150612nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150622nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150632nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150642nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150652nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150662nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150672nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150682nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150692nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150702nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
15071"Testcase for Long Blob"
15072validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15073"Testcase for Long Text"
15074validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
150751st Level	null	1	NULL	INTEGER	1	2	0	1
150761st Level	null	12	NULL	INTEGER	1	2	0	1
150771st Level	null	3	NULL	INTEGER	1	2	0	1
150781st Level	null	3.14	NULL	DECIMAL	1	2	0	1
150792nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
150801st Level	null	"a"	NULL	STRING	1	3	0	1
150812nd Level	"a"	"a"	STRING	STRING	3	3	1	0
150822nd Level	"1"	"a"	STRING	STRING	3	3	1	0
150832nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
150841st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
150852nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
150862nd Level	"b"	"a"	STRING	STRING	3	3	1	0
150872nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
150882nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
150892nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
150902nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	1	0
150912nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	1	0
150922nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
150932nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
150942nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
150952nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
150962nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
150971st Level	null	"1"	NULL	STRING	1	3	0	1
150981st Level	12	"1"	INTEGER	STRING	2	3	0	1
150991st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
151002nd Level	"a"	"1"	STRING	STRING	3	3	1	0
151012nd Level	"1"	"1"	STRING	STRING	3	3	1	0
151022nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
151032nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
151042nd Level	"b"	"1"	STRING	STRING	3	3	1	0
151052nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
151062nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
151072nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
151082nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	1	0
151092nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	1	0
151102nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
151112nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
151122nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
151132nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
151142nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
151151st Level	null	"3.14"	NULL	STRING	1	3	0	1
151161st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
151172nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
151182nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
151192nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
151202nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
151212nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
151222nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
151232nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
151242nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
151252nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	1	0
151262nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	1	0
151272nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
151282nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
151292nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
151302nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
151312nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
151321st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
151332nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
151341st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
151352nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
151361st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
151372nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
151381st Level	null	"b,c"	NULL	STRING	1	3	0	1
151392nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
151402nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
151412nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
151421st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
151432nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
151442nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
151452nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
151462nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
151472nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
151482nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	1	0
151492nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	1	0
151502nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
151512nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
151522nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
151532nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
151542nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
151551st Level	null	"b"	NULL	STRING	1	3	0	1
151562nd Level	"a"	"b"	STRING	STRING	3	3	1	0
151572nd Level	"1"	"b"	STRING	STRING	3	3	1	0
151582nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
151591st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
151602nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
151612nd Level	"b"	"b"	STRING	STRING	3	3	1	0
151622nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
151632nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
151642nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
151652nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	1	0
151662nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	1	0
151672nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
151682nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
151692nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
151702nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
151712nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
151721st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
151731st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
151742nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
151752nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
151762nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
151772nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
151782nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
151792nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
151802nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
151812nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
151822nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
151832nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	1	0
151842nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
151852nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
151862nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
151872nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
151882nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
151891st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
151901st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
151912nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
151922nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
151932nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
151942nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
151952nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
151962nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
151972nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
151982nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
151992nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
152002nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
152012nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
152022nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
152032nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
152042nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
152052nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
152061st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
152071st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
152082nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152092nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152102nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152112nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152122nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152132nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152142nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152152nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152162nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152172nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152182nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152192nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152202nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152212nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152222nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152231st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	1	0
152242nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
152251st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	1	0
152262nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
152271st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	0	1
152282nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152292nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152302nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152311st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	1	0
152322nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152332nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152342nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152352nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152362nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152372nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152382nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152392nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152402nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152412nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152422nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152432nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
152441st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	0	1
152452nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152462nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152472nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152481st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	1	0
152492nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152502nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152512nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152522nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152532nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152542nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152552nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152562nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152572nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152582nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152592nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152602nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
152611st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
152622nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152632nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152642nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152651st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
152662nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152672nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152682nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152692nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152702nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152712nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152722nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152732nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152742nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152752nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152762nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152772nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152781st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
152792nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152802nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152812nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152821st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
152832nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152842nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152852nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152862nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152872nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152882nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152892nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152902nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152912nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152922nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152932nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152942nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152951st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
152962nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
152972nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
152982nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
152991st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
153002nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153012nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153022nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153032nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153042nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153052nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153062nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153072nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153082nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153092nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153102nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153112nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153121st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
153132nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153142nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153152nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153161st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
153172nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153182nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153192nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153202nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153212nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153222nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153232nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153242nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153252nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153262nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153272nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153282nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153291st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
153302nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153312nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153322nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153331st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
153342nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153352nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153362nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153372nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153382nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153392nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153402nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153412nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153422nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153432nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153442nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153452nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
15346"Testcase for Enum"
15347validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15348"Testcase for Set"
15349validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15350"Test for SQL vs JSON"
15351"Comparator >"
15352""
15353"Testcase for Tinyint"
15354validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
153552nd Level	12	1	INTEGER	INTEGER	2	2	1	0
153562nd Level	3	1	INTEGER	INTEGER	2	2	1	0
153572nd Level	12	3	INTEGER	INTEGER	2	2	1	0
153582nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
15359"Testcase for Boolean"
15360validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
153612nd Level	12	1	INTEGER	INTEGER	2	2	1	0
153622nd Level	3	1	INTEGER	INTEGER	2	2	1	0
153632nd Level	12	3	INTEGER	INTEGER	2	2	1	0
153642nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
15365"Testcase for small Int Signed"
15366validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
153672nd Level	12	1	INTEGER	INTEGER	2	2	1	0
153682nd Level	3	1	INTEGER	INTEGER	2	2	1	0
153692nd Level	12	3	INTEGER	INTEGER	2	2	1	0
153702nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
15371"Testcase for Signed Medium Int"
15372validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
153732nd Level	12	1	INTEGER	INTEGER	2	2	1	0
153742nd Level	3	1	INTEGER	INTEGER	2	2	1	0
153752nd Level	12	3	INTEGER	INTEGER	2	2	1	0
153762nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
15377"Testcase for unsigned Medium Int"
15378validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
153792nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
153802nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
153812nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
153822nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
15383"Testcase for signed Int"
15384validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
153852nd Level	12	1	INTEGER	INTEGER	2	2	1	0
153862nd Level	3	1	INTEGER	INTEGER	2	2	1	0
153872nd Level	12	3	INTEGER	INTEGER	2	2	1	0
153882nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
15389"Testcase for Unsigned Int"
15390validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
153912nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
153922nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
153932nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
153942nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
15395"Testcase for Big Int"
15396validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
153972nd Level	12	1	INTEGER	INTEGER	2	2	1	0
153982nd Level	3	1	INTEGER	INTEGER	2	2	1	0
153992nd Level	12	3	INTEGER	INTEGER	2	2	1	0
154002nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
15401"Testcase for Big Int Unsigned"
15402validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
154032nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
154042nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
154052nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
154062nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
15407"Testcase for Decimal"
15408validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
154092nd Level	12.00	1	DECIMAL	INTEGER	2	2	1	0
154102nd Level	3.14	1	DECIMAL	INTEGER	2	2	1	0
154112nd Level	12.00	3	DECIMAL	INTEGER	2	2	1	0
154122nd Level	3.14	3	DECIMAL	INTEGER	2	2	1	0
154132nd Level	12.00	3.14	DECIMAL	DECIMAL	2	2	1	0
15414"Testcase for Double"
15415validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
154162nd Level	12	1	DOUBLE	INTEGER	2	2	1	0
154172nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
154182nd Level	12	3	DOUBLE	INTEGER	2	2	1	0
154192nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
154202nd Level	12	3.14	DOUBLE	DECIMAL	2	2	1	0
15421"Testcase for CHAR"
15422validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
154231st Level	null	1	NULL	INTEGER	1	2	1	0
154242nd Level	12	1	INTEGER	INTEGER	2	2	1	0
154252nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
154261st Level	null	12	NULL	INTEGER	1	2	1	0
154272nd Level	12	12	INTEGER	INTEGER	2	2	1	0
154282nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
154291st Level	null	3	NULL	INTEGER	1	2	1	0
154302nd Level	12	3	INTEGER	INTEGER	2	2	1	0
154312nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
154321st Level	null	3.14	NULL	DECIMAL	1	2	1	0
154332nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
154342nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
154352nd Level	null	null	NULL	NULL	1	1	1	0
154361st Level	null	"a"	NULL	STRING	1	3	1	0
154371st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
154381st Level	null	"1"	NULL	STRING	1	3	1	0
154391st Level	12	"1"	INTEGER	STRING	2	3	1	0
154401st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
154411st Level	null	"3.14"	NULL	STRING	1	3	1	0
154421st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
154431st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
154441st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
154451st Level	null	"b,c"	NULL	STRING	1	3	1	0
154461st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
154471st Level	null	"b"	NULL	STRING	1	3	1	0
154481st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
154491st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
154501st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
154511st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
154521st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
154531st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
154541st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
154551st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	0	1
154561st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	0	1
154571st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	1	0
154581st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	0	1
154591st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	1	0
154601st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	0	1
154611st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
154621st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
154631st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
154641st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
154651st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
154661st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
154671st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
154681st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
154691st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
154701st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
15471"Testcase for VARCHAR"
15472validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
154731st Level	null	1	NULL	INTEGER	1	2	1	0
154742nd Level	12	1	INTEGER	INTEGER	2	2	1	0
154752nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
154761st Level	null	12	NULL	INTEGER	1	2	1	0
154772nd Level	12	12	INTEGER	INTEGER	2	2	1	0
154782nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
154791st Level	null	3	NULL	INTEGER	1	2	1	0
154802nd Level	12	3	INTEGER	INTEGER	2	2	1	0
154812nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
154821st Level	null	3.14	NULL	DECIMAL	1	2	1	0
154832nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
154842nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
154852nd Level	null	null	NULL	NULL	1	1	1	0
154861st Level	null	"a"	NULL	STRING	1	3	1	0
154871st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
154881st Level	null	"1"	NULL	STRING	1	3	1	0
154891st Level	12	"1"	INTEGER	STRING	2	3	1	0
154901st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
154911st Level	null	"3.14"	NULL	STRING	1	3	1	0
154921st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
154931st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
154941st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
154951st Level	null	"b,c"	NULL	STRING	1	3	1	0
154961st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
154971st Level	null	"b"	NULL	STRING	1	3	1	0
154981st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
154991st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
155001st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
155011st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
155021st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
155031st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
155041st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
155051st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	0	1
155061st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	0	1
155071st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	1	0
155081st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	0	1
155091st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	1	0
155101st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	0	1
155111st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
155121st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
155131st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
155141st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
155151st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
155161st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
155171st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
155181st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
155191st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
155201st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
15521"Testcase for Binary(255)"
15522validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15523"Testcase for Variable Binary"
15524validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15525"Testcase for TinyBlob"
15526validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15527"Testcase for TinyText"
15528validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
155291st Level	null	1	NULL	INTEGER	1	2	1	0
155302nd Level	12	1	INTEGER	INTEGER	2	2	1	0
155312nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
155321st Level	null	12	NULL	INTEGER	1	2	1	0
155332nd Level	12	12	INTEGER	INTEGER	2	2	1	0
155342nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
155351st Level	null	3	NULL	INTEGER	1	2	1	0
155362nd Level	12	3	INTEGER	INTEGER	2	2	1	0
155372nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
155381st Level	null	3.14	NULL	DECIMAL	1	2	1	0
155392nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
155402nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
155412nd Level	null	null	NULL	NULL	1	1	1	0
155421st Level	null	"a"	NULL	STRING	1	3	1	0
155431st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
155441st Level	null	"1"	NULL	STRING	1	3	1	0
155451st Level	12	"1"	INTEGER	STRING	2	3	1	0
155461st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
155471st Level	null	"3.14"	NULL	STRING	1	3	1	0
155481st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
155491st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
155501st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
155511st Level	null	"b,c"	NULL	STRING	1	3	1	0
155521st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
155531st Level	null	"b"	NULL	STRING	1	3	1	0
155541st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
155551st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
155561st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
155571st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
155581st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
155591st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
155601st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
155611st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	0	1
155621st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	0	1
155631st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	1	0
155641st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	0	1
155651st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	1	0
155661st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	0	1
155671st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
155681st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
155691st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
155701st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
155711st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
155721st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
155731st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
155741st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
155751st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
155761st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
15577"Testcase for Blob"
15578validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15579"Testcase for Text"
15580validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
155811st Level	null	1	NULL	INTEGER	1	2	1	0
155822nd Level	12	1	INTEGER	INTEGER	2	2	1	0
155832nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
155841st Level	null	12	NULL	INTEGER	1	2	1	0
155852nd Level	12	12	INTEGER	INTEGER	2	2	1	0
155862nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
155871st Level	null	3	NULL	INTEGER	1	2	1	0
155882nd Level	12	3	INTEGER	INTEGER	2	2	1	0
155892nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
155901st Level	null	3.14	NULL	DECIMAL	1	2	1	0
155912nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
155922nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
155932nd Level	null	null	NULL	NULL	1	1	1	0
155941st Level	null	"a"	NULL	STRING	1	3	1	0
155951st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
155961st Level	null	"1"	NULL	STRING	1	3	1	0
155971st Level	12	"1"	INTEGER	STRING	2	3	1	0
155981st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
155991st Level	null	"3.14"	NULL	STRING	1	3	1	0
156001st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
156011st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
156021st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
156031st Level	null	"b,c"	NULL	STRING	1	3	1	0
156041st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
156051st Level	null	"b"	NULL	STRING	1	3	1	0
156061st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
156071st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
156081st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
156091st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
156101st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
156111st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
156121st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
156131st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	0	1
156141st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	0	1
156151st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	1	0
156161st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	0	1
156171st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	1	0
156181st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	0	1
156191st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
156201st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
156211st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
156221st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
156231st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
156241st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
156251st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
156261st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
156271st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
156281st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
15629"Testcase for Medium Blob"
15630validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15631"Testcase for Medium Text"
15632validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
156331st Level	null	1	NULL	INTEGER	1	2	1	0
156342nd Level	12	1	INTEGER	INTEGER	2	2	1	0
156352nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
156361st Level	null	12	NULL	INTEGER	1	2	1	0
156372nd Level	12	12	INTEGER	INTEGER	2	2	1	0
156382nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
156391st Level	null	3	NULL	INTEGER	1	2	1	0
156402nd Level	12	3	INTEGER	INTEGER	2	2	1	0
156412nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
156421st Level	null	3.14	NULL	DECIMAL	1	2	1	0
156432nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
156442nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
156452nd Level	null	null	NULL	NULL	1	1	1	0
156461st Level	null	"a"	NULL	STRING	1	3	1	0
156471st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
156481st Level	null	"1"	NULL	STRING	1	3	1	0
156491st Level	12	"1"	INTEGER	STRING	2	3	1	0
156501st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
156511st Level	null	"3.14"	NULL	STRING	1	3	1	0
156521st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
156531st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
156541st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
156551st Level	null	"b,c"	NULL	STRING	1	3	1	0
156561st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
156571st Level	null	"b"	NULL	STRING	1	3	1	0
156581st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
156591st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
156601st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
156611st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
156621st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
156631st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
156641st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
156651st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	0	1
156661st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	0	1
156671st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	1	0
156681st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	0	1
156691st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	1	0
156701st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	0	1
156711st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
156721st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
156731st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
156741st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
156751st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
156761st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
156771st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
156781st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
156791st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
156801st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
15681"Testcase for Long Blob"
15682validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15683"Testcase for Long Text"
15684validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
156851st Level	null	1	NULL	INTEGER	1	2	1	0
156862nd Level	12	1	INTEGER	INTEGER	2	2	1	0
156872nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
156881st Level	null	12	NULL	INTEGER	1	2	1	0
156892nd Level	12	12	INTEGER	INTEGER	2	2	1	0
156902nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
156911st Level	null	3	NULL	INTEGER	1	2	1	0
156922nd Level	12	3	INTEGER	INTEGER	2	2	1	0
156932nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
156941st Level	null	3.14	NULL	DECIMAL	1	2	1	0
156952nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
156962nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
156972nd Level	null	null	NULL	NULL	1	1	1	0
156981st Level	null	"a"	NULL	STRING	1	3	1	0
156991st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
157001st Level	null	"1"	NULL	STRING	1	3	1	0
157011st Level	12	"1"	INTEGER	STRING	2	3	1	0
157021st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
157031st Level	null	"3.14"	NULL	STRING	1	3	1	0
157041st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
157051st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
157061st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
157071st Level	null	"b,c"	NULL	STRING	1	3	1	0
157081st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
157091st Level	null	"b"	NULL	STRING	1	3	1	0
157101st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
157111st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
157121st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
157131st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
157141st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
157151st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
157161st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
157171st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	0	1
157181st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	0	1
157191st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	1	0
157201st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	0	1
157211st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	1	0
157221st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	0	1
157231st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
157241st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
157251st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
157261st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
157271st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
157281st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
157291st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
157301st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
157311st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
157321st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
15733"Testcase for Enum"
15734validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15735"Testcase for Set"
15736validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15737"Test for SQL vs JSON"
15738"Comparator <="
15739""
15740"Testcase for Tinyint"
15741validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
157422nd Level	12	1	INTEGER	INTEGER	2	2	0	1
157432nd Level	3	1	INTEGER	INTEGER	2	2	0	1
157442nd Level	12	3	INTEGER	INTEGER	2	2	0	1
157452nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
15746"Testcase for Boolean"
15747validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
157482nd Level	12	1	INTEGER	INTEGER	2	2	0	1
157492nd Level	3	1	INTEGER	INTEGER	2	2	0	1
157502nd Level	12	3	INTEGER	INTEGER	2	2	0	1
157512nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
15752"Testcase for small Int Signed"
15753validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
157542nd Level	12	1	INTEGER	INTEGER	2	2	0	1
157552nd Level	3	1	INTEGER	INTEGER	2	2	0	1
157562nd Level	12	3	INTEGER	INTEGER	2	2	0	1
157572nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
15758"Testcase for Signed Medium Int"
15759validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
157602nd Level	12	1	INTEGER	INTEGER	2	2	0	1
157612nd Level	3	1	INTEGER	INTEGER	2	2	0	1
157622nd Level	12	3	INTEGER	INTEGER	2	2	0	1
157632nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
15764"Testcase for unsigned Medium Int"
15765validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
157662nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
157672nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
157682nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
157692nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
15770"Testcase for signed Int"
15771validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
157722nd Level	12	1	INTEGER	INTEGER	2	2	0	1
157732nd Level	3	1	INTEGER	INTEGER	2	2	0	1
157742nd Level	12	3	INTEGER	INTEGER	2	2	0	1
157752nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
15776"Testcase for Unsigned Int"
15777validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
157782nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
157792nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
157802nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
157812nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
15782"Testcase for Big Int"
15783validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
157842nd Level	12	1	INTEGER	INTEGER	2	2	0	1
157852nd Level	3	1	INTEGER	INTEGER	2	2	0	1
157862nd Level	12	3	INTEGER	INTEGER	2	2	0	1
157872nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
15788"Testcase for Big Int Unsigned"
15789validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
157902nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
157912nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
157922nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
157932nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
15794"Testcase for Decimal"
15795validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
157962nd Level	12.00	1	DECIMAL	INTEGER	2	2	0	1
157972nd Level	3.14	1	DECIMAL	INTEGER	2	2	0	1
157982nd Level	12.00	3	DECIMAL	INTEGER	2	2	0	1
157992nd Level	3.14	3	DECIMAL	INTEGER	2	2	0	1
158002nd Level	12.00	3.14	DECIMAL	DECIMAL	2	2	0	1
15801"Testcase for Double"
15802validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
158032nd Level	12	1	DOUBLE	INTEGER	2	2	0	1
158042nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
158052nd Level	12	3	DOUBLE	INTEGER	2	2	0	1
158062nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
158072nd Level	12	3.14	DOUBLE	DECIMAL	2	2	0	1
15808"Testcase for CHAR"
15809validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
158101st Level	null	1	NULL	INTEGER	1	2	0	1
158112nd Level	12	1	INTEGER	INTEGER	2	2	0	1
158122nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
158131st Level	null	12	NULL	INTEGER	1	2	0	1
158142nd Level	12	12	INTEGER	INTEGER	2	2	0	1
158152nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
158161st Level	null	3	NULL	INTEGER	1	2	0	1
158172nd Level	12	3	INTEGER	INTEGER	2	2	0	1
158182nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
158191st Level	null	3.14	NULL	DECIMAL	1	2	0	1
158202nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
158212nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
158222nd Level	null	null	NULL	NULL	1	1	0	1
158231st Level	null	"a"	NULL	STRING	1	3	0	1
158241st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
158251st Level	null	"1"	NULL	STRING	1	3	0	1
158261st Level	12	"1"	INTEGER	STRING	2	3	0	1
158271st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
158281st Level	null	"3.14"	NULL	STRING	1	3	0	1
158291st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
158301st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
158311st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
158321st Level	null	"b,c"	NULL	STRING	1	3	0	1
158331st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
158341st Level	null	"b"	NULL	STRING	1	3	0	1
158351st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
158361st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
158371st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
158381st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
158391st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
158401st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
158411st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
158421st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	1	0
158431st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	1	0
158441st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	0	1
158451st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	1	0
158461st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	0	1
158471st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	1	0
158481st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
158491st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
158501st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
158511st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
158521st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
158531st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
158541st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
158551st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
158561st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
158571st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
15858"Testcase for VARCHAR"
15859validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
158601st Level	null	1	NULL	INTEGER	1	2	0	1
158612nd Level	12	1	INTEGER	INTEGER	2	2	0	1
158622nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
158631st Level	null	12	NULL	INTEGER	1	2	0	1
158642nd Level	12	12	INTEGER	INTEGER	2	2	0	1
158652nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
158661st Level	null	3	NULL	INTEGER	1	2	0	1
158672nd Level	12	3	INTEGER	INTEGER	2	2	0	1
158682nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
158691st Level	null	3.14	NULL	DECIMAL	1	2	0	1
158702nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
158712nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
158722nd Level	null	null	NULL	NULL	1	1	0	1
158731st Level	null	"a"	NULL	STRING	1	3	0	1
158741st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
158751st Level	null	"1"	NULL	STRING	1	3	0	1
158761st Level	12	"1"	INTEGER	STRING	2	3	0	1
158771st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
158781st Level	null	"3.14"	NULL	STRING	1	3	0	1
158791st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
158801st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
158811st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
158821st Level	null	"b,c"	NULL	STRING	1	3	0	1
158831st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
158841st Level	null	"b"	NULL	STRING	1	3	0	1
158851st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
158861st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
158871st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
158881st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
158891st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
158901st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
158911st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
158921st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	1	0
158931st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	1	0
158941st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	0	1
158951st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	1	0
158961st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	0	1
158971st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	1	0
158981st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
158991st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
159001st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
159011st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
159021st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
159031st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
159041st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
159051st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
159061st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
159071st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
15908"Testcase for Binary(255)"
15909validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15910"Testcase for Variable Binary"
15911validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15912"Testcase for TinyBlob"
15913validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15914"Testcase for TinyText"
15915validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
159161st Level	null	1	NULL	INTEGER	1	2	0	1
159172nd Level	12	1	INTEGER	INTEGER	2	2	0	1
159182nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
159191st Level	null	12	NULL	INTEGER	1	2	0	1
159202nd Level	12	12	INTEGER	INTEGER	2	2	0	1
159212nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
159221st Level	null	3	NULL	INTEGER	1	2	0	1
159232nd Level	12	3	INTEGER	INTEGER	2	2	0	1
159242nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
159251st Level	null	3.14	NULL	DECIMAL	1	2	0	1
159262nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
159272nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
159282nd Level	null	null	NULL	NULL	1	1	0	1
159291st Level	null	"a"	NULL	STRING	1	3	0	1
159301st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
159311st Level	null	"1"	NULL	STRING	1	3	0	1
159321st Level	12	"1"	INTEGER	STRING	2	3	0	1
159331st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
159341st Level	null	"3.14"	NULL	STRING	1	3	0	1
159351st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
159361st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
159371st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
159381st Level	null	"b,c"	NULL	STRING	1	3	0	1
159391st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
159401st Level	null	"b"	NULL	STRING	1	3	0	1
159411st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
159421st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
159431st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
159441st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
159451st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
159461st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
159471st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
159481st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	1	0
159491st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	1	0
159501st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	0	1
159511st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	1	0
159521st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	0	1
159531st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	1	0
159541st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
159551st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
159561st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
159571st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
159581st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
159591st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
159601st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
159611st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
159621st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
159631st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
15964"Testcase for Blob"
15965validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15966"Testcase for Text"
15967validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
159681st Level	null	1	NULL	INTEGER	1	2	0	1
159692nd Level	12	1	INTEGER	INTEGER	2	2	0	1
159702nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
159711st Level	null	12	NULL	INTEGER	1	2	0	1
159722nd Level	12	12	INTEGER	INTEGER	2	2	0	1
159732nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
159741st Level	null	3	NULL	INTEGER	1	2	0	1
159752nd Level	12	3	INTEGER	INTEGER	2	2	0	1
159762nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
159771st Level	null	3.14	NULL	DECIMAL	1	2	0	1
159782nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
159792nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
159802nd Level	null	null	NULL	NULL	1	1	0	1
159811st Level	null	"a"	NULL	STRING	1	3	0	1
159821st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
159831st Level	null	"1"	NULL	STRING	1	3	0	1
159841st Level	12	"1"	INTEGER	STRING	2	3	0	1
159851st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
159861st Level	null	"3.14"	NULL	STRING	1	3	0	1
159871st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
159881st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
159891st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
159901st Level	null	"b,c"	NULL	STRING	1	3	0	1
159911st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
159921st Level	null	"b"	NULL	STRING	1	3	0	1
159931st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
159941st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
159951st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
159961st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
159971st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
159981st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
159991st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
160001st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	1	0
160011st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	1	0
160021st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	0	1
160031st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	1	0
160041st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	0	1
160051st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	1	0
160061st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
160071st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
160081st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
160091st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
160101st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
160111st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
160121st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
160131st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
160141st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
160151st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
16016"Testcase for Medium Blob"
16017validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
16018"Testcase for Medium Text"
16019validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
160201st Level	null	1	NULL	INTEGER	1	2	0	1
160212nd Level	12	1	INTEGER	INTEGER	2	2	0	1
160222nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
160231st Level	null	12	NULL	INTEGER	1	2	0	1
160242nd Level	12	12	INTEGER	INTEGER	2	2	0	1
160252nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
160261st Level	null	3	NULL	INTEGER	1	2	0	1
160272nd Level	12	3	INTEGER	INTEGER	2	2	0	1
160282nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
160291st Level	null	3.14	NULL	DECIMAL	1	2	0	1
160302nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
160312nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
160322nd Level	null	null	NULL	NULL	1	1	0	1
160331st Level	null	"a"	NULL	STRING	1	3	0	1
160341st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
160351st Level	null	"1"	NULL	STRING	1	3	0	1
160361st Level	12	"1"	INTEGER	STRING	2	3	0	1
160371st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
160381st Level	null	"3.14"	NULL	STRING	1	3	0	1
160391st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
160401st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
160411st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
160421st Level	null	"b,c"	NULL	STRING	1	3	0	1
160431st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
160441st Level	null	"b"	NULL	STRING	1	3	0	1
160451st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
160461st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
160471st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
160481st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
160491st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
160501st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
160511st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
160521st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	1	0
160531st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	1	0
160541st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	0	1
160551st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	1	0
160561st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	0	1
160571st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	1	0
160581st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
160591st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
160601st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
160611st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
160621st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
160631st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
160641st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
160651st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
160661st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
160671st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
16068"Testcase for Long Blob"
16069validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
16070"Testcase for Long Text"
16071validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
160721st Level	null	1	NULL	INTEGER	1	2	0	1
160732nd Level	12	1	INTEGER	INTEGER	2	2	0	1
160742nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
160751st Level	null	12	NULL	INTEGER	1	2	0	1
160762nd Level	12	12	INTEGER	INTEGER	2	2	0	1
160772nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
160781st Level	null	3	NULL	INTEGER	1	2	0	1
160792nd Level	12	3	INTEGER	INTEGER	2	2	0	1
160802nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
160811st Level	null	3.14	NULL	DECIMAL	1	2	0	1
160822nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
160832nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
160842nd Level	null	null	NULL	NULL	1	1	0	1
160851st Level	null	"a"	NULL	STRING	1	3	0	1
160861st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
160871st Level	null	"1"	NULL	STRING	1	3	0	1
160881st Level	12	"1"	INTEGER	STRING	2	3	0	1
160891st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
160901st Level	null	"3.14"	NULL	STRING	1	3	0	1
160911st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
160921st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
160931st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
160941st Level	null	"b,c"	NULL	STRING	1	3	0	1
160951st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
160961st Level	null	"b"	NULL	STRING	1	3	0	1
160971st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
160981st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
160991st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
161001st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
161011st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
161021st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
161031st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
161041st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	1	0
161051st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	1	0
161061st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	0	1
161071st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	1	0
161081st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	0	1
161091st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	1	0
161101st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
161111st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
161121st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
161131st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
161141st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
161151st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
161161st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
161171st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
161181st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
161191st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
16120"Testcase for Enum"
16121validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
16122"Testcase for Set"
16123validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
16124"Test for SQL vs JSON"
16125"Comparator >="
16126""
16127"Testcase for Tinyint"
16128validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
161292nd Level	1	12	INTEGER	INTEGER	2	2	0	1
161302nd Level	3	12	INTEGER	INTEGER	2	2	0	1
161312nd Level	1	3	INTEGER	INTEGER	2	2	0	1
161322nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
161332nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
16134"Testcase for Boolean"
16135validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
161362nd Level	1	12	INTEGER	INTEGER	2	2	0	1
161372nd Level	3	12	INTEGER	INTEGER	2	2	0	1
161382nd Level	1	3	INTEGER	INTEGER	2	2	0	1
161392nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
161402nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
16141"Testcase for small Int Signed"
16142validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
161432nd Level	1	12	INTEGER	INTEGER	2	2	0	1
161442nd Level	3	12	INTEGER	INTEGER	2	2	0	1
161452nd Level	1	3	INTEGER	INTEGER	2	2	0	1
161462nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
161472nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
16148"Testcase for Signed Medium Int"
16149validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
161502nd Level	1	12	INTEGER	INTEGER	2	2	0	1
161512nd Level	3	12	INTEGER	INTEGER	2	2	0	1
161522nd Level	1	3	INTEGER	INTEGER	2	2	0	1
161532nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
161542nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
16155"Testcase for unsigned Medium Int"
16156validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
161572nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
161582nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
161592nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
161602nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
161612nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
16162"Testcase for signed Int"
16163validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
161642nd Level	1	12	INTEGER	INTEGER	2	2	0	1
161652nd Level	3	12	INTEGER	INTEGER	2	2	0	1
161662nd Level	1	3	INTEGER	INTEGER	2	2	0	1
161672nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
161682nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
16169"Testcase for Unsigned Int"
16170validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
161712nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
161722nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
161732nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
161742nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
161752nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
16176"Testcase for Big Int"
16177validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
161782nd Level	1	12	INTEGER	INTEGER	2	2	0	1
161792nd Level	3	12	INTEGER	INTEGER	2	2	0	1
161802nd Level	1	3	INTEGER	INTEGER	2	2	0	1
161812nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
161822nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
16183"Testcase for Big Int Unsigned"
16184validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
161852nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
161862nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
161872nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
161882nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
161892nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
16190"Testcase for Decimal"
16191validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
161922nd Level	1.00	12	DECIMAL	INTEGER	2	2	0	1
161932nd Level	3.14	12	DECIMAL	INTEGER	2	2	0	1
161942nd Level	1.00	3	DECIMAL	INTEGER	2	2	0	1
161952nd Level	1.00	3.14	DECIMAL	DECIMAL	2	2	0	1
16196"Testcase for Double"
16197validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
161982nd Level	1	12	DOUBLE	INTEGER	2	2	0	1
161992nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
162002nd Level	1	3	DOUBLE	INTEGER	2	2	0	1
162012nd Level	1	3.14	DOUBLE	DECIMAL	2	2	0	1
16202"Testcase for CHAR"
16203validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
162041st Level	null	1	NULL	INTEGER	1	2	1	0
162051st Level	null	12	NULL	INTEGER	1	2	1	0
162061st Level	null	3	NULL	INTEGER	1	2	1	0
162071st Level	null	3.14	NULL	DECIMAL	1	2	1	0
162082nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
162091st Level	null	"a"	NULL	STRING	1	3	1	0
162102nd Level	"a"	"a"	STRING	STRING	3	3	0	1
162112nd Level	"1"	"a"	STRING	STRING	3	3	0	1
162122nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
162131st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
162142nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
162152nd Level	"b"	"a"	STRING	STRING	3	3	0	1
162162nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
162172nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
162182nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
162192nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
162202nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
162212nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
162222nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
162232nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
162242nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
162252nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
162261st Level	null	"1"	NULL	STRING	1	3	1	0
162271st Level	12	"1"	INTEGER	STRING	2	3	1	0
162281st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
162292nd Level	"a"	"1"	STRING	STRING	3	3	0	1
162302nd Level	"1"	"1"	STRING	STRING	3	3	0	1
162312nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
162322nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
162332nd Level	"b"	"1"	STRING	STRING	3	3	0	1
162342nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
162352nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
162362nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
162372nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
162382nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
162392nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
162402nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
162412nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
162422nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
162432nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
162441st Level	null	"3.14"	NULL	STRING	1	3	1	0
162451st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
162462nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
162472nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
162482nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
162492nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
162502nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
162512nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
162522nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
162532nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
162542nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
162552nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
162562nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
162572nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
162582nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
162592nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
162602nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
162611st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
162622nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
162631st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
162642nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
162651st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
162662nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
162671st Level	null	"b,c"	NULL	STRING	1	3	1	0
162682nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
162692nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
162702nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
162711st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
162722nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
162732nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
162742nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
162752nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
162762nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
162772nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
162782nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
162792nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
162802nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
162812nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
162822nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
162832nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
162841st Level	null	"b"	NULL	STRING	1	3	1	0
162852nd Level	"a"	"b"	STRING	STRING	3	3	0	1
162862nd Level	"1"	"b"	STRING	STRING	3	3	0	1
162872nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
162881st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
162892nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
162902nd Level	"b"	"b"	STRING	STRING	3	3	0	1
162912nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
162922nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
162932nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
162942nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
162952nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
162962nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
162972nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
162982nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
162992nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
163002nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
163011st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
163021st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
163032nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
163042nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
163052nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
163062nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
163072nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
163082nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
163092nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
163102nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
163112nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
163122nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
163132nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
163142nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
163152nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
163162nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
163172nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
163181st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
163191st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
163202nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
163212nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
163222nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
163232nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
163242nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
163252nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
163262nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
163272nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
163282nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
163292nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
163302nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
163312nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
163322nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
163332nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
163342nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
163351st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
163361st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
163372nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163382nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163392nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163402nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163412nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163422nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163432nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163442nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163452nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163462nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163472nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163482nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163492nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163502nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163512nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
163521st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	0	1
163532nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
163541st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	0	1
163552nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
163561st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	1	0
163572nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163582nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163592nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163601st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	0	1
163612nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163622nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163632nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163642nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163652nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163662nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163672nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163682nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163692nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163702nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163712nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163722nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
163731st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	1	0
163742nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163752nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163762nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163771st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	0	1
163782nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163792nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163802nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163812nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163822nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163832nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163842nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163852nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163862nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163872nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163882nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163892nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
163901st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
163912nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
163922nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
163932nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
163941st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
163952nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
163962nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
163972nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
163982nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
163992nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
164002nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
164012nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
164022nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
164032nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
164042nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
164052nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
164062nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
164071st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
164082nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164092nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164102nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164111st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
164122nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164132nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164142nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164152nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164162nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164172nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164182nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164192nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164202nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164212nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164222nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164232nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
164241st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
164252nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164262nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164272nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164281st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
164292nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164302nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164312nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164322nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164332nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164342nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164352nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164362nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164372nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164382nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164392nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164402nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
164411st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
164422nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164432nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164442nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164451st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
164462nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164472nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164482nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164492nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164502nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164512nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164522nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164532nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164542nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164552nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164562nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164572nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
164581st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
164592nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
164602nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
164612nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
164621st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
164632nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
164642nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
164652nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
164662nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
164672nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
164682nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
164692nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
164702nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
164712nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
164722nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
164732nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
164742nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
16475"Testcase for VARCHAR"
16476validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
164771st Level	null	1	NULL	INTEGER	1	2	1	0
164781st Level	null	12	NULL	INTEGER	1	2	1	0
164791st Level	null	3	NULL	INTEGER	1	2	1	0
164801st Level	null	3.14	NULL	DECIMAL	1	2	1	0
164812nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
164821st Level	null	"a"	NULL	STRING	1	3	1	0
164832nd Level	"a"	"a"	STRING	STRING	3	3	0	1
164842nd Level	"1"	"a"	STRING	STRING	3	3	0	1
164852nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
164861st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
164872nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
164882nd Level	"b"	"a"	STRING	STRING	3	3	0	1
164892nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
164902nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
164912nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
164922nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
164932nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
164942nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
164952nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
164962nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
164972nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
164982nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
164991st Level	null	"1"	NULL	STRING	1	3	1	0
165001st Level	12	"1"	INTEGER	STRING	2	3	1	0
165011st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
165022nd Level	"a"	"1"	STRING	STRING	3	3	0	1
165032nd Level	"1"	"1"	STRING	STRING	3	3	0	1
165042nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
165052nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
165062nd Level	"b"	"1"	STRING	STRING	3	3	0	1
165072nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
165082nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
165092nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
165102nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
165112nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
165122nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
165132nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
165142nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
165152nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
165162nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
165171st Level	null	"3.14"	NULL	STRING	1	3	1	0
165181st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
165192nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
165202nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
165212nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
165222nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
165232nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
165242nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
165252nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
165262nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
165272nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
165282nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
165292nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
165302nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
165312nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
165322nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
165332nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
165341st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
165352nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
165361st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
165372nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
165381st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
165392nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
165401st Level	null	"b,c"	NULL	STRING	1	3	1	0
165412nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
165422nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
165432nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
165441st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
165452nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
165462nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
165472nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
165482nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
165492nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
165502nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
165512nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
165522nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
165532nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
165542nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
165552nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
165562nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
165571st Level	null	"b"	NULL	STRING	1	3	1	0
165582nd Level	"a"	"b"	STRING	STRING	3	3	0	1
165592nd Level	"1"	"b"	STRING	STRING	3	3	0	1
165602nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
165611st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
165622nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
165632nd Level	"b"	"b"	STRING	STRING	3	3	0	1
165642nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
165652nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
165662nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
165672nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
165682nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
165692nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
165702nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
165712nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
165722nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
165732nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
165741st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
165751st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
165762nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
165772nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
165782nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
165792nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
165802nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
165812nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
165822nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
165832nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
165842nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
165852nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
165862nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
165872nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
165882nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
165892nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
165902nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
165911st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
165921st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
165932nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
165942nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
165952nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
165962nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
165972nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
165982nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
165992nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
166002nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
166012nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
166022nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
166032nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
166042nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
166052nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
166062nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
166072nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
166081st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
166091st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
166102nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166112nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166122nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166132nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166142nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166152nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166162nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166172nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166182nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166192nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166202nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166212nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166222nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166232nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166242nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166251st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	0	1
166262nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
166271st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	0	1
166282nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
166291st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	1	0
166302nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166312nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166322nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166331st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	0	1
166342nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166352nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166362nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166372nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166382nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166392nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166402nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166412nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166422nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166432nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166442nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166452nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
166461st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	1	0
166472nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166482nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166492nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166501st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	0	1
166512nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166522nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166532nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166542nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166552nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166562nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166572nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166582nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166592nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166602nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166612nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166622nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
166631st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
166642nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166652nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166662nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166671st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
166682nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166692nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166702nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166712nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166722nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166732nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166742nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166752nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166762nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166772nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166782nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166792nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166801st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
166812nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166822nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166832nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166841st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
166852nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166862nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166872nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166882nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166892nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166902nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166912nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166922nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166932nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166942nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166952nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166962nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166971st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
166982nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
166992nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167002nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167011st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
167022nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167032nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167042nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167052nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167062nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167072nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167082nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167092nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167102nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167112nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167122nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167132nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167141st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
167152nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167162nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167172nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167181st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
167192nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167202nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167212nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167222nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167232nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167242nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167252nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167262nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167272nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167282nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167292nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167302nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167311st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
167322nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167332nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167342nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167351st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
167362nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167372nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167382nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167392nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167402nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167412nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167422nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167432nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167442nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167452nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167462nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167472nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
16748"Testcase for Binary(255)"
16749validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
16750"Testcase for Variable Binary"
16751validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
16752"Testcase for TinyBlob"
16753validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
16754"Testcase for TinyText"
16755validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
167561st Level	null	1	NULL	INTEGER	1	2	1	0
167571st Level	null	12	NULL	INTEGER	1	2	1	0
167581st Level	null	3	NULL	INTEGER	1	2	1	0
167591st Level	null	3.14	NULL	DECIMAL	1	2	1	0
167602nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
167611st Level	null	"a"	NULL	STRING	1	3	1	0
167622nd Level	"a"	"a"	STRING	STRING	3	3	0	1
167632nd Level	"1"	"a"	STRING	STRING	3	3	0	1
167642nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
167651st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
167662nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
167672nd Level	"b"	"a"	STRING	STRING	3	3	0	1
167682nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
167692nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
167702nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
167712nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
167722nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
167732nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
167742nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
167752nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
167762nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
167772nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
167781st Level	null	"1"	NULL	STRING	1	3	1	0
167791st Level	12	"1"	INTEGER	STRING	2	3	1	0
167801st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
167812nd Level	"a"	"1"	STRING	STRING	3	3	0	1
167822nd Level	"1"	"1"	STRING	STRING	3	3	0	1
167832nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
167842nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
167852nd Level	"b"	"1"	STRING	STRING	3	3	0	1
167862nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
167872nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
167882nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
167892nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
167902nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
167912nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
167922nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
167932nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
167942nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
167952nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
167961st Level	null	"3.14"	NULL	STRING	1	3	1	0
167971st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
167982nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
167992nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
168002nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
168012nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
168022nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
168032nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
168042nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
168052nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
168062nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
168072nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
168082nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
168092nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
168102nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
168112nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
168122nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
168131st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
168142nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
168151st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
168162nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
168171st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
168182nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
168191st Level	null	"b,c"	NULL	STRING	1	3	1	0
168202nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
168212nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
168222nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
168231st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
168242nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
168252nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
168262nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
168272nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
168282nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
168292nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
168302nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
168312nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
168322nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
168332nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
168342nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
168352nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
168361st Level	null	"b"	NULL	STRING	1	3	1	0
168372nd Level	"a"	"b"	STRING	STRING	3	3	0	1
168382nd Level	"1"	"b"	STRING	STRING	3	3	0	1
168392nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
168401st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
168412nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
168422nd Level	"b"	"b"	STRING	STRING	3	3	0	1
168432nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
168442nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
168452nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
168462nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
168472nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
168482nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
168492nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
168502nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
168512nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
168522nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
168531st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
168541st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
168552nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
168562nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
168572nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
168582nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
168592nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
168602nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
168612nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
168622nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
168632nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
168642nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
168652nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
168662nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
168672nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
168682nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
168692nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
168701st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
168711st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
168722nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
168732nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
168742nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
168752nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
168762nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
168772nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
168782nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
168792nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
168802nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
168812nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
168822nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
168832nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
168842nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
168852nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
168862nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
168871st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
168881st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
168892nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168902nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168912nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168922nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168932nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168942nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168952nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168962nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168972nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168982nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168992nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
169002nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
169012nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
169022nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
169032nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
169041st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	0	1
169052nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
169061st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	0	1
169072nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
169081st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	1	0
169092nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169102nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169112nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169121st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	0	1
169132nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169142nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169152nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169162nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169172nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169182nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169192nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169202nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169212nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169222nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169232nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169242nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
169251st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	1	0
169262nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169272nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169282nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169291st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	0	1
169302nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169312nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169322nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169332nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169342nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169352nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169362nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169372nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169382nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169392nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169402nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169412nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
169421st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
169432nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169442nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169452nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169461st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
169472nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169482nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169492nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169502nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169512nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169522nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169532nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169542nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169552nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169562nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169572nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169582nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169591st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
169602nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169612nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169622nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169631st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
169642nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169652nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169662nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169672nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169682nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169692nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169702nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169712nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169722nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169732nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169742nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169752nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169761st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
169772nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169782nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169792nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169801st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
169812nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169822nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169832nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169842nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169852nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169862nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169872nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169882nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169892nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169902nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169912nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169922nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169931st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
169942nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
169952nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
169962nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
169971st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
169982nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
169992nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170002nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170012nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170022nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170032nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170042nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170052nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170062nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170072nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170082nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170092nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170101st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
170112nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170122nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170132nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170141st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
170152nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170162nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170172nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170182nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170192nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170202nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170212nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170222nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170232nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170242nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170252nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170262nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
17027"Testcase for Blob"
17028validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
17029"Testcase for Text"
17030validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
170311st Level	null	1	NULL	INTEGER	1	2	1	0
170321st Level	null	12	NULL	INTEGER	1	2	1	0
170331st Level	null	3	NULL	INTEGER	1	2	1	0
170341st Level	null	3.14	NULL	DECIMAL	1	2	1	0
170352nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
170361st Level	null	"a"	NULL	STRING	1	3	1	0
170372nd Level	"a"	"a"	STRING	STRING	3	3	0	1
170382nd Level	"1"	"a"	STRING	STRING	3	3	0	1
170392nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
170401st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
170412nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
170422nd Level	"b"	"a"	STRING	STRING	3	3	0	1
170432nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
170442nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
170452nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
170462nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
170472nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
170482nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
170492nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
170502nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
170512nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
170522nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
170531st Level	null	"1"	NULL	STRING	1	3	1	0
170541st Level	12	"1"	INTEGER	STRING	2	3	1	0
170551st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
170562nd Level	"a"	"1"	STRING	STRING	3	3	0	1
170572nd Level	"1"	"1"	STRING	STRING	3	3	0	1
170582nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
170592nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
170602nd Level	"b"	"1"	STRING	STRING	3	3	0	1
170612nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
170622nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
170632nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
170642nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
170652nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
170662nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
170672nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
170682nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
170692nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
170702nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
170711st Level	null	"3.14"	NULL	STRING	1	3	1	0
170721st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
170732nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
170742nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
170752nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
170762nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
170772nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
170782nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
170792nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
170802nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
170812nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
170822nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
170832nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
170842nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
170852nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
170862nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
170872nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
170881st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
170892nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
170901st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
170912nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
170921st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
170932nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
170941st Level	null	"b,c"	NULL	STRING	1	3	1	0
170952nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
170962nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
170972nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
170981st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
170992nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
171002nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
171012nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
171022nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
171032nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
171042nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
171052nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
171062nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
171072nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
171082nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
171092nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
171102nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
171111st Level	null	"b"	NULL	STRING	1	3	1	0
171122nd Level	"a"	"b"	STRING	STRING	3	3	0	1
171132nd Level	"1"	"b"	STRING	STRING	3	3	0	1
171142nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
171151st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
171162nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
171172nd Level	"b"	"b"	STRING	STRING	3	3	0	1
171182nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
171192nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
171202nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
171212nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
171222nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
171232nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
171242nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
171252nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
171262nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
171272nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
171281st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
171291st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
171302nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
171312nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
171322nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
171332nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
171342nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
171352nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
171362nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
171372nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
171382nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
171392nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
171402nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
171412nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
171422nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
171432nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
171442nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
171451st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
171461st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
171472nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171482nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171492nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171502nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171512nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171522nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171532nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171542nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171552nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
171562nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
171572nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
171582nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
171592nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
171602nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
171612nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171621st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
171631st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
171642nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171652nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171662nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171672nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171682nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171692nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171702nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171712nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171722nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171732nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171742nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171752nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171762nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171772nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171782nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171791st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	0	1
171802nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
171811st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	0	1
171822nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
171831st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	1	0
171842nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
171852nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
171862nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
171871st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	0	1
171882nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
171892nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
171902nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
171912nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
171922nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
171932nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
171942nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
171952nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
171962nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
171972nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
171982nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
171992nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
172001st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	1	0
172012nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172022nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172032nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172041st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	0	1
172052nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172062nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172072nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172082nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172092nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172102nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172112nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172122nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172132nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172142nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172152nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172162nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
172171st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
172182nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172192nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172202nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172211st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
172222nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172232nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172242nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172252nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172262nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172272nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172282nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172292nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172302nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172312nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172322nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172332nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172341st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
172352nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172362nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172372nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172381st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
172392nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172402nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172412nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172422nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172432nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172442nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172452nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172462nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172472nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172482nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172492nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172502nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172511st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
172522nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172532nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172542nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172551st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
172562nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172572nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172582nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172592nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172602nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172612nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172622nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172632nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172642nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172652nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172662nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172672nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172681st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
172692nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172702nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172712nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172721st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
172732nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172742nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172752nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172762nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172772nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172782nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172792nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172802nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172812nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172822nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172832nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172842nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172851st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
172862nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172872nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172882nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172891st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
172902nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172912nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172922nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172932nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172942nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172952nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172962nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172972nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172982nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172992nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
173002nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
173012nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
17302"Testcase for Medium Blob"
17303validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
17304"Testcase for Medium Text"
17305validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
173061st Level	null	1	NULL	INTEGER	1	2	1	0
173071st Level	null	12	NULL	INTEGER	1	2	1	0
173081st Level	null	3	NULL	INTEGER	1	2	1	0
173091st Level	null	3.14	NULL	DECIMAL	1	2	1	0
173102nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
173111st Level	null	"a"	NULL	STRING	1	3	1	0
173122nd Level	"a"	"a"	STRING	STRING	3	3	0	1
173132nd Level	"1"	"a"	STRING	STRING	3	3	0	1
173142nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
173151st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
173162nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
173172nd Level	"b"	"a"	STRING	STRING	3	3	0	1
173182nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
173192nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
173202nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
173212nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
173222nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
173232nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
173242nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
173252nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
173262nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
173272nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
173281st Level	null	"1"	NULL	STRING	1	3	1	0
173291st Level	12	"1"	INTEGER	STRING	2	3	1	0
173301st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
173312nd Level	"a"	"1"	STRING	STRING	3	3	0	1
173322nd Level	"1"	"1"	STRING	STRING	3	3	0	1
173332nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
173342nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
173352nd Level	"b"	"1"	STRING	STRING	3	3	0	1
173362nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
173372nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
173382nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
173392nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
173402nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
173412nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
173422nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
173432nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
173442nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
173452nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
173461st Level	null	"3.14"	NULL	STRING	1	3	1	0
173471st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
173482nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
173492nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
173502nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
173512nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
173522nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
173532nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
173542nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
173552nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
173562nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
173572nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
173582nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
173592nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
173602nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
173612nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
173622nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
173631st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
173642nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
173651st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
173662nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
173671st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
173682nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
173691st Level	null	"b,c"	NULL	STRING	1	3	1	0
173702nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
173712nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
173722nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
173731st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
173742nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
173752nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
173762nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
173772nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
173782nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
173792nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
173802nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
173812nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
173822nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
173832nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
173842nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
173852nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
173861st Level	null	"b"	NULL	STRING	1	3	1	0
173872nd Level	"a"	"b"	STRING	STRING	3	3	0	1
173882nd Level	"1"	"b"	STRING	STRING	3	3	0	1
173892nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
173901st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
173912nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
173922nd Level	"b"	"b"	STRING	STRING	3	3	0	1
173932nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
173942nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
173952nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
173962nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
173972nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
173982nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
173992nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
174002nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
174012nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
174022nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
174031st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
174041st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
174052nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
174062nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
174072nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
174082nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
174092nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
174102nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
174112nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
174122nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
174132nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
174142nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
174152nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
174162nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
174172nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
174182nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
174192nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
174201st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
174211st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
174222nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
174232nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
174242nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
174252nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
174262nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
174272nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
174282nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
174292nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
174302nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
174312nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
174322nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
174332nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
174342nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
174352nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
174362nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
174371st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
174381st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
174392nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174402nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174412nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174422nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174432nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174442nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174452nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174462nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174472nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174482nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174492nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174502nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174512nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174522nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174532nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174541st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	0	1
174552nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
174561st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	0	1
174572nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
174581st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	1	0
174592nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174602nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174612nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174621st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	0	1
174632nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174642nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174652nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174662nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174672nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174682nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174692nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174702nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174712nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174722nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174732nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174742nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
174751st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	1	0
174762nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174772nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174782nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174791st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	0	1
174802nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174812nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174822nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174832nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174842nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174852nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174862nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174872nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174882nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174892nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174902nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174912nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
174921st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
174932nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
174942nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
174952nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
174961st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
174972nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
174982nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
174992nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175002nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175012nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175022nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175032nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175042nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175052nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175062nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175072nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175082nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175091st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
175102nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175112nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175122nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175131st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
175142nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175152nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175162nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175172nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175182nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175192nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175202nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175212nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175222nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175232nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175242nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175252nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175261st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
175272nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175282nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175292nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175301st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
175312nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175322nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175332nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175342nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175352nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175362nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175372nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175382nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175392nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175402nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175412nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175422nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175431st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
175442nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175452nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175462nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175471st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
175482nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175492nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175502nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175512nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175522nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175532nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175542nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175552nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175562nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175572nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175582nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175592nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175601st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
175612nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175622nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175632nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175641st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
175652nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175662nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175672nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175682nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175692nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175702nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175712nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175722nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175732nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175742nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175752nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175762nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
17577"Testcase for Long Blob"
17578validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
17579"Testcase for Long Text"
17580validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
175811st Level	null	1	NULL	INTEGER	1	2	1	0
175821st Level	null	12	NULL	INTEGER	1	2	1	0
175831st Level	null	3	NULL	INTEGER	1	2	1	0
175841st Level	null	3.14	NULL	DECIMAL	1	2	1	0
175852nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
175861st Level	null	"a"	NULL	STRING	1	3	1	0
175872nd Level	"a"	"a"	STRING	STRING	3	3	0	1
175882nd Level	"1"	"a"	STRING	STRING	3	3	0	1
175892nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
175901st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
175912nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
175922nd Level	"b"	"a"	STRING	STRING	3	3	0	1
175932nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
175942nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
175952nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
175962nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
175972nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
175982nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
175992nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
176002nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
176012nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
176022nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
176031st Level	null	"1"	NULL	STRING	1	3	1	0
176041st Level	12	"1"	INTEGER	STRING	2	3	1	0
176051st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
176062nd Level	"a"	"1"	STRING	STRING	3	3	0	1
176072nd Level	"1"	"1"	STRING	STRING	3	3	0	1
176082nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
176092nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
176102nd Level	"b"	"1"	STRING	STRING	3	3	0	1
176112nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
176122nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
176132nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
176142nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
176152nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
176162nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
176172nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
176182nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
176192nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
176202nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
176211st Level	null	"3.14"	NULL	STRING	1	3	1	0
176221st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
176232nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
176242nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
176252nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
176262nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
176272nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
176282nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
176292nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
176302nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
176312nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
176322nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
176332nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
176342nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
176352nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
176362nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
176372nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
176381st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
176392nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
176401st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
176412nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
176421st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
176432nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
176441st Level	null	"b,c"	NULL	STRING	1	3	1	0
176452nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
176462nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
176472nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
176481st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
176492nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
176502nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
176512nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
176522nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
176532nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
176542nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
176552nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
176562nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
176572nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
176582nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
176592nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
176602nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
176611st Level	null	"b"	NULL	STRING	1	3	1	0
176622nd Level	"a"	"b"	STRING	STRING	3	3	0	1
176632nd Level	"1"	"b"	STRING	STRING	3	3	0	1
176642nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
176651st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
176662nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
176672nd Level	"b"	"b"	STRING	STRING	3	3	0	1
176682nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
176692nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
176702nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
176712nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
176722nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
176732nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
176742nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
176752nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
176762nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
176772nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
176781st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
176791st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
176802nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
176812nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
176822nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
176832nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
176842nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
176852nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
176862nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
176872nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
176882nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
176892nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
176902nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
176912nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
176922nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
176932nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
176942nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
176951st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
176961st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
176972nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
176982nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
176992nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
177002nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
177012nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
177022nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
177032nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
177042nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
177052nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
177062nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
177072nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
177082nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
177092nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
177102nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
177112nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
177121st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
177131st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
177142nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177152nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177162nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177172nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177182nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177192nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177202nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177212nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177222nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177232nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177242nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177252nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177262nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177272nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177282nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177291st Level	true	{"type": "Point", "coordinates": [1, 1]}	BOOLEAN	OBJECT	6	4	0	1
177302nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
177311st Level	[1, 2]	{"type": "Point", "coordinates": [1, 1]}	ARRAY	OBJECT	5	4	0	1
177322nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
177331st Level	null	"base64:type16:yv4="	NULL	STRING	1	3	1	0
177342nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177352nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177362nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177371st Level	[1, 2]	"base64:type16:yv4="	ARRAY	STRING	5	3	0	1
177382nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177392nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177402nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177412nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177422nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177432nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177442nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177452nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177462nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177472nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177482nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177492nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
177501st Level	null	"base64:type13:MTk5Mg=="	NULL	STRING	1	3	1	0
177512nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177522nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177532nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177541st Level	[1, 2]	"base64:type13:MTk5Mg=="	ARRAY	STRING	5	3	0	1
177552nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177562nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177572nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177582nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177592nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177602nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177612nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177622nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177632nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177642nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177652nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177662nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
177671st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
177682nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177692nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177702nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177711st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
177722nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177732nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177742nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177752nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177762nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177772nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177782nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177792nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177802nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177812nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177822nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177832nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177841st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
177852nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177862nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177872nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177881st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
177892nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177902nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177912nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177922nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177932nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177942nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177952nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177962nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177972nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177982nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177992nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
178002nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
178011st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
178022nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178032nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178042nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178051st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
178062nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178072nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178082nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178092nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178102nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178112nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178122nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178132nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178142nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178152nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178162nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178172nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178181st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
178192nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178202nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178212nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178221st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
178232nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178242nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178252nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178262nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178272nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178282nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178292nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178302nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178312nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178322nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178332nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178342nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178351st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
178362nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178372nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178382nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178391st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
178402nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178412nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178422nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178432nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178442nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178452nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178462nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178472nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178482nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178492nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178502nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178512nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
17852"Testcase for Enum"
17853validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
17854"Testcase for Set"
17855validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
17856"Test for SQL vs JSON"
17857"Comparator <>"
17858""
17859"Testcase for Tinyint"
17860validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
178612nd Level	12	1	INTEGER	INTEGER	2	2	1	0
178622nd Level	3	1	INTEGER	INTEGER	2	2	1	0
178632nd Level	1	12	INTEGER	INTEGER	2	2	1	0
178642nd Level	3	12	INTEGER	INTEGER	2	2	1	0
178652nd Level	1	3	INTEGER	INTEGER	2	2	1	0
178662nd Level	12	3	INTEGER	INTEGER	2	2	1	0
178672nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
178682nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
178692nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
17870"Testcase for Boolean"
17871validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
178722nd Level	12	1	INTEGER	INTEGER	2	2	1	0
178732nd Level	3	1	INTEGER	INTEGER	2	2	1	0
178742nd Level	1	12	INTEGER	INTEGER	2	2	1	0
178752nd Level	3	12	INTEGER	INTEGER	2	2	1	0
178762nd Level	1	3	INTEGER	INTEGER	2	2	1	0
178772nd Level	12	3	INTEGER	INTEGER	2	2	1	0
178782nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
178792nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
178802nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
17881"Testcase for small Int Signed"
17882validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
178832nd Level	12	1	INTEGER	INTEGER	2	2	1	0
178842nd Level	3	1	INTEGER	INTEGER	2	2	1	0
178852nd Level	1	12	INTEGER	INTEGER	2	2	1	0
178862nd Level	3	12	INTEGER	INTEGER	2	2	1	0
178872nd Level	1	3	INTEGER	INTEGER	2	2	1	0
178882nd Level	12	3	INTEGER	INTEGER	2	2	1	0
178892nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
178902nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
178912nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
17892"Testcase for Signed Medium Int"
17893validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
178942nd Level	12	1	INTEGER	INTEGER	2	2	1	0
178952nd Level	3	1	INTEGER	INTEGER	2	2	1	0
178962nd Level	1	12	INTEGER	INTEGER	2	2	1	0
178972nd Level	3	12	INTEGER	INTEGER	2	2	1	0
178982nd Level	1	3	INTEGER	INTEGER	2	2	1	0
178992nd Level	12	3	INTEGER	INTEGER	2	2	1	0
179002nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
179012nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
179022nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
17903"Testcase for unsigned Medium Int"
17904validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
179052nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
179062nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
179072nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
179082nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
179092nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
179102nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
179112nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
179122nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
179132nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
17914"Testcase for signed Int"
17915validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
179162nd Level	12	1	INTEGER	INTEGER	2	2	1	0
179172nd Level	3	1	INTEGER	INTEGER	2	2	1	0
179182nd Level	1	12	INTEGER	INTEGER	2	2	1	0
179192nd Level	3	12	INTEGER	INTEGER	2	2	1	0
179202nd Level	1	3	INTEGER	INTEGER	2	2	1	0
179212nd Level	12	3	INTEGER	INTEGER	2	2	1	0
179222nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
179232nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
179242nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
17925"Testcase for Unsigned Int"
17926validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
179272nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
179282nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
179292nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
179302nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
179312nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
179322nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
179332nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
179342nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
179352nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
17936"Testcase for Big Int"
17937validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
179382nd Level	12	1	INTEGER	INTEGER	2	2	1	0
179392nd Level	3	1	INTEGER	INTEGER	2	2	1	0
179402nd Level	1	12	INTEGER	INTEGER	2	2	1	0
179412nd Level	3	12	INTEGER	INTEGER	2	2	1	0
179422nd Level	1	3	INTEGER	INTEGER	2	2	1	0
179432nd Level	12	3	INTEGER	INTEGER	2	2	1	0
179442nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
179452nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
179462nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
17947"Testcase for Big Int Unsigned"
17948validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
179492nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
179502nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
179512nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
179522nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
179532nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
179542nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
179552nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
179562nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
179572nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
17958"Testcase for Decimal"
17959validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
179602nd Level	12.00	1	DECIMAL	INTEGER	2	2	1	0
179612nd Level	3.14	1	DECIMAL	INTEGER	2	2	1	0
179622nd Level	1.00	12	DECIMAL	INTEGER	2	2	1	0
179632nd Level	3.14	12	DECIMAL	INTEGER	2	2	1	0
179642nd Level	1.00	3	DECIMAL	INTEGER	2	2	1	0
179652nd Level	12.00	3	DECIMAL	INTEGER	2	2	1	0
179662nd Level	3.14	3	DECIMAL	INTEGER	2	2	1	0
179672nd Level	1.00	3.14	DECIMAL	DECIMAL	2	2	1	0
179682nd Level	12.00	3.14	DECIMAL	DECIMAL	2	2	1	0
17969"Testcase for Double"
17970validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
179712nd Level	12	1	DOUBLE	INTEGER	2	2	1	0
179722nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
179732nd Level	1	12	DOUBLE	INTEGER	2	2	1	0
179742nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
179752nd Level	1	3	DOUBLE	INTEGER	2	2	1	0
179762nd Level	12	3	DOUBLE	INTEGER	2	2	1	0
179772nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
179782nd Level	1	3.14	DOUBLE	DECIMAL	2	2	1	0
179792nd Level	12	3.14	DOUBLE	DECIMAL	2	2	1	0
17980"Testcase for CHAR"
17981validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
179822nd Level	12	1	INTEGER	INTEGER	2	2	1	0
179832nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
179842nd Level	12	12	INTEGER	INTEGER	2	2	1	0
179852nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
179862nd Level	12	3	INTEGER	INTEGER	2	2	1	0
179872nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
179882nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
179892nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
179902nd Level	null	null	NULL	NULL	1	1	1	0
179912nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
179922nd Level	"a"	"a"	STRING	STRING	3	3	1	0
179932nd Level	"1"	"a"	STRING	STRING	3	3	1	0
179942nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
179952nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
179962nd Level	"b"	"a"	STRING	STRING	3	3	1	0
179972nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
179982nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
179992nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
180002nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	1	0
180012nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	1	0
180022nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
180032nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
180042nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
180052nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
180062nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
180072nd Level	"a"	"1"	STRING	STRING	3	3	1	0
180082nd Level	"1"	"1"	STRING	STRING	3	3	1	0
180092nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
180102nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
180112nd Level	"b"	"1"	STRING	STRING	3	3	1	0
180122nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
180132nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
180142nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
180152nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	1	0
180162nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	1	0
180172nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
180182nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
180192nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
180202nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
180212nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
180221st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
180232nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
180242nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
180252nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
180262nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
180272nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
180282nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
180292nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
180302nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
180312nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	1	0
180322nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	1	0
180332nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
180342nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
180352nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
180362nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
180372nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
180382nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
180392nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
180402nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
180412nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
180422nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
180432nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
180442nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
180452nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
180462nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
180472nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
180482nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
180492nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	1	0
180502nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	1	0
180512nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
180522nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
180532nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
180542nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
180552nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
180562nd Level	"a"	"b"	STRING	STRING	3	3	1	0
180572nd Level	"1"	"b"	STRING	STRING	3	3	1	0
180582nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
180592nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
180602nd Level	"b"	"b"	STRING	STRING	3	3	1	0
180612nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
180622nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
180632nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
180642nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	1	0
180652nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	1	0
180662nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
180672nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
180682nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
180692nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
180702nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
180712nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
180722nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
180732nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
180742nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
180752nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
180762nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
180772nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
180782nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
180792nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
180802nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	1	0
180812nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
180822nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
180832nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
180842nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
180852nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
180862nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
180872nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
180882nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
180892nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
180902nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
180912nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
180922nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
180932nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
180942nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
180952nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
180962nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
180972nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
180982nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
180992nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
181002nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
181012nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181022nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181032nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181042nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181052nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181062nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181072nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181082nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181092nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181102nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181112nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181122nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181132nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181142nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181152nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
181162nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
181172nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
181182nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181192nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181202nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181212nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181222nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181232nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181242nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181252nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181262nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181272nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181282nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181292nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181302nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181312nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181322nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
181332nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181342nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181352nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181362nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181372nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181382nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181392nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181402nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181412nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181422nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181432nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181442nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181452nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181462nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181472nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
181482nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181492nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181502nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181512nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181522nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181532nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181542nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181552nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181562nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181572nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181582nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181592nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181602nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181612nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181622nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
181632nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181642nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181652nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181662nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181672nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181682nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181692nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181702nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181712nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181722nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181732nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181742nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181752nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181762nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181772nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
181782nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181792nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181802nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181812nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181822nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181832nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181842nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181852nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181862nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181872nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181882nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181892nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181902nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181912nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181922nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
181932nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
181942nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
181952nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
181962nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
181972nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
181982nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
181992nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
182002nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
182012nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
182022nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
182032nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
182042nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
182052nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
182062nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
182072nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
182082nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
182092nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
182102nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
182112nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
182122nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
182132nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
182142nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
182152nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
182162nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
182172nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
182182nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
182192nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
182202nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
182212nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
182222nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
18223"Testcase for VARCHAR"
18224validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
182252nd Level	12	1	INTEGER	INTEGER	2	2	1	0
182262nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
182272nd Level	12	12	INTEGER	INTEGER	2	2	1	0
182282nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
182292nd Level	12	3	INTEGER	INTEGER	2	2	1	0
182302nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
182312nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
182322nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
182332nd Level	null	null	NULL	NULL	1	1	1	0
182342nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
182352nd Level	"a"	"a"	STRING	STRING	3	3	1	0
182362nd Level	"1"	"a"	STRING	STRING	3	3	1	0
182372nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
182382nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
182392nd Level	"b"	"a"	STRING	STRING	3	3	1	0
182402nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
182412nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
182422nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
182432nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	1	0
182442nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	1	0
182452nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
182462nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
182472nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
182482nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
182492nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
182502nd Level	"a"	"1"	STRING	STRING	3	3	1	0
182512nd Level	"1"	"1"	STRING	STRING	3	3	1	0
182522nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
182532nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
182542nd Level	"b"	"1"	STRING	STRING	3	3	1	0
182552nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
182562nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
182572nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
182582nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	1	0
182592nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	1	0
182602nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
182612nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
182622nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
182632nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
182642nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
182651st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
182662nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
182672nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
182682nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
182692nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
182702nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
182712nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
182722nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
182732nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
182742nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	1	0
182752nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	1	0
182762nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
182772nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
182782nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
182792nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
182802nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
182812nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
182822nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
182832nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
182842nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
182852nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
182862nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
182872nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
182882nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
182892nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
182902nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
182912nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
182922nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	1	0
182932nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	1	0
182942nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
182952nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
182962nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
182972nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
182982nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
182992nd Level	"a"	"b"	STRING	STRING	3	3	1	0
183002nd Level	"1"	"b"	STRING	STRING	3	3	1	0
183012nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
183022nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
183032nd Level	"b"	"b"	STRING	STRING	3	3	1	0
183042nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
183052nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
183062nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
183072nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	1	0
183082nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	1	0
183092nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
183102nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
183112nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
183122nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
183132nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
183142nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
183152nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
183162nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
183172nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
183182nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
183192nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
183202nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
183212nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
183222nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
183232nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	1	0
183242nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
183252nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
183262nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
183272nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
183282nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
183292nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
183302nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
183312nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
183322nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
183332nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
183342nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
183352nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
183362nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
183372nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
183382nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
183392nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
183402nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
183412nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
183422nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
183432nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
183442nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183452nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183462nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183472nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183482nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183492nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183502nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183512nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183522nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183532nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183542nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183552nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183562nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183572nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183582nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
183592nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
183602nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
183612nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183622nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183632nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183642nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183652nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183662nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183672nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183682nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183692nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183702nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183712nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183722nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183732nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183742nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183752nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
183762nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183772nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183782nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183792nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183802nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183812nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183822nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183832nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183842nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183852nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183862nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183872nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183882nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183892nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183902nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
183912nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
183922nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
183932nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
183942nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
183952nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
183962nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
183972nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
183982nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
183992nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
184002nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
184012nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
184022nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
184032nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
184042nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
184052nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
184062nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184072nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184082nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184092nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184102nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184112nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184122nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184132nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184142nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184152nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184162nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184172nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184182nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184192nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184202nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
184212nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184222nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184232nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184242nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184252nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184262nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184272nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184282nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184292nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184302nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184312nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184322nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184332nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184342nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184352nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
184362nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184372nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184382nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184392nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184402nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184412nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184422nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184432nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184442nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184452nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184462nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184472nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184482nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184492nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184502nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
184512nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
184522nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
184532nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
184542nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
184552nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
184562nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
184572nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
184582nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
184592nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
184602nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
184612nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
184622nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
184632nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
184642nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
184652nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
18466"Testcase for Binary(255)"
18467validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
18468"Testcase for Variable Binary"
18469validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
18470"Testcase for TinyBlob"
18471validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
18472"Testcase for TinyText"
18473validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
184742nd Level	12	1	INTEGER	INTEGER	2	2	1	0
184752nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
184762nd Level	12	12	INTEGER	INTEGER	2	2	1	0
184772nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
184782nd Level	12	3	INTEGER	INTEGER	2	2	1	0
184792nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
184802nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
184812nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
184822nd Level	null	null	NULL	NULL	1	1	1	0
184832nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
184842nd Level	"a"	"a"	STRING	STRING	3	3	1	0
184852nd Level	"1"	"a"	STRING	STRING	3	3	1	0
184862nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
184872nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
184882nd Level	"b"	"a"	STRING	STRING	3	3	1	0
184892nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
184902nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
184912nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
184922nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	1	0
184932nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	1	0
184942nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
184952nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
184962nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
184972nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
184982nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
184992nd Level	"a"	"1"	STRING	STRING	3	3	1	0
185002nd Level	"1"	"1"	STRING	STRING	3	3	1	0
185012nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
185022nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
185032nd Level	"b"	"1"	STRING	STRING	3	3	1	0
185042nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
185052nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
185062nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
185072nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	1	0
185082nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	1	0
185092nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
185102nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
185112nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
185122nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
185132nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
185141st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
185152nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
185162nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
185172nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
185182nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
185192nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
185202nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
185212nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
185222nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
185232nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	1	0
185242nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	1	0
185252nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
185262nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
185272nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
185282nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
185292nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
185302nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
185312nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
185322nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
185332nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
185342nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
185352nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
185362nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
185372nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
185382nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
185392nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
185402nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
185412nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	1	0
185422nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	1	0
185432nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
185442nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
185452nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
185462nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
185472nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
185482nd Level	"a"	"b"	STRING	STRING	3	3	1	0
185492nd Level	"1"	"b"	STRING	STRING	3	3	1	0
185502nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
185512nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
185522nd Level	"b"	"b"	STRING	STRING	3	3	1	0
185532nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
185542nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
185552nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
185562nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	1	0
185572nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	1	0
185582nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
185592nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
185602nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
185612nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
185622nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
185632nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
185642nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
185652nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
185662nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
185672nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
185682nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
185692nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
185702nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
185712nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
185722nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	1	0
185732nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
185742nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
185752nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
185762nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
185772nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
185782nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
185792nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
185802nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
185812nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
185822nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
185832nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
185842nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
185852nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
185862nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
185872nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
185882nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
185892nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
185902nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
185912nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
185922nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
185932nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
185942nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
185952nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
185962nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
185972nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
185982nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
185992nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
186002nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
186012nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
186022nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
186032nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
186042nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
186052nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
186062nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
186072nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
186082nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
186092nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
186102nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186112nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186122nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186132nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186142nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186152nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186162nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186172nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186182nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186192nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186202nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186212nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186222nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186232nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186242nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
186252nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186262nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186272nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186282nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186292nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186302nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186312nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186322nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186332nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186342nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186352nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186362nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186372nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186382nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186392nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
186402nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186412nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186422nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186432nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186442nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186452nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186462nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186472nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186482nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186492nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186502nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186512nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186522nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186532nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186542nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
186552nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186562nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186572nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186582nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186592nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186602nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186612nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186622nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186632nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186642nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186652nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186662nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186672nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186682nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186692nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
186702nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186712nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186722nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186732nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186742nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186752nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186762nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186772nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186782nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186792nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186802nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186812nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186822nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186832nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186842nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
186852nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
186862nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
186872nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
186882nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
186892nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
186902nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
186912nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
186922nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
186932nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
186942nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
186952nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
186962nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
186972nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
186982nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
186992nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
187002nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
187012nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
187022nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
187032nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
187042nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
187052nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
187062nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
187072nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
187082nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
187092nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
187102nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
187112nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
187122nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
187132nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
187142nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
18715"Testcase for Blob"
18716validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
18717"Testcase for Text"
18718validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
187192nd Level	12	1	INTEGER	INTEGER	2	2	1	0
187202nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
187212nd Level	12	12	INTEGER	INTEGER	2	2	1	0
187222nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
187232nd Level	12	3	INTEGER	INTEGER	2	2	1	0
187242nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
187252nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
187262nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
187272nd Level	null	null	NULL	NULL	1	1	1	0
187282nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
187292nd Level	"a"	"a"	STRING	STRING	3	3	1	0
187302nd Level	"1"	"a"	STRING	STRING	3	3	1	0
187312nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
187322nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
187332nd Level	"b"	"a"	STRING	STRING	3	3	1	0
187342nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
187352nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
187362nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
187372nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	1	0
187382nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	1	0
187392nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
187402nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
187412nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
187422nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
187432nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
187442nd Level	"a"	"1"	STRING	STRING	3	3	1	0
187452nd Level	"1"	"1"	STRING	STRING	3	3	1	0
187462nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
187472nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
187482nd Level	"b"	"1"	STRING	STRING	3	3	1	0
187492nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
187502nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
187512nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
187522nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	1	0
187532nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	1	0
187542nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
187552nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
187562nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
187572nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
187582nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
187591st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
187602nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
187612nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
187622nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
187632nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
187642nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
187652nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
187662nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
187672nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
187682nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	1	0
187692nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	1	0
187702nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
187712nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
187722nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
187732nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
187742nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
187752nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
187762nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
187772nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
187782nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
187792nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
187802nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
187812nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
187822nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
187832nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
187842nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
187852nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
187862nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	1	0
187872nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	1	0
187882nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
187892nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
187902nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
187912nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
187922nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
187932nd Level	"a"	"b"	STRING	STRING	3	3	1	0
187942nd Level	"1"	"b"	STRING	STRING	3	3	1	0
187952nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
187962nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
187972nd Level	"b"	"b"	STRING	STRING	3	3	1	0
187982nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
187992nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
188002nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
188012nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	1	0
188022nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	1	0
188032nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
188042nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
188052nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
188062nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
188072nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
188082nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
188092nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
188102nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
188112nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
188122nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
188132nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
188142nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
188152nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
188162nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
188172nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	1	0
188182nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
188192nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
188202nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
188212nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
188222nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
188232nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
188242nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
188252nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
188262nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
188272nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
188282nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
188292nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
188302nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
188312nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
188322nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
188332nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
188342nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
188352nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
188362nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
188372nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
188382nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188392nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188402nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188412nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188422nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188432nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188442nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188452nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188462nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188472nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188482nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188492nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188502nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188512nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188522nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
188532nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
188542nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
188552nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188562nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188572nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188582nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188592nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188602nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188612nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188622nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188632nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188642nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188652nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188662nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188672nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188682nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188692nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
188702nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188712nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188722nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188732nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188742nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188752nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188762nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188772nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188782nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188792nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188802nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188812nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188822nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188832nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188842nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
188852nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
188862nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
188872nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
188882nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
188892nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
188902nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
188912nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
188922nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
188932nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
188942nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
188952nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
188962nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
188972nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
188982nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
188992nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
189002nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189012nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189022nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189032nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189042nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189052nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189062nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189072nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189082nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189092nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189102nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189112nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189122nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189132nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189142nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
189152nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189162nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189172nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189182nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189192nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189202nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189212nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189222nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189232nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189242nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189252nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189262nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189272nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189282nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189292nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
189302nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189312nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189322nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189332nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189342nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189352nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189362nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189372nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189382nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189392nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189402nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189412nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189422nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189432nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189442nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
189452nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
189462nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
189472nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
189482nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
189492nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
189502nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
189512nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
189522nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
189532nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
189542nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
189552nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
189562nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
189572nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
189582nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
189592nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
18960"Testcase for Medium Blob"
18961validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
18962"Testcase for Medium Text"
18963validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
189642nd Level	12	1	INTEGER	INTEGER	2	2	1	0
189652nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
189662nd Level	12	12	INTEGER	INTEGER	2	2	1	0
189672nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
189682nd Level	12	3	INTEGER	INTEGER	2	2	1	0
189692nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
189702nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
189712nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
189722nd Level	null	null	NULL	NULL	1	1	1	0
189732nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
189742nd Level	"a"	"a"	STRING	STRING	3	3	1	0
189752nd Level	"1"	"a"	STRING	STRING	3	3	1	0
189762nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
189772nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
189782nd Level	"b"	"a"	STRING	STRING	3	3	1	0
189792nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
189802nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
189812nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
189822nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	1	0
189832nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	1	0
189842nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
189852nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
189862nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
189872nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
189882nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
189892nd Level	"a"	"1"	STRING	STRING	3	3	1	0
189902nd Level	"1"	"1"	STRING	STRING	3	3	1	0
189912nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
189922nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
189932nd Level	"b"	"1"	STRING	STRING	3	3	1	0
189942nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
189952nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
189962nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
189972nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	1	0
189982nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	1	0
189992nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
190002nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
190012nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
190022nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
190032nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
190041st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
190052nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
190062nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
190072nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
190082nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
190092nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
190102nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
190112nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
190122nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
190132nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	1	0
190142nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	1	0
190152nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
190162nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
190172nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
190182nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
190192nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
190202nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
190212nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
190222nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
190232nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
190242nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
190252nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
190262nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
190272nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
190282nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
190292nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
190302nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
190312nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	1	0
190322nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	1	0
190332nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
190342nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
190352nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
190362nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
190372nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
190382nd Level	"a"	"b"	STRING	STRING	3	3	1	0
190392nd Level	"1"	"b"	STRING	STRING	3	3	1	0
190402nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
190412nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
190422nd Level	"b"	"b"	STRING	STRING	3	3	1	0
190432nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
190442nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
190452nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
190462nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	1	0
190472nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	1	0
190482nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
190492nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
190502nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
190512nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
190522nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
190532nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
190542nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
190552nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
190562nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
190572nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
190582nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
190592nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
190602nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
190612nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
190622nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	1	0
190632nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
190642nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
190652nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
190662nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
190672nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
190682nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
190692nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
190702nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
190712nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
190722nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
190732nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
190742nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
190752nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
190762nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
190772nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
190782nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
190792nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
190802nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
190812nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
190822nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
190832nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190842nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190852nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190862nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190872nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190882nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190892nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190902nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190912nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190922nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190932nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190942nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190952nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190962nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190972nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
190982nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
190992nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
191002nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191012nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191022nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191032nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191042nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191052nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191062nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191072nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191082nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191092nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191102nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191112nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191122nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191132nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191142nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
191152nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191162nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191172nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191182nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191192nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191202nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191212nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191222nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191232nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191242nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191252nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191262nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191272nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191282nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191292nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
191302nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191312nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191322nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191332nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191342nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191352nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191362nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191372nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191382nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191392nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191402nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191412nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191422nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191432nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191442nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
191452nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191462nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191472nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191482nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191492nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191502nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191512nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191522nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191532nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191542nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191552nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191562nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191572nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191582nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191592nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
191602nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191612nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191622nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191632nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191642nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191652nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191662nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191672nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191682nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191692nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191702nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191712nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191722nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191732nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191742nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
191752nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191762nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191772nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191782nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191792nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191802nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191812nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191822nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191832nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191842nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191852nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191862nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191872nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191882nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191892nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
191902nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
191912nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
191922nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
191932nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
191942nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
191952nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
191962nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
191972nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
191982nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
191992nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
192002nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
192012nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
192022nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
192032nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
192042nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
19205"Testcase for Long Blob"
19206validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
19207"Testcase for Long Text"
19208validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
192092nd Level	12	1	INTEGER	INTEGER	2	2	1	0
192102nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
192112nd Level	12	12	INTEGER	INTEGER	2	2	1	0
192122nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
192132nd Level	12	3	INTEGER	INTEGER	2	2	1	0
192142nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
192152nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
192162nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
192172nd Level	null	null	NULL	NULL	1	1	1	0
192182nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
192192nd Level	"a"	"a"	STRING	STRING	3	3	1	0
192202nd Level	"1"	"a"	STRING	STRING	3	3	1	0
192212nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
192222nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
192232nd Level	"b"	"a"	STRING	STRING	3	3	1	0
192242nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
192252nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
192262nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
192272nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	1	0
192282nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	1	0
192292nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
192302nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
192312nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
192322nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
192332nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
192342nd Level	"a"	"1"	STRING	STRING	3	3	1	0
192352nd Level	"1"	"1"	STRING	STRING	3	3	1	0
192362nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
192372nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
192382nd Level	"b"	"1"	STRING	STRING	3	3	1	0
192392nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
192402nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
192412nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
192422nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	1	0
192432nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	1	0
192442nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
192452nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
192462nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
192472nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
192482nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
192491st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
192502nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
192512nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
192522nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
192532nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
192542nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
192552nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
192562nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
192572nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
192582nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	1	0
192592nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	1	0
192602nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
192612nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
192622nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
192632nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
192642nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
192652nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
192662nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
192672nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
192682nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
192692nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
192702nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
192712nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
192722nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
192732nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
192742nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
192752nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
192762nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	1	0
192772nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	1	0
192782nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
192792nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
192802nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
192812nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
192822nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
192832nd Level	"a"	"b"	STRING	STRING	3	3	1	0
192842nd Level	"1"	"b"	STRING	STRING	3	3	1	0
192852nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
192862nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
192872nd Level	"b"	"b"	STRING	STRING	3	3	1	0
192882nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
192892nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
192902nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
192912nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	1	0
192922nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	1	0
192932nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
192942nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
192952nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
192962nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
192972nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
192982nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
192992nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
193002nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
193012nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
193022nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
193032nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
193042nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
193052nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
193062nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
193072nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	1	0
193082nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
193092nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
193102nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
193112nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
193122nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
193132nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
193142nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
193152nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
193162nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
193172nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
193182nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
193192nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
193202nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
193212nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
193222nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
193232nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
193242nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
193252nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
193262nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
193272nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
193282nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193292nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193302nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193312nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193322nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193332nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193342nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193352nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193362nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193372nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193382nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193392nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193402nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193412nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193422nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
193432nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
193442nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	1	0
193452nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193462nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193472nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193482nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193492nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193502nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193512nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193522nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193532nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193542nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193552nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193562nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193572nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193582nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193592nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	1	0
193602nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193612nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193622nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193632nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193642nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193652nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193662nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193672nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193682nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193692nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193702nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193712nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193722nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193732nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193742nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	1	0
193752nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193762nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193772nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193782nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193792nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193802nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193812nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193822nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193832nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193842nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193852nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193862nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193872nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193882nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193892nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
193902nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
193912nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
193922nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
193932nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
193942nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
193952nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
193962nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
193972nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
193982nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
193992nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
194002nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
194012nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
194022nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
194032nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
194042nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
194052nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194062nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194072nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194082nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194092nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194102nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194112nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194122nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194132nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194142nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194152nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194162nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194172nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194182nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194192nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
194202nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194212nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194222nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194232nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194242nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194252nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194262nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194272nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194282nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194292nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194302nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194312nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194322nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194332nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194342nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
194352nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
194362nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
194372nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
194382nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
194392nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
194402nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
194412nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
194422nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
194432nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
194442nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
194452nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
194462nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
194472nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
194482nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
194492nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
19450"Testcase for Enum"
19451validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
19452"Testcase for Set"
19453validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
19454"Test for SQL vs JSON"
19455"Comparator <=>"
19456""
19457"Testcase for Tinyint"
19458validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
194592nd Level	12	1	INTEGER	INTEGER	2	2	0	1
194602nd Level	3	1	INTEGER	INTEGER	2	2	0	1
194612nd Level	1	12	INTEGER	INTEGER	2	2	0	1
194622nd Level	3	12	INTEGER	INTEGER	2	2	0	1
194632nd Level	1	3	INTEGER	INTEGER	2	2	0	1
194642nd Level	12	3	INTEGER	INTEGER	2	2	0	1
194652nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
194662nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
194672nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
19468"Testcase for Boolean"
19469validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
194702nd Level	12	1	INTEGER	INTEGER	2	2	0	1
194712nd Level	3	1	INTEGER	INTEGER	2	2	0	1
194722nd Level	1	12	INTEGER	INTEGER	2	2	0	1
194732nd Level	3	12	INTEGER	INTEGER	2	2	0	1
194742nd Level	1	3	INTEGER	INTEGER	2	2	0	1
194752nd Level	12	3	INTEGER	INTEGER	2	2	0	1
194762nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
194772nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
194782nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
19479"Testcase for small Int Signed"
19480validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
194812nd Level	12	1	INTEGER	INTEGER	2	2	0	1
194822nd Level	3	1	INTEGER	INTEGER	2	2	0	1
194832nd Level	1	12	INTEGER	INTEGER	2	2	0	1
194842nd Level	3	12	INTEGER	INTEGER	2	2	0	1
194852nd Level	1	3	INTEGER	INTEGER	2	2	0	1
194862nd Level	12	3	INTEGER	INTEGER	2	2	0	1
194872nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
194882nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
194892nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
19490"Testcase for Signed Medium Int"
19491validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
194922nd Level	12	1	INTEGER	INTEGER	2	2	0	1
194932nd Level	3	1	INTEGER	INTEGER	2	2	0	1
194942nd Level	1	12	INTEGER	INTEGER	2	2	0	1
194952nd Level	3	12	INTEGER	INTEGER	2	2	0	1
194962nd Level	1	3	INTEGER	INTEGER	2	2	0	1
194972nd Level	12	3	INTEGER	INTEGER	2	2	0	1
194982nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
194992nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
195002nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
19501"Testcase for unsigned Medium Int"
19502validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
195032nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
195042nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
195052nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
195062nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
195072nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
195082nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
195092nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
195102nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
195112nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
19512"Testcase for signed Int"
19513validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
195142nd Level	12	1	INTEGER	INTEGER	2	2	0	1
195152nd Level	3	1	INTEGER	INTEGER	2	2	0	1
195162nd Level	1	12	INTEGER	INTEGER	2	2	0	1
195172nd Level	3	12	INTEGER	INTEGER	2	2	0	1
195182nd Level	1	3	INTEGER	INTEGER	2	2	0	1
195192nd Level	12	3	INTEGER	INTEGER	2	2	0	1
195202nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
195212nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
195222nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
19523"Testcase for Unsigned Int"
19524validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
195252nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
195262nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
195272nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
195282nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
195292nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
195302nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
195312nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
195322nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
195332nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
19534"Testcase for Big Int"
19535validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
195362nd Level	12	1	INTEGER	INTEGER	2	2	0	1
195372nd Level	3	1	INTEGER	INTEGER	2	2	0	1
195382nd Level	1	12	INTEGER	INTEGER	2	2	0	1
195392nd Level	3	12	INTEGER	INTEGER	2	2	0	1
195402nd Level	1	3	INTEGER	INTEGER	2	2	0	1
195412nd Level	12	3	INTEGER	INTEGER	2	2	0	1
195422nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
195432nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
195442nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
19545"Testcase for Big Int Unsigned"
19546validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
195472nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
195482nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
195492nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
195502nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
195512nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
195522nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
195532nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
195542nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
195552nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
19556"Testcase for Decimal"
19557validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
195582nd Level	12.00	1	DECIMAL	INTEGER	2	2	0	1
195592nd Level	3.14	1	DECIMAL	INTEGER	2	2	0	1
195602nd Level	1.00	12	DECIMAL	INTEGER	2	2	0	1
195612nd Level	3.14	12	DECIMAL	INTEGER	2	2	0	1
195622nd Level	1.00	3	DECIMAL	INTEGER	2	2	0	1
195632nd Level	12.00	3	DECIMAL	INTEGER	2	2	0	1
195642nd Level	3.14	3	DECIMAL	INTEGER	2	2	0	1
195652nd Level	1.00	3.14	DECIMAL	DECIMAL	2	2	0	1
195662nd Level	12.00	3.14	DECIMAL	DECIMAL	2	2	0	1
19567"Testcase for Double"
19568validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
195692nd Level	12	1	DOUBLE	INTEGER	2	2	0	1
195702nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
195712nd Level	1	12	DOUBLE	INTEGER	2	2	0	1
195722nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
195732nd Level	1	3	DOUBLE	INTEGER	2	2	0	1
195742nd Level	12	3	DOUBLE	INTEGER	2	2	0	1
195752nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
195762nd Level	1	3.14	DOUBLE	DECIMAL	2	2	0	1
195772nd Level	12	3.14	DOUBLE	DECIMAL	2	2	0	1
19578"Testcase for CHAR"
19579validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
195802nd Level	12	1	INTEGER	INTEGER	2	2	0	1
195812nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
195822nd Level	12	12	INTEGER	INTEGER	2	2	0	1
195832nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
195842nd Level	12	3	INTEGER	INTEGER	2	2	0	1
195852nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
195862nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
195872nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
195882nd Level	null	null	NULL	NULL	1	1	0	1
195892nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
195902nd Level	"a"	"a"	STRING	STRING	3	3	0	1
195912nd Level	"1"	"a"	STRING	STRING	3	3	0	1
195922nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
195932nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
195942nd Level	"b"	"a"	STRING	STRING	3	3	0	1
195952nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
195962nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
195972nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
195982nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
195992nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
196002nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
196012nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
196022nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
196032nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
196042nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
196052nd Level	"a"	"1"	STRING	STRING	3	3	0	1
196062nd Level	"1"	"1"	STRING	STRING	3	3	0	1
196072nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
196082nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
196092nd Level	"b"	"1"	STRING	STRING	3	3	0	1
196102nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
196112nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
196122nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
196132nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
196142nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
196152nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
196162nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
196172nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
196182nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
196192nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
196201st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
196212nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
196222nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
196232nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
196242nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
196252nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
196262nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
196272nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
196282nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
196292nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
196302nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
196312nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
196322nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
196332nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
196342nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
196352nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
196362nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
196372nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
196382nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
196392nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
196402nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
196412nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
196422nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
196432nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
196442nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
196452nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
196462nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
196472nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
196482nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
196492nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
196502nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
196512nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
196522nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
196532nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
196542nd Level	"a"	"b"	STRING	STRING	3	3	0	1
196552nd Level	"1"	"b"	STRING	STRING	3	3	0	1
196562nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
196572nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
196582nd Level	"b"	"b"	STRING	STRING	3	3	0	1
196592nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
196602nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
196612nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
196622nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
196632nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
196642nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
196652nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
196662nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
196672nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
196682nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
196692nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
196702nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
196712nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
196722nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
196732nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
196742nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
196752nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
196762nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
196772nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
196782nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
196792nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
196802nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
196812nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
196822nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
196832nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
196842nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
196852nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
196862nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
196872nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
196882nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
196892nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
196902nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
196912nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
196922nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
196932nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
196942nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
196952nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
196962nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
196972nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
196982nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
196992nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197002nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197012nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197022nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197032nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197042nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197052nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197062nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197072nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197082nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197092nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197102nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197112nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197122nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197132nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
197142nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
197152nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
197162nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197172nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197182nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197192nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197202nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197212nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197222nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197232nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197242nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197252nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197262nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197272nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197282nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197292nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197302nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
197312nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197322nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197332nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197342nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197352nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197362nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197372nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197382nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197392nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197402nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197412nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197422nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197432nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197442nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197452nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
197462nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197472nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197482nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197492nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197502nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197512nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197522nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197532nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197542nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197552nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197562nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197572nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197582nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197592nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197602nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
197612nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197622nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197632nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197642nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197652nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197662nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197672nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197682nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197692nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197702nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197712nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197722nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197732nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197742nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197752nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
197762nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197772nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197782nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197792nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197802nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197812nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197822nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197832nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197842nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197852nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197862nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197872nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197882nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197892nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197902nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
197912nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
197922nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
197932nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
197942nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
197952nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
197962nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
197972nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
197982nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
197992nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
198002nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
198012nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
198022nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
198032nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
198042nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
198052nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
198062nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
198072nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
198082nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
198092nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
198102nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
198112nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
198122nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
198132nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
198142nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
198152nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
198162nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
198172nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
198182nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
198192nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
198202nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
19821"Testcase for VARCHAR"
19822validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
198232nd Level	12	1	INTEGER	INTEGER	2	2	0	1
198242nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
198252nd Level	12	12	INTEGER	INTEGER	2	2	0	1
198262nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
198272nd Level	12	3	INTEGER	INTEGER	2	2	0	1
198282nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
198292nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
198302nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
198312nd Level	null	null	NULL	NULL	1	1	0	1
198322nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
198332nd Level	"a"	"a"	STRING	STRING	3	3	0	1
198342nd Level	"1"	"a"	STRING	STRING	3	3	0	1
198352nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
198362nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
198372nd Level	"b"	"a"	STRING	STRING	3	3	0	1
198382nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
198392nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
198402nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
198412nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
198422nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
198432nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
198442nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
198452nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
198462nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
198472nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
198482nd Level	"a"	"1"	STRING	STRING	3	3	0	1
198492nd Level	"1"	"1"	STRING	STRING	3	3	0	1
198502nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
198512nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
198522nd Level	"b"	"1"	STRING	STRING	3	3	0	1
198532nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
198542nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
198552nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
198562nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
198572nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
198582nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
198592nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
198602nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
198612nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
198622nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
198631st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
198642nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
198652nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
198662nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
198672nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
198682nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
198692nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
198702nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
198712nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
198722nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
198732nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
198742nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
198752nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
198762nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
198772nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
198782nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
198792nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
198802nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
198812nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
198822nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
198832nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
198842nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
198852nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
198862nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
198872nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
198882nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
198892nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
198902nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
198912nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
198922nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
198932nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
198942nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
198952nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
198962nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
198972nd Level	"a"	"b"	STRING	STRING	3	3	0	1
198982nd Level	"1"	"b"	STRING	STRING	3	3	0	1
198992nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
199002nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
199012nd Level	"b"	"b"	STRING	STRING	3	3	0	1
199022nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
199032nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
199042nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
199052nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
199062nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
199072nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
199082nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
199092nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
199102nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
199112nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
199122nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
199132nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
199142nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
199152nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
199162nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
199172nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
199182nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
199192nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
199202nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
199212nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
199222nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
199232nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
199242nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
199252nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
199262nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
199272nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
199282nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
199292nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
199302nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
199312nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
199322nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
199332nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
199342nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
199352nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
199362nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
199372nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
199382nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
199392nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
199402nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
199412nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
199422nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199432nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199442nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199452nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199462nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199472nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199482nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199492nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199502nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199512nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199522nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199532nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199542nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199552nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199562nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
199572nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
199582nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
199592nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199602nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199612nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199622nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199632nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199642nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199652nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199662nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199672nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199682nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199692nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199702nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199712nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199722nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199732nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
199742nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199752nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199762nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199772nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199782nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199792nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199802nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199812nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199822nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199832nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199842nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199852nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199862nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199872nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199882nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
199892nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
199902nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
199912nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
199922nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
199932nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
199942nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
199952nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
199962nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
199972nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
199982nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
199992nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
200002nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
200012nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
200022nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
200032nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
200042nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200052nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200062nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200072nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200082nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200092nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200102nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200112nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200122nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200132nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200142nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200152nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200162nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200172nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200182nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
200192nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200202nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200212nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200222nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200232nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200242nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200252nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200262nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200272nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200282nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200292nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200302nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200312nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200322nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200332nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
200342nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200352nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200362nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200372nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200382nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200392nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200402nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200412nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200422nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200432nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200442nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200452nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200462nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200472nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200482nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
200492nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
200502nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
200512nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
200522nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
200532nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
200542nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
200552nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
200562nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
200572nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
200582nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
200592nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
200602nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
200612nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
200622nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
200632nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
20064"Testcase for Binary(255)"
20065validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
20066"Testcase for Variable Binary"
20067validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
20068"Testcase for TinyBlob"
20069validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
20070"Testcase for TinyText"
20071validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
200722nd Level	12	1	INTEGER	INTEGER	2	2	0	1
200732nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
200742nd Level	12	12	INTEGER	INTEGER	2	2	0	1
200752nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
200762nd Level	12	3	INTEGER	INTEGER	2	2	0	1
200772nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
200782nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
200792nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
200802nd Level	null	null	NULL	NULL	1	1	0	1
200812nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
200822nd Level	"a"	"a"	STRING	STRING	3	3	0	1
200832nd Level	"1"	"a"	STRING	STRING	3	3	0	1
200842nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
200852nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
200862nd Level	"b"	"a"	STRING	STRING	3	3	0	1
200872nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
200882nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
200892nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
200902nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
200912nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
200922nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
200932nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
200942nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
200952nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
200962nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
200972nd Level	"a"	"1"	STRING	STRING	3	3	0	1
200982nd Level	"1"	"1"	STRING	STRING	3	3	0	1
200992nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
201002nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
201012nd Level	"b"	"1"	STRING	STRING	3	3	0	1
201022nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
201032nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
201042nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
201052nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
201062nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
201072nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
201082nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
201092nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
201102nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
201112nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
201121st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
201132nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
201142nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
201152nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
201162nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
201172nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
201182nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
201192nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
201202nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
201212nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
201222nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
201232nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
201242nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
201252nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
201262nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
201272nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
201282nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
201292nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
201302nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
201312nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
201322nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
201332nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
201342nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
201352nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
201362nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
201372nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
201382nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
201392nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
201402nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
201412nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
201422nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
201432nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
201442nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
201452nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
201462nd Level	"a"	"b"	STRING	STRING	3	3	0	1
201472nd Level	"1"	"b"	STRING	STRING	3	3	0	1
201482nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
201492nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
201502nd Level	"b"	"b"	STRING	STRING	3	3	0	1
201512nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
201522nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
201532nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
201542nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
201552nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
201562nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
201572nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
201582nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
201592nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
201602nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
201612nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
201622nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
201632nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
201642nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
201652nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
201662nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
201672nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
201682nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
201692nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
201702nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
201712nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
201722nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
201732nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
201742nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
201752nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
201762nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
201772nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
201782nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
201792nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
201802nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
201812nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
201822nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
201832nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
201842nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
201852nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
201862nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
201872nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
201882nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
201892nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
201902nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
201912nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
201922nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
201932nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
201942nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
201952nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
201962nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
201972nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
201982nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
201992nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
202002nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
202012nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
202022nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
202032nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
202042nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
202052nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
202062nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
202072nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
202082nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202092nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202102nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202112nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202122nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202132nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202142nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202152nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202162nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202172nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202182nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202192nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202202nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202212nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202222nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
202232nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202242nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202252nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202262nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202272nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202282nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202292nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202302nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202312nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202322nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202332nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202342nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202352nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202362nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202372nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
202382nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202392nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202402nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202412nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202422nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202432nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202442nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202452nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202462nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202472nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202482nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202492nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202502nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202512nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202522nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
202532nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202542nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202552nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202562nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202572nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202582nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202592nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202602nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202612nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202622nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202632nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202642nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202652nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202662nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202672nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
202682nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202692nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202702nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202712nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202722nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202732nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202742nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202752nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202762nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202772nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202782nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202792nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202802nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202812nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202822nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
202832nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202842nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202852nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202862nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202872nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202882nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202892nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202902nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202912nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202922nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202932nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202942nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202952nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202962nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202972nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
202982nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
202992nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
203002nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
203012nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
203022nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
203032nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
203042nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
203052nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
203062nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
203072nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
203082nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
203092nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
203102nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
203112nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
203122nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
20313"Testcase for Blob"
20314validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
20315"Testcase for Text"
20316validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
203172nd Level	12	1	INTEGER	INTEGER	2	2	0	1
203182nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
203192nd Level	12	12	INTEGER	INTEGER	2	2	0	1
203202nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
203212nd Level	12	3	INTEGER	INTEGER	2	2	0	1
203222nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
203232nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
203242nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
203252nd Level	null	null	NULL	NULL	1	1	0	1
203262nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
203272nd Level	"a"	"a"	STRING	STRING	3	3	0	1
203282nd Level	"1"	"a"	STRING	STRING	3	3	0	1
203292nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
203302nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
203312nd Level	"b"	"a"	STRING	STRING	3	3	0	1
203322nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
203332nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
203342nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
203352nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
203362nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
203372nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
203382nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
203392nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
203402nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
203412nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
203422nd Level	"a"	"1"	STRING	STRING	3	3	0	1
203432nd Level	"1"	"1"	STRING	STRING	3	3	0	1
203442nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
203452nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
203462nd Level	"b"	"1"	STRING	STRING	3	3	0	1
203472nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
203482nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
203492nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
203502nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
203512nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
203522nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
203532nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
203542nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
203552nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
203562nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
203571st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
203582nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
203592nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
203602nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
203612nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
203622nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
203632nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
203642nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
203652nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
203662nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
203672nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
203682nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
203692nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
203702nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
203712nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
203722nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
203732nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
203742nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
203752nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
203762nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
203772nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
203782nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
203792nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
203802nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
203812nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
203822nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
203832nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
203842nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
203852nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
203862nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
203872nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
203882nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
203892nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
203902nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
203912nd Level	"a"	"b"	STRING	STRING	3	3	0	1
203922nd Level	"1"	"b"	STRING	STRING	3	3	0	1
203932nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
203942nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
203952nd Level	"b"	"b"	STRING	STRING	3	3	0	1
203962nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
203972nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
203982nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
203992nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
204002nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
204012nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
204022nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
204032nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
204042nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
204052nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
204062nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
204072nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
204082nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
204092nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
204102nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
204112nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
204122nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
204132nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
204142nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
204152nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
204162nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
204172nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
204182nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
204192nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
204202nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
204212nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
204222nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
204232nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
204242nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
204252nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
204262nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
204272nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
204282nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
204292nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
204302nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
204312nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
204322nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
204332nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
204342nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
204352nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
204362nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204372nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204382nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204392nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204402nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204412nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204422nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204432nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204442nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204452nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204462nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204472nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204482nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204492nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204502nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
204512nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
204522nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
204532nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204542nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204552nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204562nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204572nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204582nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204592nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204602nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204612nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204622nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204632nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204642nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204652nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204662nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204672nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
204682nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204692nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204702nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204712nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204722nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204732nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204742nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204752nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204762nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204772nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204782nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204792nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204802nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204812nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204822nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
204832nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204842nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204852nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204862nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204872nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204882nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204892nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204902nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204912nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204922nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204932nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204942nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204952nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204962nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204972nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
204982nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
204992nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
205002nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
205012nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
205022nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
205032nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
205042nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
205052nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
205062nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
205072nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
205082nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
205092nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
205102nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
205112nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
205122nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
205132nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205142nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205152nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205162nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205172nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205182nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205192nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205202nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205212nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205222nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205232nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205242nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205252nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205262nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205272nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
205282nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205292nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205302nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205312nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205322nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205332nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205342nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205352nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205362nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205372nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205382nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205392nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205402nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205412nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205422nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
205432nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
205442nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
205452nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
205462nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
205472nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
205482nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
205492nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
205502nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
205512nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
205522nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
205532nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
205542nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
205552nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
205562nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
205572nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
20558"Testcase for Medium Blob"
20559validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
20560"Testcase for Medium Text"
20561validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
205622nd Level	12	1	INTEGER	INTEGER	2	2	0	1
205632nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
205642nd Level	12	12	INTEGER	INTEGER	2	2	0	1
205652nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
205662nd Level	12	3	INTEGER	INTEGER	2	2	0	1
205672nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
205682nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
205692nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
205702nd Level	null	null	NULL	NULL	1	1	0	1
205712nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
205722nd Level	"a"	"a"	STRING	STRING	3	3	0	1
205732nd Level	"1"	"a"	STRING	STRING	3	3	0	1
205742nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
205752nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
205762nd Level	"b"	"a"	STRING	STRING	3	3	0	1
205772nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
205782nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
205792nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
205802nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
205812nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
205822nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
205832nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
205842nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
205852nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
205862nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
205872nd Level	"a"	"1"	STRING	STRING	3	3	0	1
205882nd Level	"1"	"1"	STRING	STRING	3	3	0	1
205892nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
205902nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
205912nd Level	"b"	"1"	STRING	STRING	3	3	0	1
205922nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
205932nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
205942nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
205952nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
205962nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
205972nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
205982nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
205992nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
206002nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
206012nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
206021st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
206032nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
206042nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
206052nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
206062nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
206072nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
206082nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
206092nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
206102nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
206112nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
206122nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
206132nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
206142nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
206152nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
206162nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
206172nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
206182nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
206192nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
206202nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
206212nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
206222nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
206232nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
206242nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
206252nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
206262nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
206272nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
206282nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
206292nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
206302nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
206312nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
206322nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
206332nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
206342nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
206352nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
206362nd Level	"a"	"b"	STRING	STRING	3	3	0	1
206372nd Level	"1"	"b"	STRING	STRING	3	3	0	1
206382nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
206392nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
206402nd Level	"b"	"b"	STRING	STRING	3	3	0	1
206412nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
206422nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
206432nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
206442nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
206452nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
206462nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
206472nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
206482nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
206492nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
206502nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
206512nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
206522nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
206532nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
206542nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
206552nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
206562nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
206572nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
206582nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
206592nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
206602nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
206612nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
206622nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
206632nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
206642nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
206652nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
206662nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
206672nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
206682nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
206692nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
206702nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
206712nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
206722nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
206732nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
206742nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
206752nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
206762nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
206772nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
206782nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
206792nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
206802nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
206812nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206822nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206832nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206842nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206852nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206862nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206872nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206882nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206892nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206902nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206912nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206922nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206932nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206942nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206952nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
206962nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
206972nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
206982nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
206992nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
207002nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
207012nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
207022nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
207032nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
207042nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
207052nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
207062nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
207072nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
207082nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
207092nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
207102nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
207112nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
207122nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
207132nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207142nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207152nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207162nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207172nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207182nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207192nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207202nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207212nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207222nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207232nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207242nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207252nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207262nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207272nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
207282nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207292nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207302nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207312nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207322nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207332nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207342nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207352nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207362nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207372nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207382nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207392nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207402nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207412nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207422nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
207432nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207442nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207452nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207462nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207472nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207482nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207492nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207502nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207512nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207522nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207532nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207542nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207552nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207562nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207572nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
207582nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207592nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207602nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207612nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207622nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207632nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207642nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207652nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207662nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207672nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207682nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207692nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207702nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207712nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207722nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
207732nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207742nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207752nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207762nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207772nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207782nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207792nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207802nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207812nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207822nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207832nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207842nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207852nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207862nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207872nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
207882nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
207892nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
207902nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
207912nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
207922nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
207932nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
207942nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
207952nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
207962nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
207972nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
207982nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
207992nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
208002nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
208012nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
208022nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
20803"Testcase for Long Blob"
20804validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
20805"Testcase for Long Text"
20806validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
208072nd Level	12	1	INTEGER	INTEGER	2	2	0	1
208082nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
208092nd Level	12	12	INTEGER	INTEGER	2	2	0	1
208102nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
208112nd Level	12	3	INTEGER	INTEGER	2	2	0	1
208122nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
208132nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
208142nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
208152nd Level	null	null	NULL	NULL	1	1	0	1
208162nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
208172nd Level	"a"	"a"	STRING	STRING	3	3	0	1
208182nd Level	"1"	"a"	STRING	STRING	3	3	0	1
208192nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
208202nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
208212nd Level	"b"	"a"	STRING	STRING	3	3	0	1
208222nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
208232nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
208242nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
208252nd Level	"base64:type16:yv4="	"a"	STRING	STRING	3	3	0	1
208262nd Level	"base64:type13:MTk5Mg=="	"a"	STRING	STRING	3	3	0	1
208272nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
208282nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
208292nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
208302nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
208312nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
208322nd Level	"a"	"1"	STRING	STRING	3	3	0	1
208332nd Level	"1"	"1"	STRING	STRING	3	3	0	1
208342nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
208352nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
208362nd Level	"b"	"1"	STRING	STRING	3	3	0	1
208372nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
208382nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
208392nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
208402nd Level	"base64:type16:yv4="	"1"	STRING	STRING	3	3	0	1
208412nd Level	"base64:type13:MTk5Mg=="	"1"	STRING	STRING	3	3	0	1
208422nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
208432nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
208442nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
208452nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
208462nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
208471st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
208482nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
208492nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
208502nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
208512nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
208522nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
208532nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
208542nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
208552nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
208562nd Level	"base64:type16:yv4="	"3.14"	STRING	STRING	3	3	0	1
208572nd Level	"base64:type13:MTk5Mg=="	"3.14"	STRING	STRING	3	3	0	1
208582nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
208592nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
208602nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
208612nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
208622nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
208632nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
208642nd Level	{"type": "Point", "coordinates": [1, 1]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
208652nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
208662nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
208672nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
208682nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
208692nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
208702nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
208712nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
208722nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
208732nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
208742nd Level	"base64:type16:yv4="	"b,c"	STRING	STRING	3	3	0	1
208752nd Level	"base64:type13:MTk5Mg=="	"b,c"	STRING	STRING	3	3	0	1
208762nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
208772nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
208782nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
208792nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
208802nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
208812nd Level	"a"	"b"	STRING	STRING	3	3	0	1
208822nd Level	"1"	"b"	STRING	STRING	3	3	0	1
208832nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
208842nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
208852nd Level	"b"	"b"	STRING	STRING	3	3	0	1
208862nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
208872nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
208882nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
208892nd Level	"base64:type16:yv4="	"b"	STRING	STRING	3	3	0	1
208902nd Level	"base64:type13:MTk5Mg=="	"b"	STRING	STRING	3	3	0	1
208912nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
208922nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
208932nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
208942nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
208952nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
208962nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
208972nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
208982nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
208992nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
209002nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
209012nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
209022nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
209032nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
209042nd Level	"base64:type16:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
209052nd Level	"base64:type13:MTk5Mg=="	"2015-01-15"	STRING	STRING	3	3	0	1
209062nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
209072nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
209082nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
209092nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
209102nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
209112nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
209122nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
209132nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
209142nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
209152nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
209162nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
209172nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
209182nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
209192nd Level	"base64:type16:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
209202nd Level	"base64:type13:MTk5Mg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
209212nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
209222nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
209232nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
209242nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
209252nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
209262nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209272nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209282nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209292nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209302nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209312nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209322nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209332nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209342nd Level	"base64:type16:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209352nd Level	"base64:type13:MTk5Mg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209362nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209372nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209382nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209392nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209402nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
209412nd Level	{"a": 3}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
209422nd Level	{"type": "Point", "coordinates": [1, 1]}	{"type": "Point", "coordinates": [1, 1]}	OBJECT	OBJECT	4	4	0	1
209432nd Level	"a"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209442nd Level	"1"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209452nd Level	"3.14"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209462nd Level	"b,c"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209472nd Level	"b"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209482nd Level	"2015-01-15"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209492nd Level	"23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209502nd Level	"2015-01-15 23:24:25.000000"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209512nd Level	"base64:type16:yv4="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209522nd Level	"base64:type13:MTk5Mg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209532nd Level	"base64:type252:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209542nd Level	"base64:type251:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209552nd Level	"base64:type250:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209562nd Level	"base64:type249:yv66vg=="	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209572nd Level	"base64:type15:Zm9v"	"base64:type16:yv4="	STRING	STRING	3	3	0	1
209582nd Level	"a"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209592nd Level	"1"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209602nd Level	"3.14"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209612nd Level	"b,c"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209622nd Level	"b"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209632nd Level	"2015-01-15"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209642nd Level	"23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209652nd Level	"2015-01-15 23:24:25.000000"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209662nd Level	"base64:type16:yv4="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209672nd Level	"base64:type13:MTk5Mg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209682nd Level	"base64:type252:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209692nd Level	"base64:type251:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209702nd Level	"base64:type250:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209712nd Level	"base64:type249:yv66vg=="	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209722nd Level	"base64:type15:Zm9v"	"base64:type13:MTk5Mg=="	STRING	STRING	3	3	0	1
209732nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209742nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209752nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209762nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209772nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209782nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209792nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209802nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209812nd Level	"base64:type16:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209822nd Level	"base64:type13:MTk5Mg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209832nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209842nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209852nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209862nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209872nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
209882nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
209892nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
209902nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
209912nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
209922nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
209932nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
209942nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
209952nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
209962nd Level	"base64:type16:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
209972nd Level	"base64:type13:MTk5Mg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
209982nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
209992nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
210002nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
210012nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
210022nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
210032nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210042nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210052nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210062nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210072nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210082nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210092nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210102nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210112nd Level	"base64:type16:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210122nd Level	"base64:type13:MTk5Mg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210132nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210142nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210152nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210162nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210172nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
210182nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210192nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210202nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210212nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210222nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210232nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210242nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210252nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210262nd Level	"base64:type16:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210272nd Level	"base64:type13:MTk5Mg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210282nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210292nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210302nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210312nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210322nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
210332nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
210342nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
210352nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
210362nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
210372nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
210382nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
210392nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
210402nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
210412nd Level	"base64:type16:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
210422nd Level	"base64:type13:MTk5Mg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
210432nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
210442nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
210452nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
210462nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
210472nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
21048"Testcase for Enum"
21049validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
21050"Testcase for Set"
21051validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
21052