1# Test of the conversion from JSON data type to MySQL types
2# ----------------------------------------------------------------------
3# Set up auxiliary table with possible JSON values. The idea here is to
4# enumerate all possible types of JSON values, including the different
5# opaque values we could possibly end up with. A difficulty here is that
6# it is hard create scenarios that will actually employ all possible
7# MYSQL_TYPE_* types inside opaque: partly because some are used as
8# native scalars, e.g. signed int -> JSON (signed) INTEGER, partly
9# because not all MYSQL_TYPE_* values can actually label a column, but
10# are seemingly only used in intermediate steps, e.g. BINARY and
11# VARBINARY which end up as column with CHAR and VARCHAR with binary
12# character set internally.
13create table t(c varchar(30) not null, j json, key(c));
14create table blobs(b blob);
15insert into blobs values(x'cafebabe');
16create table tinyblobs(b tinyblob);
17insert into tinyblobs values(x'cafebabe');
18create table mediumblobs(b mediumblob);
19insert into mediumblobs values(x'cafebabe');
20create table longblobs(b longblob);
21insert into longblobs values(x'cafebabe');
22create table year(y year);
23insert into year values('1992');
24create table varbin(b varbinary(40));
25insert into varbin values(x'cafebabe');
26create table bin(b binary(40));
27insert into varbin values(x'cafebabe');
28create table enum(e enum('a', 'b', 'c'));
29insert into enum values ('b');
30create table sett(e set('a', 'b', 'c'));
31insert into sett values ('b,c');
32create table varchar_binary(c varchar(30) character set 'binary');
33insert into varchar_binary values ('foo');
34insert into t values ('null'            ,'null');
35insert into t values ('bool'            ,'true');
36insert into t values ('uint'            ,cast(cast(12 as unsigned) as json));
37insert into t values ('int'             ,'12');
38insert into t values ('double'          ,cast(3.14E0 as json));
39insert into t values ('stringany'       ,'"a"');
40insert into t values ('stringint'       ,'"1"');
41insert into t values ('stringdecimal'   ,'"3.14"');
42insert into t values ('object'          ,'{"a": 3}');
43insert into t values ('array'           ,'[1,2]');
44insert into t values ('opaque_mysql_type_decimal'  ,cast(3.14 as json));
45insert into t(c,j) (select
46'opaque_mysql_type_set'      ,cast(e as json) from sett);
47insert into t(c,j) (select
48'opaque_mysql_type_enum'     ,cast(e as json) from enum);
49insert into t values ('opaque_mysql_type_date'     ,cast(cast('2015-01-15' as date) as json));
50insert into t values ('opaque_mysql_type_time'     ,cast(cast('23:24:25' as time) as json));
51insert into t values ('opaque_mysql_type_datetime' ,cast(cast('2015-01-15 23:24:25' as datetime) as json));
52insert into t values ('opaque_mysql_type_geom'     ,cast(st_geomfromtext('point(1 1)') as json));
53insert into t(c,j) (select
54'opaque_mysql_type_bit'       ,cast(x'cafe' as json));
55insert into t(c,j) (select
56'opaque_mysql_type_year'        ,cast(y as json) from year);
57insert into t(c,j) (select
58'opaque_mysql_type_blob'        ,cast(b as json) from blobs);
59insert into t(c,j) (select
60'opaque_mysql_type_longblob'    ,cast(b as json) from longblobs);
61insert into t(c,j) (select
62'opaque_mysql_type_mediumblob'  ,cast(b as json) from mediumblobs);
63insert into t(c,j) (select
64'opaque_mysql_type_tinyblob'    ,cast(b as json) from tinyblobs);
65insert into t(c,j) (select
66'opaque_mysql_type_varbinary'   ,NULL);
67insert into t(c,j) (select
68'opaque_mysql_type_binary'      ,NULL);
69insert into t(c,j) (select
70'opaque_mysql_type_varchar'     ,cast(c as json) from varchar_binary);
71insert into t(c,j) (select
72'opaque_mysql_type_string'      ,NULL);
73insert into t values ('opaque_mysql_type_var_string' ,NULL);
74drop table blobs;
75drop table tinyblobs;
76drop table mediumblobs;
77drop table longblobs;
78drop table year;
79drop table varbin;
80drop table bin;
81drop table enum;
82drop table sett;
83drop table varchar_binary;
84select c, json_type(j), j from t;
85c	json_type(j)	j
86null	NULL	null
87bool	BOOLEAN	true
88uint	UNSIGNED INTEGER	12
89int	INTEGER	12
90double	DOUBLE	3.14
91stringany	STRING	"a"
92stringint	STRING	"1"
93stringdecimal	STRING	"3.14"
94object	OBJECT	{"a": 3}
95array	ARRAY	[1, 2]
96opaque_mysql_type_decimal	DECIMAL	3.14
97opaque_mysql_type_set	STRING	"b,c"
98opaque_mysql_type_enum	STRING	"b"
99opaque_mysql_type_date	DATE	"2015-01-15"
100opaque_mysql_type_time	TIME	"23:24:25.000000"
101opaque_mysql_type_datetime	DATETIME	"2015-01-15 23:24:25.000000"
102opaque_mysql_type_geom	OBJECT	{"type": "Point", "coordinates": [1.0, 1.0]}
103opaque_mysql_type_bit	BLOB	"base64:type15:yv4="
104opaque_mysql_type_year	UNSIGNED INTEGER	1992
105opaque_mysql_type_blob	BLOB	"base64:type252:yv66vg=="
106opaque_mysql_type_longblob	BLOB	"base64:type251:yv66vg=="
107opaque_mysql_type_mediumblob	BLOB	"base64:type250:yv66vg=="
108opaque_mysql_type_tinyblob	BLOB	"base64:type249:yv66vg=="
109opaque_mysql_type_varbinary	NULL	NULL
110opaque_mysql_type_binary	NULL	NULL
111opaque_mysql_type_varchar	BLOB	"base64:type15:Zm9v"
112opaque_mysql_type_string	NULL	NULL
113opaque_mysql_type_var_string	NULL	NULL
114# Auxiliary table containing columns of MySQL types
115create table at(c varchar(36),
116_bit bit(64),
117_tin tinyint(8),
118_boo bool,
119_sms smallint signed,
120_smu smallint unsigned,
121_mes mediumint signed,
122_meu mediumint unsigned,
123_ins int signed,
124_inu int unsigned,
125_bis bigint signed,
126_biu bigint unsigned,
127_dec decimal (5,2),
128_flo float,
129_dou double,
130_dat date default '2000-01-01',
131_dtt datetime default '2000-01-01 00:00:00',
132_smp timestamp default '2000-01-01 00:00:00',
133_tim time default' 00:00:00',
134_yea year,
135_jsn json,
136_chr char(255),
137_vch varchar(255),
138_bin binary(255),
139_vbn varbinary(255),
140_tbl tinyblob,
141_ttx tinytext,
142_blb blob,
143_txt text,
144_mbb mediumblob,
145_mtx mediumtext,
146_lbb longblob,
147_ltx longtext,
148_enu enum('a', 'b', 'c'),
149_set set('a', 'b', 'c'),
150_geo geometry,
151_pnt point,
152_lst linestring,
153_pol polygon,
154_mpt multipoint,
155_mls multilinestring,
156_mpy multipolygon,
157_gco geometrycollection);
158Warnings:
159Warning	1681	Integer display width is deprecated and will be removed in a future release.
160# ----------------------------------------------------------------------
161#  I N S E R T   F R O M   J S O N   C O L U M N
162# ----------------------------------------------------------------------
163insert into at(c,_bit) select concat('_bit: ',c),j from t where c='null';
164insert into at(c,_bit) select concat('_bit: ',c),j from t where c='bool';
165insert into at(c,_bit) select concat('_bit: ',c),j from t where c='uint';
166insert into at(c,_bit) select concat('_bit: ',c),j from t where c='int';
167insert into at(c,_bit) select concat('_bit: ',c),j from t where c='double';
168insert into at(c,_bit) select concat('_bit: ',c),j from t where c='stringany';
169insert into at(c,_bit) select concat('_bit: ',c),j from t where c='stringint';
170insert into at(c,_bit) select concat('_bit: ',c),j from t where c='stringdecimal';
171insert into at(c,_bit) select concat('_bit: ',c),j from t where c='object';
172insert into at(c,_bit) select concat('_bit: ',c),j from t where c='array';
173insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_decimal';
174insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_set';
175insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_enum';
176insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_date';
177ERROR 22001: Data too long for column '_bit' at row 1
178insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_time';
179ERROR 22001: Data too long for column '_bit' at row 1
180insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_datetime';
181ERROR 22001: Data too long for column '_bit' at row 1
182insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_geom';
183ERROR 22001: Data too long for column '_bit' at row 1
184insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_bit';
185ERROR 22001: Data too long for column '_bit' at row 1
186insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_year';
187insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_blob';
188ERROR 22001: Data too long for column '_bit' at row 1
189insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_longblob';
190ERROR 22001: Data too long for column '_bit' at row 1
191insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_mediumblob';
192ERROR 22001: Data too long for column '_bit' at row 1
193insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_tinyblob';
194ERROR 22001: Data too long for column '_bit' at row 1
195insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_varbinary';
196insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_binary';
197insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_varchar';
198ERROR 22001: Data too long for column '_bit' at row 1
199insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_string';
200insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_var_string';
201insert into at(c,_tin) select concat('_tin: ',c),j from t where c='null';
202ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
203insert into at(c,_tin) select concat('_tin: ',c),j from t where c='bool';
204insert into at(c,_tin) select concat('_tin: ',c),j from t where c='uint';
205insert into at(c,_tin) select concat('_tin: ',c),j from t where c='int';
206insert into at(c,_tin) select concat('_tin: ',c),j from t where c='double';
207insert into at(c,_tin) select concat('_tin: ',c),j from t where c='stringany';
208ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
209insert into at(c,_tin) select concat('_tin: ',c),j from t where c='stringint';
210insert into at(c,_tin) select concat('_tin: ',c),j from t where c='stringdecimal';
211ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
212insert into at(c,_tin) select concat('_tin: ',c),j from t where c='object';
213ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
214insert into at(c,_tin) select concat('_tin: ',c),j from t where c='array';
215ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
216insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_decimal';
217insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_set';
218ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
219insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_enum';
220ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
221insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_date';
222ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
223insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_time';
224ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
225insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_datetime';
226ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
227insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_geom';
228ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
229insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_bit';
230ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
231insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_year';
232ERROR 22003: Out of range value for column '_tin' at row 1
233insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_blob';
234ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
235insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_longblob';
236ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
237insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_mediumblob';
238ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
239insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_tinyblob';
240ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
241insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_varbinary';
242insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_binary';
243insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_varchar';
244ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
245insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_string';
246insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_var_string';
247insert into at(c,_boo) select concat('_boo: ',c),j from t where c='null';
248ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
249insert into at(c,_boo) select concat('_boo: ',c),j from t where c='bool';
250insert into at(c,_boo) select concat('_boo: ',c),j from t where c='uint';
251insert into at(c,_boo) select concat('_boo: ',c),j from t where c='int';
252insert into at(c,_boo) select concat('_boo: ',c),j from t where c='double';
253insert into at(c,_boo) select concat('_boo: ',c),j from t where c='stringany';
254ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
255insert into at(c,_boo) select concat('_boo: ',c),j from t where c='stringint';
256insert into at(c,_boo) select concat('_boo: ',c),j from t where c='stringdecimal';
257ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
258insert into at(c,_boo) select concat('_boo: ',c),j from t where c='object';
259ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
260insert into at(c,_boo) select concat('_boo: ',c),j from t where c='array';
261ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
262insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_decimal';
263insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_set';
264ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
265insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_enum';
266ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
267insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_date';
268ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
269insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_time';
270ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
271insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_datetime';
272ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
273insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_geom';
274ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
275insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_bit';
276ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
277insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_year';
278ERROR 22003: Out of range value for column '_boo' at row 1
279insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_blob';
280ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
281insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_longblob';
282ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
283insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_mediumblob';
284ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
285insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_tinyblob';
286ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
287insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_varbinary';
288insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_binary';
289insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_varchar';
290ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
291insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_string';
292insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_var_string';
293insert into at(c,_sms) select concat('_sms: ',c),j from t where c='null';
294ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
295insert into at(c,_sms) select concat('_sms: ',c),j from t where c='bool';
296insert into at(c,_sms) select concat('_sms: ',c),j from t where c='uint';
297insert into at(c,_sms) select concat('_sms: ',c),j from t where c='int';
298insert into at(c,_sms) select concat('_sms: ',c),j from t where c='double';
299insert into at(c,_sms) select concat('_sms: ',c),j from t where c='stringany';
300ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
301insert into at(c,_sms) select concat('_sms: ',c),j from t where c='stringint';
302insert into at(c,_sms) select concat('_sms: ',c),j from t where c='stringdecimal';
303ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
304insert into at(c,_sms) select concat('_sms: ',c),j from t where c='object';
305ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
306insert into at(c,_sms) select concat('_sms: ',c),j from t where c='array';
307ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
308insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_decimal';
309insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_set';
310ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
311insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_enum';
312ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
313insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_date';
314ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
315insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_time';
316ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
317insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_datetime';
318ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
319insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_geom';
320ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
321insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_bit';
322ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
323insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_year';
324insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_blob';
325ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
326insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_longblob';
327ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
328insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_mediumblob';
329ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
330insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_tinyblob';
331ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
332insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_varbinary';
333insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_binary';
334insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_varchar';
335ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
336insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_string';
337insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_var_string';
338insert into at(c,_smu) select concat('_smu: ',c),j from t where c='null';
339ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
340insert into at(c,_smu) select concat('_smu: ',c),j from t where c='bool';
341insert into at(c,_smu) select concat('_smu: ',c),j from t where c='uint';
342insert into at(c,_smu) select concat('_smu: ',c),j from t where c='int';
343insert into at(c,_smu) select concat('_smu: ',c),j from t where c='double';
344insert into at(c,_smu) select concat('_smu: ',c),j from t where c='stringany';
345ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
346insert into at(c,_smu) select concat('_smu: ',c),j from t where c='stringint';
347insert into at(c,_smu) select concat('_smu: ',c),j from t where c='stringdecimal';
348ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
349insert into at(c,_smu) select concat('_smu: ',c),j from t where c='object';
350ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
351insert into at(c,_smu) select concat('_smu: ',c),j from t where c='array';
352ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
353insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_decimal';
354insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_set';
355ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
356insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_enum';
357ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
358insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_date';
359ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
360insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_time';
361ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
362insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_datetime';
363ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
364insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_geom';
365ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
366insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_bit';
367ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
368insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_year';
369insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_blob';
370ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
371insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_longblob';
372ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
373insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_mediumblob';
374ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
375insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_tinyblob';
376ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
377insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_varbinary';
378insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_binary';
379insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_varchar';
380ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
381insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_string';
382insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_var_string';
383insert into at(c,_mes) select concat('_mes: ',c),j from t where c='null';
384ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
385insert into at(c,_mes) select concat('_mes: ',c),j from t where c='bool';
386insert into at(c,_mes) select concat('_mes: ',c),j from t where c='uint';
387insert into at(c,_mes) select concat('_mes: ',c),j from t where c='int';
388insert into at(c,_mes) select concat('_mes: ',c),j from t where c='double';
389insert into at(c,_mes) select concat('_mes: ',c),j from t where c='stringany';
390ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
391insert into at(c,_mes) select concat('_mes: ',c),j from t where c='stringint';
392insert into at(c,_mes) select concat('_mes: ',c),j from t where c='stringdecimal';
393ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
394insert into at(c,_mes) select concat('_mes: ',c),j from t where c='object';
395ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
396insert into at(c,_mes) select concat('_mes: ',c),j from t where c='array';
397ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
398insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_decimal';
399insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_set';
400ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
401insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_enum';
402ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
403insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_date';
404ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
405insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_time';
406ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
407insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_datetime';
408ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
409insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_geom';
410ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
411insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_bit';
412ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
413insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_year';
414insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_blob';
415ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
416insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_longblob';
417ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
418insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_mediumblob';
419ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
420insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_tinyblob';
421ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
422insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_varbinary';
423insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_binary';
424insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_varchar';
425ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
426insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_string';
427insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_var_string';
428insert into at(c,_meu) select concat('_meu: ',c),j from t where c='null';
429ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
430insert into at(c,_meu) select concat('_meu: ',c),j from t where c='bool';
431insert into at(c,_meu) select concat('_meu: ',c),j from t where c='uint';
432insert into at(c,_meu) select concat('_meu: ',c),j from t where c='int';
433insert into at(c,_meu) select concat('_meu: ',c),j from t where c='double';
434insert into at(c,_meu) select concat('_meu: ',c),j from t where c='stringany';
435ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
436insert into at(c,_meu) select concat('_meu: ',c),j from t where c='stringint';
437insert into at(c,_meu) select concat('_meu: ',c),j from t where c='stringdecimal';
438ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
439insert into at(c,_meu) select concat('_meu: ',c),j from t where c='object';
440ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
441insert into at(c,_meu) select concat('_meu: ',c),j from t where c='array';
442ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
443insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_decimal';
444insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_set';
445ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
446insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_enum';
447ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
448insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_date';
449ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
450insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_time';
451ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
452insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_datetime';
453ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
454insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_geom';
455ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
456insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_bit';
457ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
458insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_year';
459insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_blob';
460ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
461insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_longblob';
462ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
463insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_mediumblob';
464ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
465insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_tinyblob';
466ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
467insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_varbinary';
468insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_binary';
469insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_varchar';
470ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
471insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_string';
472insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_var_string';
473insert into at(c,_ins) select concat('_ins: ',c),j from t where c='null';
474ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
475insert into at(c,_ins) select concat('_ins: ',c),j from t where c='bool';
476insert into at(c,_ins) select concat('_ins: ',c),j from t where c='uint';
477insert into at(c,_ins) select concat('_ins: ',c),j from t where c='int';
478insert into at(c,_ins) select concat('_ins: ',c),j from t where c='double';
479insert into at(c,_ins) select concat('_ins: ',c),j from t where c='stringany';
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='stringint';
482insert into at(c,_ins) select concat('_ins: ',c),j from t where c='stringdecimal';
483ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
484insert into at(c,_ins) select concat('_ins: ',c),j from t where c='object';
485ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
486insert into at(c,_ins) select concat('_ins: ',c),j from t where c='array';
487ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
488insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_decimal';
489insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_set';
490ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
491insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_enum';
492ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
493insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_date';
494ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
495insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_time';
496ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
497insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_datetime';
498ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
499insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_geom';
500ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
501insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_bit';
502ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
503insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_year';
504insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_blob';
505ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
506insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_longblob';
507ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
508insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_mediumblob';
509ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
510insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_tinyblob';
511ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
512insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_varbinary';
513insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_binary';
514insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_varchar';
515ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
516insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_string';
517insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_var_string';
518insert into at(c,_inu) select concat('_inu: ',c),j from t where c='null';
519ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
520insert into at(c,_inu) select concat('_inu: ',c),j from t where c='bool';
521insert into at(c,_inu) select concat('_inu: ',c),j from t where c='uint';
522insert into at(c,_inu) select concat('_inu: ',c),j from t where c='int';
523insert into at(c,_inu) select concat('_inu: ',c),j from t where c='double';
524insert into at(c,_inu) select concat('_inu: ',c),j from t where c='stringany';
525ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
526insert into at(c,_inu) select concat('_inu: ',c),j from t where c='stringint';
527insert into at(c,_inu) select concat('_inu: ',c),j from t where c='stringdecimal';
528ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
529insert into at(c,_inu) select concat('_inu: ',c),j from t where c='object';
530ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
531insert into at(c,_inu) select concat('_inu: ',c),j from t where c='array';
532ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
533insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_decimal';
534insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_set';
535ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
536insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_enum';
537ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
538insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_date';
539ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
540insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_time';
541ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
542insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_datetime';
543ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
544insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_geom';
545ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
546insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_bit';
547ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
548insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_year';
549insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_blob';
550ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
551insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_longblob';
552ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
553insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_mediumblob';
554ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
555insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_tinyblob';
556ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
557insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_varbinary';
558insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_binary';
559insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_varchar';
560ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
561insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_string';
562insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_var_string';
563insert into at(c,_bis) select concat('_bis: ',c),j from t where c='null';
564ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
565insert into at(c,_bis) select concat('_bis: ',c),j from t where c='bool';
566insert into at(c,_bis) select concat('_bis: ',c),j from t where c='uint';
567insert into at(c,_bis) select concat('_bis: ',c),j from t where c='int';
568insert into at(c,_bis) select concat('_bis: ',c),j from t where c='double';
569insert into at(c,_bis) select concat('_bis: ',c),j from t where c='stringany';
570ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
571insert into at(c,_bis) select concat('_bis: ',c),j from t where c='stringint';
572insert into at(c,_bis) select concat('_bis: ',c),j from t where c='stringdecimal';
573ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
574insert into at(c,_bis) select concat('_bis: ',c),j from t where c='object';
575ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
576insert into at(c,_bis) select concat('_bis: ',c),j from t where c='array';
577ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
578insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_decimal';
579insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_set';
580ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
581insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_enum';
582ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
583insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_date';
584ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
585insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_time';
586ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
587insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_datetime';
588ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
589insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_geom';
590ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
591insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_bit';
592ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
593insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_year';
594insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_blob';
595ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
596insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_longblob';
597ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
598insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_mediumblob';
599ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
600insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_tinyblob';
601ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
602insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_varbinary';
603insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_binary';
604insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_varchar';
605ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
606insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_string';
607insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_var_string';
608insert into at(c,_biu) select concat('_biu: ',c),j from t where c='null';
609ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
610insert into at(c,_biu) select concat('_biu: ',c),j from t where c='bool';
611insert into at(c,_biu) select concat('_biu: ',c),j from t where c='uint';
612insert into at(c,_biu) select concat('_biu: ',c),j from t where c='int';
613insert into at(c,_biu) select concat('_biu: ',c),j from t where c='double';
614insert into at(c,_biu) select concat('_biu: ',c),j from t where c='stringany';
615ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
616insert into at(c,_biu) select concat('_biu: ',c),j from t where c='stringint';
617insert into at(c,_biu) select concat('_biu: ',c),j from t where c='stringdecimal';
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='object';
620ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
621insert into at(c,_biu) select concat('_biu: ',c),j from t where c='array';
622ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
623insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_decimal';
624insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_set';
625ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
626insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_enum';
627ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
628insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_date';
629ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
630insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_time';
631ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
632insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_datetime';
633ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
634insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_geom';
635ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
636insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_bit';
637ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
638insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_year';
639insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_blob';
640ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
641insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_longblob';
642ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
643insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_mediumblob';
644ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
645insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_tinyblob';
646ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
647insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_varbinary';
648insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_binary';
649insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_varchar';
650ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1
651insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_string';
652insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_var_string';
653insert into at(c,_dec) select concat('_dec: ',c),j from t where c='null';
654ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
655insert into at(c,_dec) select concat('_dec: ',c),j from t where c='bool';
656insert into at(c,_dec) select concat('_dec: ',c),j from t where c='uint';
657insert into at(c,_dec) select concat('_dec: ',c),j from t where c='int';
658insert into at(c,_dec) select concat('_dec: ',c),j from t where c='double';
659insert into at(c,_dec) select concat('_dec: ',c),j from t where c='stringany';
660ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
661insert into at(c,_dec) select concat('_dec: ',c),j from t where c='stringint';
662insert into at(c,_dec) select concat('_dec: ',c),j from t where c='stringdecimal';
663insert into at(c,_dec) select concat('_dec: ',c),j from t where c='object';
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='array';
666ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
667insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_decimal';
668insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_set';
669ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
670insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_enum';
671ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
672insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_date';
673ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
674insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_time';
675ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
676insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_datetime';
677ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
678insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_geom';
679ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
680insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_bit';
681ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
682insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_year';
683ERROR 22003: Out of range value for column '_dec' at row 1
684insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_blob';
685ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
686insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_longblob';
687ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
688insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_mediumblob';
689ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
690insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_tinyblob';
691ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
692insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_varbinary';
693insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_binary';
694insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_varchar';
695ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1
696insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_string';
697insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_var_string';
698insert into at(c,_flo) select concat('_flo: ',c),j from t where c='null';
699ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
700insert into at(c,_flo) select concat('_flo: ',c),j from t where c='bool';
701insert into at(c,_flo) select concat('_flo: ',c),j from t where c='uint';
702insert into at(c,_flo) select concat('_flo: ',c),j from t where c='int';
703insert into at(c,_flo) select concat('_flo: ',c),j from t where c='double';
704insert into at(c,_flo) select concat('_flo: ',c),j from t where c='stringany';
705ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
706insert into at(c,_flo) select concat('_flo: ',c),j from t where c='stringint';
707insert into at(c,_flo) select concat('_flo: ',c),j from t where c='stringdecimal';
708insert into at(c,_flo) select concat('_flo: ',c),j from t where c='object';
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='array';
711ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
712insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_decimal';
713insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_set';
714ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
715insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_enum';
716ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
717insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_date';
718ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
719insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_time';
720ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
721insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_datetime';
722ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
723insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_geom';
724ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
725insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_bit';
726ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
727insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_year';
728insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_blob';
729ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
730insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_longblob';
731ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
732insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_mediumblob';
733ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
734insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_tinyblob';
735ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
736insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_varbinary';
737insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_binary';
738insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_varchar';
739ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
740insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_string';
741insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_var_string';
742insert into at(c,_dou) select concat('_dou: ',c),j from t where c='null';
743ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
744insert into at(c,_dou) select concat('_dou: ',c),j from t where c='bool';
745insert into at(c,_dou) select concat('_dou: ',c),j from t where c='uint';
746insert into at(c,_dou) select concat('_dou: ',c),j from t where c='int';
747insert into at(c,_dou) select concat('_dou: ',c),j from t where c='double';
748insert into at(c,_dou) select concat('_dou: ',c),j from t where c='stringany';
749ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
750insert into at(c,_dou) select concat('_dou: ',c),j from t where c='stringint';
751insert into at(c,_dou) select concat('_dou: ',c),j from t where c='stringdecimal';
752insert into at(c,_dou) select concat('_dou: ',c),j from t where c='object';
753ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
754insert into at(c,_dou) select concat('_dou: ',c),j from t where c='array';
755ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
756insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_decimal';
757insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_set';
758ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
759insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_enum';
760ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
761insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_date';
762ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
763insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_time';
764ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
765insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_datetime';
766ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
767insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_geom';
768ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
769insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_bit';
770ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
771insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_year';
772insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_blob';
773ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
774insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_longblob';
775ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
776insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_mediumblob';
777ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
778insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_tinyblob';
779ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
780insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_varbinary';
781insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_binary';
782insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_varchar';
783ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1
784insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_string';
785insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_var_string';
786insert into at(c,_dat) select concat('_dat: ',c),j from t where c='null';
787ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
788insert into at(c,_dat) select concat('_dat: ',c),j from t where c='bool';
789ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
790insert into at(c,_dat) select concat('_dat: ',c),j from t where c='uint';
791ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
792insert into at(c,_dat) select concat('_dat: ',c),j from t where c='int';
793ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
794insert into at(c,_dat) select concat('_dat: ',c),j from t where c='double';
795ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
796insert into at(c,_dat) select concat('_dat: ',c),j from t where c='stringany';
797ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
798insert into at(c,_dat) select concat('_dat: ',c),j from t where c='stringint';
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='stringdecimal';
801ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
802insert into at(c,_dat) select concat('_dat: ',c),j from t where c='object';
803ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
804insert into at(c,_dat) select concat('_dat: ',c),j from t where c='array';
805ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
806insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_decimal';
807ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
808insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_set';
809ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
810insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_enum';
811ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
812insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_date';
813insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_time';
814ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
815insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_datetime';
816Warnings:
817Note	1292	Incorrect date value: '2015-01-15 23:24:25' for column '_dat' at row 1
818insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_geom';
819ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
820insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_bit';
821ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
822insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_year';
823ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
824insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_blob';
825ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
826insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_longblob';
827ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
828insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_mediumblob';
829ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
830insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_tinyblob';
831ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
832insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_varbinary';
833insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_binary';
834insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_varchar';
835ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
836insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_string';
837insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_var_string';
838insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='null';
839ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
840insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='bool';
841ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
842insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='uint';
843ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
844insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='int';
845ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
846insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='double';
847ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
848insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='stringany';
849ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
850insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='stringint';
851ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
852insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='stringdecimal';
853ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
854insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='object';
855ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
856insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='array';
857ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
858insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_decimal';
859ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
860insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_set';
861ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
862insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_enum';
863ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
864insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_date';
865insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_time';
866ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
867insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_datetime';
868insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_geom';
869ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
870insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_bit';
871ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
872insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_year';
873ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
874insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_blob';
875ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
876insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_longblob';
877ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
878insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_mediumblob';
879ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
880insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_tinyblob';
881ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
882insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_varbinary';
883insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_binary';
884insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_varchar';
885ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
886insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_string';
887insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_var_string';
888insert into at(c,_smp) select concat('_smp: ',c),j from t where c='null';
889ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
890insert into at(c,_smp) select concat('_smp: ',c),j from t where c='bool';
891ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
892insert into at(c,_smp) select concat('_smp: ',c),j from t where c='uint';
893ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
894insert into at(c,_smp) select concat('_smp: ',c),j from t where c='int';
895ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
896insert into at(c,_smp) select concat('_smp: ',c),j from t where c='double';
897ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
898insert into at(c,_smp) select concat('_smp: ',c),j from t where c='stringany';
899ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
900insert into at(c,_smp) select concat('_smp: ',c),j from t where c='stringint';
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='stringdecimal';
903ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
904insert into at(c,_smp) select concat('_smp: ',c),j from t where c='object';
905ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
906insert into at(c,_smp) select concat('_smp: ',c),j from t where c='array';
907ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
908insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_decimal';
909ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
910insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_set';
911ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
912insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_enum';
913ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
914insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_date';
915insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_time';
916ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
917insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_datetime';
918insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_geom';
919ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
920insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_bit';
921ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
922insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_year';
923ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
924insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_blob';
925ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
926insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_longblob';
927ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
928insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_mediumblob';
929ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
930insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_tinyblob';
931ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
932insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_varbinary';
933insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_binary';
934insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_varchar';
935ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
936insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_string';
937insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_var_string';
938insert into at(c,_tim) select concat('_tim: ',c),j from t where c='null';
939ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
940insert into at(c,_tim) select concat('_tim: ',c),j from t where c='bool';
941ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
942insert into at(c,_tim) select concat('_tim: ',c),j from t where c='uint';
943ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
944insert into at(c,_tim) select concat('_tim: ',c),j from t where c='int';
945ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
946insert into at(c,_tim) select concat('_tim: ',c),j from t where c='double';
947ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
948insert into at(c,_tim) select concat('_tim: ',c),j from t where c='stringany';
949ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
950insert into at(c,_tim) select concat('_tim: ',c),j from t where c='stringint';
951ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
952insert into at(c,_tim) select concat('_tim: ',c),j from t where c='stringdecimal';
953ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
954insert into at(c,_tim) select concat('_tim: ',c),j from t where c='object';
955ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
956insert into at(c,_tim) select concat('_tim: ',c),j from t where c='array';
957ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
958insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_decimal';
959ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
960insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_set';
961ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
962insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_enum';
963ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
964insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_date';
965ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
966insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_time';
967insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_datetime';
968ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
969insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_geom';
970ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
971insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_bit';
972ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
973insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_year';
974ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
975insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_blob';
976ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
977insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_longblob';
978ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
979insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_mediumblob';
980ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
981insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_tinyblob';
982ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
983insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_varbinary';
984insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_binary';
985insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_varchar';
986ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
987insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_string';
988insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_var_string';
989insert into at(c,_yea) select concat('_yea: ',c),j from t where c='null';
990ERROR HY000: Incorrect integer value: 'null' for column '_yea' at row 1
991insert into at(c,_yea) select concat('_yea: ',c),j from t where c='bool';
992ERROR HY000: Incorrect integer value: 'true' for column '_yea' at row 1
993insert into at(c,_yea) select concat('_yea: ',c),j from t where c='uint';
994insert into at(c,_yea) select concat('_yea: ',c),j from t where c='int';
995insert into at(c,_yea) select concat('_yea: ',c),j from t where c='double';
996insert into at(c,_yea) select concat('_yea: ',c),j from t where c='stringany';
997ERROR HY000: Incorrect integer value: '"a"' for column '_yea' at row 1
998insert into at(c,_yea) select concat('_yea: ',c),j from t where c='stringint';
999ERROR HY000: Incorrect integer value: '"1"' for column '_yea' at row 1
1000insert into at(c,_yea) select concat('_yea: ',c),j from t where c='stringdecimal';
1001ERROR HY000: Incorrect integer value: '"3.14"' for column '_yea' at row 1
1002insert into at(c,_yea) select concat('_yea: ',c),j from t where c='object';
1003ERROR HY000: Incorrect integer value: '{"a": 3}' for column '_yea' at row 1
1004insert into at(c,_yea) select concat('_yea: ',c),j from t where c='array';
1005ERROR HY000: Incorrect integer value: '[1, 2]' for column '_yea' at row 1
1006insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_decimal';
1007insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_set';
1008ERROR HY000: Incorrect integer value: '"b,c"' for column '_yea' at row 1
1009insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_enum';
1010ERROR HY000: Incorrect integer value: '"b"' for column '_yea' at row 1
1011insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_date';
1012ERROR HY000: Incorrect integer value: '"2015-01-15"' for column '_yea' at row 1
1013insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_time';
1014ERROR HY000: Incorrect integer value: '"23:24:25.000000"' for column '_yea' at row 1
1015insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_datetime';
1016ERROR HY000: Incorrect integer value: '"2015-01-15 23:24:25.000000"' for column '_yea' at row 1
1017insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_geom';
1018ERROR HY000: Incorrect integer value: '{"type": "Point", "coordinates": [1.0, 1.0]}' for column '_yea' at row 1
1019insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_bit';
1020ERROR HY000: Incorrect integer value: '"base64:type15:yv4="' for column '_yea' at row 1
1021insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_year';
1022insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_blob';
1023ERROR HY000: Incorrect integer value: '"base64:type252:yv66vg=="' for column '_yea' at row 1
1024insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_longblob';
1025ERROR HY000: Incorrect integer value: '"base64:type251:yv66vg=="' for column '_yea' at row 1
1026insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_mediumblob';
1027ERROR HY000: Incorrect integer value: '"base64:type250:yv66vg=="' for column '_yea' at row 1
1028insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_tinyblob';
1029ERROR HY000: Incorrect integer value: '"base64:type249:yv66vg=="' for column '_yea' at row 1
1030insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_varbinary';
1031insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_binary';
1032insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_varchar';
1033ERROR HY000: Incorrect integer value: '"base64:type15:Zm9v"' for column '_yea' at row 1
1034insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_string';
1035insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_var_string';
1036insert into at(c,_jsn) select concat('_jsn: ',c),j from t;
1037insert into at(c,_chr) select concat('_chr: ',c),j from t;
1038insert into at(c,_vch) select concat('_vch: ',c),j from t;
1039insert into at(c,_bin) select concat('_bin: ',c),j from t;
1040insert into at(c,_vbn) select concat('_vbn: ',c),j from t;
1041insert into at(c,_tbl) select concat('_tbl: ',c),j from t;
1042insert into at(c,_ttx) select concat('_ttx: ',c),j from t;
1043insert into at(c,_blb) select concat('_blb: ',c),j from t;
1044insert into at(c,_txt) select concat('_txt: ',c),j from t;
1045insert into at(c,_mbb) select concat('_mbb: ',c),j from t;
1046insert into at(c,_mtx) select concat('_mtx: ',c),j from t;
1047insert into at(c,_lbb) select concat('_lbb: ',c),j from t;
1048insert into at(c,_ltx) select concat('_ltx: ',c),j from t;
1049insert into at(c,_enu) select concat('_enu: ',c),j from t where c='double';
1050ERROR 01000: Data truncated for column '_enu' at row 1
1051insert into at(c,_enu) select concat('_enu: ',c),j from t where c='stringany';
1052ERROR 01000: Data truncated for column '_enu' at row 1
1053insert into at(c,_enu) select concat('_enu: ',c),j from t where c='stringint';
1054ERROR 01000: Data truncated for column '_enu' at row 1
1055insert into at(c,_enu) select concat('_enu: ',c),j from t where c='stringdecimal';
1056ERROR 01000: Data truncated for column '_enu' at row 1
1057insert into at(c,_enu) select concat('_enu: ',c),j from t where c='object';
1058ERROR 01000: Data truncated for column '_enu' at row 1
1059insert into at(c,_enu) select concat('_enu: ',c),j from t where c='array';
1060ERROR 01000: Data truncated for column '_enu' at row 1
1061insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_decimal';
1062ERROR 01000: Data truncated for column '_enu' at row 1
1063insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_set';
1064ERROR 01000: Data truncated for column '_enu' at row 1
1065insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_enum';
1066ERROR 01000: Data truncated for column '_enu' at row 1
1067insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_date';
1068ERROR 01000: Data truncated for column '_enu' at row 1
1069insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_time';
1070ERROR 01000: Data truncated for column '_enu' at row 1
1071insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_datetime';
1072ERROR 01000: Data truncated for column '_enu' at row 1
1073insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_geom';
1074ERROR 01000: Data truncated for column '_enu' at row 1
1075insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_bit';
1076ERROR 01000: Data truncated for column '_enu' at row 1
1077insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_year';
1078ERROR 01000: Data truncated for column '_enu' at row 1
1079insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_blob';
1080ERROR 01000: Data truncated for column '_enu' at row 1
1081insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_longblob';
1082ERROR 01000: Data truncated for column '_enu' at row 1
1083insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_mediumblob';
1084ERROR 01000: Data truncated for column '_enu' at row 1
1085insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_tinyblob';
1086ERROR 01000: Data truncated for column '_enu' at row 1
1087insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_varbinary';
1088insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_binary';
1089insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_varchar';
1090ERROR 01000: Data truncated for column '_enu' at row 1
1091insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_string';
1092insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_var_string';
1093insert into at(c,_set) select concat('_set: ',c),j from t where c='null';
1094ERROR 01000: Data truncated for column '_set' at row 1
1095insert into at(c,_set) select concat('_set: ',c),j from t where c='bool';
1096ERROR 01000: Data truncated for column '_set' at row 1
1097insert into at(c,_set) select concat('_set: ',c),j from t where c='uint';
1098ERROR 01000: Data truncated for column '_set' at row 1
1099insert into at(c,_set) select concat('_set: ',c),j from t where c='int';
1100ERROR 01000: Data truncated for column '_set' at row 1
1101insert into at(c,_set) select concat('_set: ',c),j from t where c='double';
1102ERROR 01000: Data truncated for column '_set' at row 1
1103insert into at(c,_set) select concat('_set: ',c),j from t where c='stringany';
1104ERROR 01000: Data truncated for column '_set' at row 1
1105insert into at(c,_set) select concat('_set: ',c),j from t where c='stringint';
1106ERROR 01000: Data truncated for column '_set' at row 1
1107insert into at(c,_set) select concat('_set: ',c),j from t where c='stringdecimal';
1108ERROR 01000: Data truncated for column '_set' at row 1
1109insert into at(c,_set) select concat('_set: ',c),j from t where c='object';
1110ERROR 01000: Data truncated for column '_set' at row 1
1111insert into at(c,_set) select concat('_set: ',c),j from t where c='array';
1112ERROR 01000: Data truncated for column '_set' at row 1
1113insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_decimal';
1114ERROR 01000: Data truncated for column '_set' at row 1
1115insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_set';
1116ERROR 01000: Data truncated for column '_set' at row 1
1117insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_enum';
1118ERROR 01000: Data truncated for column '_set' at row 1
1119insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_date';
1120ERROR 01000: Data truncated for column '_set' at row 1
1121insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_time';
1122ERROR 01000: Data truncated for column '_set' at row 1
1123insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_datetime';
1124ERROR 01000: Data truncated for column '_set' at row 1
1125insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_geom';
1126ERROR 01000: Data truncated for column '_set' at row 1
1127insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_bit';
1128ERROR 01000: Data truncated for column '_set' at row 1
1129insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_year';
1130ERROR 01000: Data truncated for column '_set' at row 1
1131insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_blob';
1132ERROR 01000: Data truncated for column '_set' at row 1
1133insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_longblob';
1134ERROR 01000: Data truncated for column '_set' at row 1
1135insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_mediumblob';
1136ERROR 01000: Data truncated for column '_set' at row 1
1137insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_tinyblob';
1138ERROR 01000: Data truncated for column '_set' at row 1
1139insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_varbinary';
1140insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_binary';
1141insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_varchar';
1142ERROR 01000: Data truncated for column '_set' at row 1
1143insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_string';
1144insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_var_string';
1145insert into at(c,_geo) select concat('_geo: ',c),j from t where c='null';
1146ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1147insert into at(c,_geo) select concat('_geo: ',c),j from t where c='bool';
1148ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1149insert into at(c,_geo) select concat('_geo: ',c),j from t where c='uint';
1150ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1151insert into at(c,_geo) select concat('_geo: ',c),j from t where c='int';
1152ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1153insert into at(c,_geo) select concat('_geo: ',c),j from t where c='double';
1154ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1155insert into at(c,_geo) select concat('_geo: ',c),j from t where c='stringany';
1156ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1157insert into at(c,_geo) select concat('_geo: ',c),j from t where c='stringint';
1158ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1159insert into at(c,_geo) select concat('_geo: ',c),j from t where c='stringdecimal';
1160ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1161insert into at(c,_geo) select concat('_geo: ',c),j from t where c='object';
1162ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1163insert into at(c,_geo) select concat('_geo: ',c),j from t where c='array';
1164ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1165insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_decimal';
1166ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1167insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_set';
1168ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1169insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_enum';
1170ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1171insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_date';
1172ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1173insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_time';
1174ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1175insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_datetime';
1176ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1177insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_geom';
1178ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1179insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_bit';
1180ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1181insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_year';
1182ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1183insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_blob';
1184ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1185insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_longblob';
1186ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1187insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_mediumblob';
1188ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1189insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_tinyblob';
1190ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1191insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_varbinary';
1192insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_binary';
1193insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_varchar';
1194ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1195insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_string';
1196insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_var_string';
1197insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='null';
1198ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1199insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='bool';
1200ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1201insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='uint';
1202ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1203insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='int';
1204ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1205insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='double';
1206ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1207insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='stringany';
1208ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1209insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='stringint';
1210ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1211insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='stringdecimal';
1212ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1213insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='object';
1214ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1215insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='array';
1216ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1217insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_decimal';
1218ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1219insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_set';
1220ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1221insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_enum';
1222ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1223insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_date';
1224ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1225insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_time';
1226ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1227insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_datetime';
1228ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1229insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_geom';
1230ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1231insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_bit';
1232ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1233insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_year';
1234ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1235insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_blob';
1236ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1237insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_longblob';
1238ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1239insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_mediumblob';
1240ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1241insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_tinyblob';
1242ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1243insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_varbinary';
1244insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_binary';
1245insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_varchar';
1246ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1247insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_string';
1248insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_var_string';
1249insert into at(c,_lst) select concat('_lst: ',c),j from t where c='null';
1250ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1251insert into at(c,_lst) select concat('_lst: ',c),j from t where c='bool';
1252ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1253insert into at(c,_lst) select concat('_lst: ',c),j from t where c='uint';
1254ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1255insert into at(c,_lst) select concat('_lst: ',c),j from t where c='int';
1256ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1257insert into at(c,_lst) select concat('_lst: ',c),j from t where c='double';
1258ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1259insert into at(c,_lst) select concat('_lst: ',c),j from t where c='stringany';
1260ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1261insert into at(c,_lst) select concat('_lst: ',c),j from t where c='stringint';
1262ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1263insert into at(c,_lst) select concat('_lst: ',c),j from t where c='stringdecimal';
1264ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1265insert into at(c,_lst) select concat('_lst: ',c),j from t where c='object';
1266ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1267insert into at(c,_lst) select concat('_lst: ',c),j from t where c='array';
1268ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1269insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_decimal';
1270ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1271insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_set';
1272ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1273insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_enum';
1274ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1275insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_date';
1276ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1277insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_time';
1278ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1279insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_datetime';
1280ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1281insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_geom';
1282ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1283insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_bit';
1284ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1285insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_year';
1286ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1287insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_blob';
1288ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1289insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_longblob';
1290ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1291insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_mediumblob';
1292ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1293insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_tinyblob';
1294ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1295insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_varbinary';
1296insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_binary';
1297insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_varchar';
1298ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1299insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_string';
1300insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_var_string';
1301insert into at(c,_pol) select concat('_pol: ',c),j from t where c='null';
1302ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1303insert into at(c,_pol) select concat('_pol: ',c),j from t where c='bool';
1304ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1305insert into at(c,_pol) select concat('_pol: ',c),j from t where c='uint';
1306ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1307insert into at(c,_pol) select concat('_pol: ',c),j from t where c='int';
1308ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1309insert into at(c,_pol) select concat('_pol: ',c),j from t where c='double';
1310ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1311insert into at(c,_pol) select concat('_pol: ',c),j from t where c='stringany';
1312ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1313insert into at(c,_pol) select concat('_pol: ',c),j from t where c='stringint';
1314ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1315insert into at(c,_pol) select concat('_pol: ',c),j from t where c='stringdecimal';
1316ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1317insert into at(c,_pol) select concat('_pol: ',c),j from t where c='object';
1318ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1319insert into at(c,_pol) select concat('_pol: ',c),j from t where c='array';
1320ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1321insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_decimal';
1322ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1323insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_set';
1324ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1325insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_enum';
1326ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1327insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_date';
1328ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1329insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_time';
1330ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1331insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_datetime';
1332ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1333insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_geom';
1334ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1335insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_bit';
1336ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1337insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_year';
1338ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1339insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_blob';
1340ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1341insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_longblob';
1342ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1343insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_mediumblob';
1344ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1345insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_tinyblob';
1346ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1347insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_varbinary';
1348insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_binary';
1349insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_varchar';
1350ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1351insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_string';
1352insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_var_string';
1353insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='null';
1354ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1355insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='bool';
1356ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1357insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='uint';
1358ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1359insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='int';
1360ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1361insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='double';
1362ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1363insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='stringany';
1364ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1365insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='stringint';
1366ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1367insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='stringdecimal';
1368ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1369insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='object';
1370ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1371insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='array';
1372ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1373insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_decimal';
1374ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1375insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_set';
1376ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1377insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_enum';
1378ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1379insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_date';
1380ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1381insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_time';
1382ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1383insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_datetime';
1384ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1385insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_geom';
1386ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1387insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_bit';
1388ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1389insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_year';
1390ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1391insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_blob';
1392ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1393insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_longblob';
1394ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1395insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_mediumblob';
1396ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1397insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_tinyblob';
1398ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1399insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_varbinary';
1400insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_binary';
1401insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_varchar';
1402ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1403insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_string';
1404insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_var_string';
1405insert into at(c,_mls) select concat('_mls: ',c),j from t where c='null';
1406ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1407insert into at(c,_mls) select concat('_mls: ',c),j from t where c='bool';
1408ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1409insert into at(c,_mls) select concat('_mls: ',c),j from t where c='uint';
1410ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1411insert into at(c,_mls) select concat('_mls: ',c),j from t where c='int';
1412ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1413insert into at(c,_mls) select concat('_mls: ',c),j from t where c='double';
1414ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1415insert into at(c,_mls) select concat('_mls: ',c),j from t where c='stringany';
1416ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1417insert into at(c,_mls) select concat('_mls: ',c),j from t where c='stringint';
1418ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1419insert into at(c,_mls) select concat('_mls: ',c),j from t where c='stringdecimal';
1420ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1421insert into at(c,_mls) select concat('_mls: ',c),j from t where c='object';
1422ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1423insert into at(c,_mls) select concat('_mls: ',c),j from t where c='array';
1424ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1425insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_decimal';
1426ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1427insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_set';
1428ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1429insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_enum';
1430ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1431insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_date';
1432ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1433insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_time';
1434ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1435insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_datetime';
1436ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1437insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_geom';
1438ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1439insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_bit';
1440ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1441insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_year';
1442ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1443insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_blob';
1444ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1445insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_longblob';
1446ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1447insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_mediumblob';
1448ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1449insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_tinyblob';
1450ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1451insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_varbinary';
1452insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_binary';
1453insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_varchar';
1454ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1455insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_string';
1456insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_var_string';
1457insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='null';
1458ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1459insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='bool';
1460ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1461insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='uint';
1462ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1463insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='int';
1464ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1465insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='double';
1466ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1467insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='stringany';
1468ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1469insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='stringint';
1470ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1471insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='stringdecimal';
1472ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1473insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='object';
1474ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1475insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='array';
1476ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1477insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_decimal';
1478ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1479insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_set';
1480ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1481insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_enum';
1482ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1483insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_date';
1484ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1485insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_time';
1486ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1487insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_datetime';
1488ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1489insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_geom';
1490ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1491insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_bit';
1492ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1493insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_year';
1494ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1495insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_blob';
1496ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1497insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_longblob';
1498ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1499insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_mediumblob';
1500ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1501insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_tinyblob';
1502ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1503insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_varbinary';
1504insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_binary';
1505insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_varchar';
1506ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1507insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_string';
1508insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_var_string';
1509insert into at(c,_gco) select concat('_gco: ',c),j from t where c='null';
1510ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1511insert into at(c,_gco) select concat('_gco: ',c),j from t where c='bool';
1512ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1513insert into at(c,_gco) select concat('_gco: ',c),j from t where c='uint';
1514ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1515insert into at(c,_gco) select concat('_gco: ',c),j from t where c='int';
1516ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1517insert into at(c,_gco) select concat('_gco: ',c),j from t where c='double';
1518ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1519insert into at(c,_gco) select concat('_gco: ',c),j from t where c='stringany';
1520ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1521insert into at(c,_gco) select concat('_gco: ',c),j from t where c='stringint';
1522ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1523insert into at(c,_gco) select concat('_gco: ',c),j from t where c='stringdecimal';
1524ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1525insert into at(c,_gco) select concat('_gco: ',c),j from t where c='object';
1526ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1527insert into at(c,_gco) select concat('_gco: ',c),j from t where c='array';
1528ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1529insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_decimal';
1530ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1531insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_set';
1532ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1533insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_enum';
1534ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1535insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_date';
1536ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1537insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_time';
1538ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1539insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_datetime';
1540ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1541insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_geom';
1542ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1543insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_bit';
1544ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1545insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_year';
1546ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1547insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_blob';
1548ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1549insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_longblob';
1550ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1551insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_mediumblob';
1552ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1553insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_tinyblob';
1554ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1555insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_varbinary';
1556insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_binary';
1557insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_varchar';
1558ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
1559insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_string';
1560insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_var_string';
1561# ----------------------------------------------------------------------
1562#  I N S E R T   F R O M   J S O N   F U N C T I O N
1563# ----------------------------------------------------------------------
1564insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='null';
1565insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='bool';
1566insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='uint';
1567insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='int';
1568insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='double';
1569insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='stringany';
1570insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='stringint';
1571insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='stringdecimal';
1572insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='object';
1573insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='array';
1574insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
1575insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
1576insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
1577insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
1578ERROR 22001: Data too long for column '_bit' at row 1
1579insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
1580ERROR 22001: Data too long for column '_bit' at row 1
1581insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
1582ERROR 22001: Data too long for column '_bit' at row 1
1583insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
1584ERROR 22001: Data too long for column '_bit' at row 1
1585insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
1586ERROR 22001: Data too long for column '_bit' at row 1
1587insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
1588insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
1589ERROR 22001: Data too long for column '_bit' at row 1
1590insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
1591ERROR 22001: Data too long for column '_bit' at row 1
1592insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
1593ERROR 22001: Data too long for column '_bit' at row 1
1594insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
1595ERROR 22001: Data too long for column '_bit' at row 1
1596insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
1597insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
1598insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
1599ERROR 22001: Data too long for column '_bit' at row 1
1600insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
1601insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
1602insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='null';
1603ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1604insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='bool';
1605insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='uint';
1606insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='int';
1607insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='double';
1608insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='stringany';
1609ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1610insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='stringint';
1611insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='stringdecimal';
1612ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1613insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='object';
1614ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1615insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='array';
1616ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1617insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
1618insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
1619ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1620insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
1621ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1622insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
1623ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1624insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
1625ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1626insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
1627ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1628insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
1629ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1630insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
1631ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1632insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
1633ERROR 22003: Out of range value for column '_tin' at row 1
1634insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
1635ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1636insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
1637ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1638insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
1639ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1640insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
1641ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1642insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
1643insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
1644insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
1645ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1646insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
1647insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
1648insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='null';
1649ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1650insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='bool';
1651insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='uint';
1652insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='int';
1653insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='double';
1654insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='stringany';
1655ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1656insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='stringint';
1657insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='stringdecimal';
1658ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1659insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='object';
1660ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1661insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='array';
1662ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1663insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
1664insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
1665ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1666insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
1667ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1668insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
1669ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1670insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
1671ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1672insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
1673ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1674insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
1675ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1676insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
1677ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1678insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
1679ERROR 22003: Out of range value for column '_boo' at row 1
1680insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
1681ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1682insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
1683ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1684insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
1685ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1686insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
1687ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1688insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
1689insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
1690insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
1691ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1692insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
1693insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
1694insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='null';
1695ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1696insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='bool';
1697insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='uint';
1698insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='int';
1699insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='double';
1700insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='stringany';
1701ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1702insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='stringint';
1703insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='stringdecimal';
1704ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1705insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='object';
1706ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1707insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='array';
1708ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1709insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
1710insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
1711ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1712insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
1713ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1714insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
1715ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1716insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
1717ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1718insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
1719ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1720insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
1721ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1722insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
1723ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1724insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
1725insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
1726ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1727insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
1728ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1729insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
1730ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1731insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
1732ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1733insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
1734insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
1735insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
1736ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1737insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
1738insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
1739insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='null';
1740ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1741insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='bool';
1742insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='uint';
1743insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='int';
1744insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='double';
1745insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='stringany';
1746ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1747insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='stringint';
1748insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='stringdecimal';
1749ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1750insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='object';
1751ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1752insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='array';
1753ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1754insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
1755insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
1756ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1757insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
1758ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1759insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
1760ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1761insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
1762ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1763insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
1764ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1765insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
1766ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1767insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
1768ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1769insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
1770insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
1771ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1772insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
1773ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1774insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
1775ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1776insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
1777ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1778insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
1779insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
1780insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
1781ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1782insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
1783insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
1784insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='null';
1785ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1786insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='bool';
1787insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='uint';
1788insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='int';
1789insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='double';
1790insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='stringany';
1791ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1792insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='stringint';
1793insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='stringdecimal';
1794ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1795insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='object';
1796ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1797insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='array';
1798ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1799insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
1800insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
1801ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1802insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
1803ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1804insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
1805ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1806insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
1807ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1808insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
1809ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1810insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
1811ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1812insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
1813ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1814insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
1815insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
1816ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1817insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
1818ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1819insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
1820ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1821insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
1822ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1823insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
1824insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
1825insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
1826ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1827insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
1828insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
1829insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='null';
1830ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1831insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='bool';
1832insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='uint';
1833insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='int';
1834insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='double';
1835insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='stringany';
1836ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1837insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='stringint';
1838insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='stringdecimal';
1839ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1840insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='object';
1841ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1842insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='array';
1843ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1844insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
1845insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
1846ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1847insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
1848ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1849insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
1850ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1851insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
1852ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1853insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
1854ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1855insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
1856ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1857insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
1858ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1859insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
1860insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
1861ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1862insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
1863ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1864insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
1865ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1866insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
1867ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1868insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
1869insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
1870insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
1871ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1872insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
1873insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
1874insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='null';
1875ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1876insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='bool';
1877insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='uint';
1878insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='int';
1879insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='double';
1880insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='stringany';
1881ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1882insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='stringint';
1883insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='stringdecimal';
1884ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1885insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='object';
1886ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1887insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='array';
1888ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1889insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
1890insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
1891ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1892insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
1893ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1894insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
1895ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1896insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
1897ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1898insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
1899ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1900insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
1901ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1902insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
1903ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1904insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
1905insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
1906ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1907insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
1908ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1909insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
1910ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1911insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
1912ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1913insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
1914insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
1915insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
1916ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1917insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
1918insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
1919insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='null';
1920ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1921insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='bool';
1922insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='uint';
1923insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='int';
1924insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='double';
1925insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='stringany';
1926ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1927insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='stringint';
1928insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='stringdecimal';
1929ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1930insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='object';
1931ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1932insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='array';
1933ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1934insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
1935insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
1936ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1937insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
1938ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1939insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
1940ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1941insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
1942ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1943insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
1944ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1945insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
1946ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1947insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
1948ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1949insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
1950insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
1951ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1952insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
1953ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1954insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
1955ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1956insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
1957ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1958insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
1959insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
1960insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
1961ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1962insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
1963insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
1964insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='null';
1965ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1966insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='bool';
1967insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='uint';
1968insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='int';
1969insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='double';
1970insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='stringany';
1971ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1972insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='stringint';
1973insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='stringdecimal';
1974ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1975insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='object';
1976ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1977insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='array';
1978ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1979insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
1980insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
1981ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1982insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
1983ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1984insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
1985ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1986insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
1987ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1988insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
1989ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1990insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
1991ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1992insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
1993ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1994insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
1995insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
1996ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1997insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
1998ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
1999insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2000ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2001insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2002ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2003insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2004insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2005insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2006ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2007insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2008insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2009insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='null';
2010ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2011insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='bool';
2012insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='uint';
2013insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='int';
2014insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='double';
2015insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='stringany';
2016ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2017insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='stringint';
2018insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='stringdecimal';
2019ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2020insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='object';
2021ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2022insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='array';
2023ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2024insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2025insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2026ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2027insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2028ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2029insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2030ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2031insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2032ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2033insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2034ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2035insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2036ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2037insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2038ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2039insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2040insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2041ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2042insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2043ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2044insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2045ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2046insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2047ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2048insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2049insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2050insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2051ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1
2052insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2053insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2054insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='null';
2055ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2056insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='bool';
2057insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='uint';
2058insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='int';
2059insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='double';
2060insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='stringany';
2061ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2062insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='stringint';
2063insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='stringdecimal';
2064insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='object';
2065ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2066insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='array';
2067ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2068insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2069insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2070ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2071insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2072ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2073insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2074ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2075insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2076ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2077insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2078ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2079insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2080ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2081insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2082ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2083insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2084ERROR 22003: Out of range value for column '_dec' at row 1
2085insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2086ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2087insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2088ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2089insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2090ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2091insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2092ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2093insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2094insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2095insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2096ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
2097insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2098insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2099insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='null';
2100ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2101insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='bool';
2102insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='uint';
2103insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='int';
2104insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='double';
2105insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='stringany';
2106ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2107insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='stringint';
2108insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='stringdecimal';
2109insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='object';
2110ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2111insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='array';
2112ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2113insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2114insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2115ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2116insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2117ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2118insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2119ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2120insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2121ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2122insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2123ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2124insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2125ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2126insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2127ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2128insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2129insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2130ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2131insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2132ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2133insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2134ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2135insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2136ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2137insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2138insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2139insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2140ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2141insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2142insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2143insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='null';
2144ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2145insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='bool';
2146insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='uint';
2147insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='int';
2148insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='double';
2149insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='stringany';
2150ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2151insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='stringint';
2152insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='stringdecimal';
2153insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='object';
2154ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2155insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='array';
2156ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2157insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2158insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2159ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2160insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2161ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2162insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2163ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2164insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2165ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2166insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2167ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2168insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2169ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2170insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2171ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2172insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2173insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2174ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2175insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2176ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2177insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2178ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2179insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2180ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2181insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2182insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2183insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2184ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1
2185insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2186insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2187insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='null';
2188ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2189insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='bool';
2190ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2191insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='uint';
2192ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2193insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='int';
2194ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2195insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='double';
2196ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2197insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='stringany';
2198ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2199insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='stringint';
2200ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2201insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='stringdecimal';
2202ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2203insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='object';
2204ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2205insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='array';
2206ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2207insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2208ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2209insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2210ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2211insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2212ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2213insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2214insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2215ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2216insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2217Warnings:
2218Note	1292	Incorrect date value: '2015-01-15 23:24:25' for column '_dat' at row 1
2219insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2220ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2221insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2222ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2223insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2224ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2225insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2226ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2227insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2228ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2229insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2230ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2231insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2232ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2233insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2234insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2235insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2236ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2237insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2238insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2239insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='null';
2240ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2241insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='bool';
2242ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2243insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='uint';
2244ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2245insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='int';
2246ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2247insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='double';
2248ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2249insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='stringany';
2250ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2251insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='stringint';
2252ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2253insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='stringdecimal';
2254ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2255insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='object';
2256ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2257insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='array';
2258ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2259insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2260ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2261insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2262ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2263insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2264ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2265insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2266insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2267ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2268insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2269insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2270ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2271insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2272ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2273insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2274ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2275insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2276ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2277insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2278ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2279insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2280ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2281insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2282ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2283insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2284insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2285insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2286ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2287insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2288insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2289insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='null';
2290ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2291insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='bool';
2292ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2293insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='uint';
2294ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2295insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='int';
2296ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2297insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='double';
2298ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2299insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='stringany';
2300ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2301insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='stringint';
2302ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2303insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='stringdecimal';
2304ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2305insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='object';
2306ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2307insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='array';
2308ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2309insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2310ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2311insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2312ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2313insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2314ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2315insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2316insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2317ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2318insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2319insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2320ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2321insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2322ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2323insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2324ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2325insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2326ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2327insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2328ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2329insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2330ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2331insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2332ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2333insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2334insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2335insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2336ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2337insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2338insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2339insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='null';
2340ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2341insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='bool';
2342ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2343insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='uint';
2344ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2345insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='int';
2346ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2347insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='double';
2348ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2349insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='stringany';
2350ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2351insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='stringint';
2352ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2353insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='stringdecimal';
2354ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2355insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='object';
2356ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2357insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='array';
2358ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2359insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2360ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2361insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2362ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2363insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2364ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2365insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2366ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2367insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2368insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2369ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2370insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2371ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2372insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2373ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2374insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2375ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2376insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2377ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2378insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2379ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2380insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2381ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2382insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2383ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2384insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2385insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2386insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2387ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
2388insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2389insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2390insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='null';
2391ERROR HY000: Incorrect integer value: 'null' for column '_yea' at row 1
2392insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='bool';
2393ERROR HY000: Incorrect integer value: 'true' for column '_yea' at row 1
2394insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='uint';
2395insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='int';
2396insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='double';
2397insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='stringany';
2398ERROR HY000: Incorrect integer value: '"a"' for column '_yea' at row 1
2399insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='stringint';
2400ERROR HY000: Incorrect integer value: '"1"' for column '_yea' at row 1
2401insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='stringdecimal';
2402ERROR HY000: Incorrect integer value: '"3.14"' for column '_yea' at row 1
2403insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='object';
2404ERROR HY000: Incorrect integer value: '{"a": 3}' for column '_yea' at row 1
2405insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='array';
2406ERROR HY000: Incorrect integer value: '[1, 2]' for column '_yea' at row 1
2407insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2408insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2409ERROR HY000: Incorrect integer value: '"b,c"' for column '_yea' at row 1
2410insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2411ERROR HY000: Incorrect integer value: '"b"' for column '_yea' at row 1
2412insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2413ERROR HY000: Incorrect integer value: '"2015-01-15"' for column '_yea' at row 1
2414insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2415ERROR HY000: Incorrect integer value: '"23:24:25.000000"' for column '_yea' at row 1
2416insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2417ERROR HY000: Incorrect integer value: '"2015-01-15 23:24:25.000000"' for column '_yea' at row 1
2418insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2419ERROR HY000: Incorrect integer value: '{"type": "Point", "coordinates": [1.0, 1.0]}' for column '_yea' at row 1
2420insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2421ERROR HY000: Incorrect integer value: '"base64:type15:yv4="' for column '_yea' at row 1
2422insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2423insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2424ERROR HY000: Incorrect integer value: '"base64:type252:yv66vg=="' for column '_yea' at row 1
2425insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2426ERROR HY000: Incorrect integer value: '"base64:type251:yv66vg=="' for column '_yea' at row 1
2427insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2428ERROR HY000: Incorrect integer value: '"base64:type250:yv66vg=="' for column '_yea' at row 1
2429insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2430ERROR HY000: Incorrect integer value: '"base64:type249:yv66vg=="' for column '_yea' at row 1
2431insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2432insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2433insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2434ERROR HY000: Incorrect integer value: '"base64:type15:Zm9v"' for column '_yea' at row 1
2435insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2436insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2437insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t;
2438insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t;
2439insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t;
2440insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t;
2441insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t;
2442insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t;
2443insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t;
2444insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t;
2445insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t;
2446insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t;
2447insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t;
2448insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t;
2449insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t;
2450insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='double';
2451ERROR 01000: Data truncated for column '_enu' at row 1
2452insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='stringany';
2453ERROR 01000: Data truncated for column '_enu' at row 1
2454insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='stringint';
2455ERROR 01000: Data truncated for column '_enu' at row 1
2456insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='stringdecimal';
2457ERROR 01000: Data truncated for column '_enu' at row 1
2458insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='object';
2459ERROR 01000: Data truncated for column '_enu' at row 1
2460insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='array';
2461ERROR 01000: Data truncated for column '_enu' at row 1
2462insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2463ERROR 01000: Data truncated for column '_enu' at row 1
2464insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2465ERROR 01000: Data truncated for column '_enu' at row 1
2466insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2467ERROR 01000: Data truncated for column '_enu' at row 1
2468insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2469ERROR 01000: Data truncated for column '_enu' at row 1
2470insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2471ERROR 01000: Data truncated for column '_enu' at row 1
2472insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2473ERROR 01000: Data truncated for column '_enu' at row 1
2474insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2475ERROR 01000: Data truncated for column '_enu' at row 1
2476insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2477ERROR 01000: Data truncated for column '_enu' at row 1
2478insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2479ERROR 01000: Data truncated for column '_enu' at row 1
2480insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2481ERROR 01000: Data truncated for column '_enu' at row 1
2482insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2483ERROR 01000: Data truncated for column '_enu' at row 1
2484insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2485ERROR 01000: Data truncated for column '_enu' at row 1
2486insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2487ERROR 01000: Data truncated for column '_enu' at row 1
2488insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2489insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2490insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2491ERROR 01000: Data truncated for column '_enu' at row 1
2492insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2493insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2494insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='null';
2495ERROR 01000: Data truncated for column '_set' at row 1
2496insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='bool';
2497ERROR 01000: Data truncated for column '_set' at row 1
2498insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='uint';
2499ERROR 01000: Data truncated for column '_set' at row 1
2500insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='int';
2501ERROR 01000: Data truncated for column '_set' at row 1
2502insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='double';
2503ERROR 01000: Data truncated for column '_set' at row 1
2504insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='stringany';
2505ERROR 01000: Data truncated for column '_set' at row 1
2506insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='stringint';
2507ERROR 01000: Data truncated for column '_set' at row 1
2508insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='stringdecimal';
2509ERROR 01000: Data truncated for column '_set' at row 1
2510insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='object';
2511ERROR 01000: Data truncated for column '_set' at row 1
2512insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='array';
2513ERROR 01000: Data truncated for column '_set' at row 1
2514insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2515ERROR 01000: Data truncated for column '_set' at row 1
2516insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2517ERROR 01000: Data truncated for column '_set' at row 1
2518insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2519ERROR 01000: Data truncated for column '_set' at row 1
2520insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2521ERROR 01000: Data truncated for column '_set' at row 1
2522insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2523ERROR 01000: Data truncated for column '_set' at row 1
2524insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2525ERROR 01000: Data truncated for column '_set' at row 1
2526insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2527ERROR 01000: Data truncated for column '_set' at row 1
2528insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2529ERROR 01000: Data truncated for column '_set' at row 1
2530insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2531ERROR 01000: Data truncated for column '_set' at row 1
2532insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2533ERROR 01000: Data truncated for column '_set' at row 1
2534insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2535ERROR 01000: Data truncated for column '_set' at row 1
2536insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2537ERROR 01000: Data truncated for column '_set' at row 1
2538insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2539ERROR 01000: Data truncated for column '_set' at row 1
2540insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2541insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2542insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2543ERROR 01000: Data truncated for column '_set' at row 1
2544insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2545insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2546insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='null';
2547ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2548insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='bool';
2549ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2550insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='uint';
2551ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2552insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='int';
2553ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2554insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='double';
2555ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2556insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='stringany';
2557ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2558insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='stringint';
2559ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2560insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='stringdecimal';
2561ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2562insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='object';
2563ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2564insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='array';
2565ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2566insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2567ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2568insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2569ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2570insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2571ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2572insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2573ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2574insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2575ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2576insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2577ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2578insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2579ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2580insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2581ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2582insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2583ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2584insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2585ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2586insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2587ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2588insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2589ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2590insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2591ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2592insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2593insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2594insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2595ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2596insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2597insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2598insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='null';
2599ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2600insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='bool';
2601ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2602insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='uint';
2603ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2604insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='int';
2605ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2606insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='double';
2607ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2608insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='stringany';
2609ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2610insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='stringint';
2611ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2612insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='stringdecimal';
2613ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2614insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='object';
2615ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2616insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='array';
2617ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2618insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2619ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2620insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2621ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2622insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2623ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2624insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2625ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2626insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2627ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2628insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2629ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2630insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2631ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2632insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2633ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2634insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2635ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2636insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2637ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2638insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2639ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2640insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2641ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2642insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2643ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2644insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2645insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2646insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2647ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2648insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2649insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2650insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='null';
2651ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2652insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='bool';
2653ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2654insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='uint';
2655ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2656insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='int';
2657ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2658insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='double';
2659ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2660insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='stringany';
2661ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2662insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='stringint';
2663ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2664insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='stringdecimal';
2665ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2666insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='object';
2667ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2668insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='array';
2669ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2670insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2671ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2672insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2673ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2674insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2675ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2676insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2677ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2678insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2679ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2680insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2681ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2682insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2683ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2684insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2685ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2686insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2687ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2688insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2689ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2690insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2691ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2692insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2693ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2694insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2695ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2696insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2697insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2698insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2699ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2700insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2701insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2702insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='null';
2703ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2704insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='bool';
2705ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2706insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='uint';
2707ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2708insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='int';
2709ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2710insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='double';
2711ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2712insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='stringany';
2713ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2714insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='stringint';
2715ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2716insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='stringdecimal';
2717ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2718insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='object';
2719ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2720insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='array';
2721ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2722insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2723ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2724insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2725ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2726insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2727ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2728insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2729ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2730insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2731ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2732insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2733ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2734insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2735ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2736insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2737ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2738insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2739ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2740insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2741ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2742insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2743ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2744insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2745ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2746insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2747ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2748insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2749insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2750insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2751ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2752insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2753insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2754insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='null';
2755ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2756insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='bool';
2757ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2758insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='uint';
2759ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2760insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='int';
2761ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2762insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='double';
2763ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2764insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='stringany';
2765ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2766insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='stringint';
2767ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2768insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='stringdecimal';
2769ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2770insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='object';
2771ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2772insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='array';
2773ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2774insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2775ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2776insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2777ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2778insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2779ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2780insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2781ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2782insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2783ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2784insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2785ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2786insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2787ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2788insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2789ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2790insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2791ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2792insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2793ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2794insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2795ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2796insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2797ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2798insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2799ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2800insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2801insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2802insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2803ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2804insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2805insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2806insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='null';
2807ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2808insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='bool';
2809ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2810insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='uint';
2811ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2812insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='int';
2813ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2814insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='double';
2815ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2816insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='stringany';
2817ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2818insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='stringint';
2819ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2820insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='stringdecimal';
2821ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2822insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='object';
2823ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2824insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='array';
2825ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2826insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2827ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2828insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2829ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2830insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2831ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2832insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2833ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2834insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2835ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2836insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2837ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2838insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2839ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2840insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2841ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2842insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2843ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2844insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2845ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2846insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2847ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2848insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2849ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2850insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2851ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2852insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2853insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2854insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2855ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2856insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2857insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2858insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='null';
2859ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2860insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='bool';
2861ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2862insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='uint';
2863ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2864insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='int';
2865ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2866insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='double';
2867ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2868insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='stringany';
2869ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2870insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='stringint';
2871ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2872insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='stringdecimal';
2873ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2874insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='object';
2875ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2876insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='array';
2877ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2878insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2879ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2880insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2881ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2882insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2883ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2884insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2885ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2886insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2887ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2888insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2889ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2890insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2891ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2892insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2893ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2894insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2895ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2896insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2897ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2898insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2899ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2900insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2901ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2902insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2903ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2904insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2905insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2906insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2907ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2908insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2909insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2910insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='null';
2911ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2912insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='bool';
2913ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2914insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='uint';
2915ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2916insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='int';
2917ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2918insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='double';
2919ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2920insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='stringany';
2921ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2922insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='stringint';
2923ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2924insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='stringdecimal';
2925ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2926insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='object';
2927ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2928insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='array';
2929ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2930insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal';
2931ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2932insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set';
2933ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2934insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum';
2935ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2936insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date';
2937ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2938insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time';
2939ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2940insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime';
2941ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2942insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom';
2943ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2944insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit';
2945ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2946insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year';
2947ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2948insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob';
2949ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2950insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob';
2951ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2952insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob';
2953ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2954insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob';
2955ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2956insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary';
2957insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary';
2958insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar';
2959ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
2960insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string';
2961insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string';
2962insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='bool') from t where c='bool';
2963# ----------------------------------------------------------------------
2964#  I N S E R T   F R O M   J S O N   S U B S E L E C T
2965# ----------------------------------------------------------------------
2966insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='null') from t where c='null';
2967insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='bool') from t where c='bool';
2968insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='uint') from t where c='uint';
2969insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='int') from t where c='int';
2970insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='double') from t where c='double';
2971insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='stringany') from t where c='stringany';
2972insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='stringint') from t where c='stringint';
2973insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
2974insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='object') from t where c='object';
2975insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='array') from t where c='array';
2976insert 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';
2977insert 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';
2978insert 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';
2979insert 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';
2980ERROR 22001: Data too long for column '_bit' at row 2
2981insert 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';
2982ERROR 22001: Data too long for column '_bit' at row 2
2983insert 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';
2984ERROR 22001: Data too long for column '_bit' at row 2
2985insert 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';
2986ERROR 22001: Data too long for column '_bit' at row 2
2987insert 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';
2988ERROR 22001: Data too long for column '_bit' at row 2
2989insert 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';
2990insert 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';
2991ERROR 22001: Data too long for column '_bit' at row 2
2992insert 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';
2993ERROR 22001: Data too long for column '_bit' at row 2
2994insert 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';
2995ERROR 22001: Data too long for column '_bit' at row 2
2996insert 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';
2997ERROR 22001: Data too long for column '_bit' at row 2
2998insert 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';
2999insert 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';
3000insert 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';
3001ERROR 22001: Data too long for column '_bit' at row 2
3002insert 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';
3003insert 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';
3004insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='null') from t where c='null';
3005ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3006insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='bool') from t where c='bool';
3007insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='uint') from t where c='uint';
3008insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='int') from t where c='int';
3009insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='double') from t where c='double';
3010insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='stringany') from t where c='stringany';
3011ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3012insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='stringint') from t where c='stringint';
3013insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3014ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3015insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='object') from t where c='object';
3016ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3017insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='array') from t where c='array';
3018ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3019insert 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';
3020insert 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';
3021ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3022insert 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';
3023ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3024insert 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';
3025ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3026insert 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';
3027ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3028insert 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';
3029ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3030insert 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';
3031ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3032insert 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';
3033ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3034insert 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';
3035ERROR 22003: Out of range value for column '_tin' at row 2
3036insert 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';
3037ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3038insert 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';
3039ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3040insert 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';
3041ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3042insert 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';
3043ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3044insert 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';
3045insert 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';
3046insert 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';
3047ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3048insert 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';
3049insert 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';
3050insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='null') from t where c='null';
3051ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3052insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='bool') from t where c='bool';
3053insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='uint') from t where c='uint';
3054insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='int') from t where c='int';
3055insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='double') from t where c='double';
3056insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='stringany') from t where c='stringany';
3057ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3058insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='stringint') from t where c='stringint';
3059insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3060ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3061insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='object') from t where c='object';
3062ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3063insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='array') from t where c='array';
3064ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3065insert 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';
3066insert 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';
3067ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3068insert 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';
3069ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3070insert 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';
3071ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3072insert 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';
3073ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3074insert 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';
3075ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3076insert 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';
3077ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3078insert 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';
3079ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3080insert 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';
3081ERROR 22003: Out of range value for column '_boo' at row 2
3082insert 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';
3083ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3084insert 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';
3085ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3086insert 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';
3087ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3088insert 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';
3089ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3090insert 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';
3091insert 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';
3092insert 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';
3093ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3094insert 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';
3095insert 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';
3096insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='null') from t where c='null';
3097ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3098insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='bool') from t where c='bool';
3099insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='uint') from t where c='uint';
3100insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='int') from t where c='int';
3101insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='double') from t where c='double';
3102insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='stringany') from t where c='stringany';
3103ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3104insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='stringint') from t where c='stringint';
3105insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3106ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3107insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='object') from t where c='object';
3108ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3109insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='array') from t where c='array';
3110ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3111insert 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';
3112insert 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';
3113ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3114insert 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';
3115ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3116insert 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';
3117ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3118insert 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';
3119ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3120insert 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';
3121ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3122insert 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';
3123ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3124insert 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';
3125ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3126insert 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';
3127insert 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';
3128ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3129insert 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';
3130ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3131insert 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';
3132ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3133insert 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';
3134ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3135insert 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';
3136insert 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';
3137insert 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';
3138ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3139insert 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';
3140insert 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';
3141insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='null') from t where c='null';
3142ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3143insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='bool') from t where c='bool';
3144insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='uint') from t where c='uint';
3145insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='int') from t where c='int';
3146insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='double') from t where c='double';
3147insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='stringany') from t where c='stringany';
3148ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3149insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='stringint') from t where c='stringint';
3150insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3151ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3152insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='object') from t where c='object';
3153ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3154insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='array') from t where c='array';
3155ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3156insert 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';
3157insert 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';
3158ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3159insert 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';
3160ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3161insert 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';
3162ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3163insert 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';
3164ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3165insert 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';
3166ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3167insert 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';
3168ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3169insert 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';
3170ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3171insert 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';
3172insert 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';
3173ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3174insert 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';
3175ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3176insert 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';
3177ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3178insert 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';
3179ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3180insert 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';
3181insert 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';
3182insert 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';
3183ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3184insert 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';
3185insert 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';
3186insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='null') from t where c='null';
3187ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3188insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='bool') from t where c='bool';
3189insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='uint') from t where c='uint';
3190insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='int') from t where c='int';
3191insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='double') from t where c='double';
3192insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='stringany') from t where c='stringany';
3193ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3194insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='stringint') from t where c='stringint';
3195insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3196ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3197insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='object') from t where c='object';
3198ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3199insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='array') from t where c='array';
3200ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3201insert 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';
3202insert 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';
3203ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3204insert 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';
3205ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3206insert 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';
3207ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3208insert 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';
3209ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3210insert 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';
3211ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3212insert 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';
3213ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3214insert 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';
3215ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3216insert 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';
3217insert 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';
3218ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3219insert 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';
3220ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3221insert 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';
3222ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3223insert 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';
3224ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3225insert 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';
3226insert 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';
3227insert 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';
3228ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3229insert 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';
3230insert 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';
3231insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='null') from t where c='null';
3232ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3233insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='bool') from t where c='bool';
3234insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='uint') from t where c='uint';
3235insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='int') from t where c='int';
3236insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='double') from t where c='double';
3237insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='stringany') from t where c='stringany';
3238ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3239insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='stringint') from t where c='stringint';
3240insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3241ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3242insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='object') from t where c='object';
3243ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3244insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='array') from t where c='array';
3245ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3246insert 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';
3247insert 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';
3248ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3249insert 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';
3250ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3251insert 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';
3252ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3253insert 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';
3254ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3255insert 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';
3256ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3257insert 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';
3258ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3259insert 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';
3260ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3261insert 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';
3262insert 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';
3263ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3264insert 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';
3265ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3266insert 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';
3267ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3268insert 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';
3269ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3270insert 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';
3271insert 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';
3272insert 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';
3273ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3274insert 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';
3275insert 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';
3276insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='null') from t where c='null';
3277ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3278insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='bool') from t where c='bool';
3279insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='uint') from t where c='uint';
3280insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='int') from t where c='int';
3281insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='double') from t where c='double';
3282insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='stringany') from t where c='stringany';
3283ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3284insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='stringint') from t where c='stringint';
3285insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3286ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3287insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='object') from t where c='object';
3288ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3289insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='array') from t where c='array';
3290ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3291insert 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';
3292insert 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';
3293ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3294insert 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';
3295ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3296insert 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';
3297ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3298insert 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';
3299ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3300insert 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';
3301ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3302insert 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';
3303ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3304insert 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';
3305ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3306insert 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';
3307insert 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';
3308ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3309insert 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';
3310ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3311insert 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';
3312ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3313insert 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';
3314ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3315insert 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';
3316insert 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';
3317insert 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';
3318ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3319insert 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';
3320insert 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';
3321insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='null') from t where c='null';
3322ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3323insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='bool') from t where c='bool';
3324insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='uint') from t where c='uint';
3325insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='int') from t where c='int';
3326insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='double') from t where c='double';
3327insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='stringany') from t where c='stringany';
3328ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3329insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='stringint') from t where c='stringint';
3330insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3331ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3332insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='object') from t where c='object';
3333ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3334insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='array') from t where c='array';
3335ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3336insert 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';
3337insert 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';
3338ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3339insert 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';
3340ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3341insert 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';
3342ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3343insert 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';
3344ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3345insert 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';
3346ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3347insert 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';
3348ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3349insert 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';
3350ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3351insert 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';
3352insert 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';
3353ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3354insert 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';
3355ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3356insert 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';
3357ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3358insert 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';
3359ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3360insert 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';
3361insert 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';
3362insert 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';
3363ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3364insert 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';
3365insert 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';
3366insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='null') from t where c='null';
3367ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3368insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='bool') from t where c='bool';
3369insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='uint') from t where c='uint';
3370insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='int') from t where c='int';
3371insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='double') from t where c='double';
3372insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='stringany') from t where c='stringany';
3373ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3374insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='stringint') from t where c='stringint';
3375insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3376ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3377insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='object') from t where c='object';
3378ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3379insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='array') from t where c='array';
3380ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3381insert 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';
3382insert 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';
3383ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3384insert 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';
3385ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3386insert 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';
3387ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3388insert 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';
3389ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3390insert 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';
3391ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3392insert 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';
3393ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3394insert 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';
3395ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3396insert 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';
3397insert 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';
3398ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3399insert 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';
3400ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3401insert 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';
3402ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3403insert 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';
3404ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3405insert 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';
3406insert 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';
3407insert 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';
3408ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3409insert 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';
3410insert 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';
3411insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='null') from t where c='null';
3412ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3413insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='bool') from t where c='bool';
3414insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='uint') from t where c='uint';
3415insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='int') from t where c='int';
3416insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='double') from t where c='double';
3417insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='stringany') from t where c='stringany';
3418ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3419insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='stringint') from t where c='stringint';
3420insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3421ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3422insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='object') from t where c='object';
3423ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3424insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='array') from t where c='array';
3425ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3426insert 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';
3427insert 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';
3428ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3429insert 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';
3430ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3431insert 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';
3432ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3433insert 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';
3434ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3435insert 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';
3436ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3437insert 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';
3438ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3439insert 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';
3440ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3441insert 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';
3442insert 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';
3443ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3444insert 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';
3445ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3446insert 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';
3447ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3448insert 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';
3449ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3450insert 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';
3451insert 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';
3452insert 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';
3453ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 2
3454insert 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';
3455insert 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';
3456insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='null') from t where c='null';
3457ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3458insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='bool') from t where c='bool';
3459insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='uint') from t where c='uint';
3460insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='int') from t where c='int';
3461insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='double') from t where c='double';
3462insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='stringany') from t where c='stringany';
3463ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3464insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='stringint') from t where c='stringint';
3465insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3466insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='object') from t where c='object';
3467ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3468insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='array') from t where c='array';
3469ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3470insert 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';
3471insert 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';
3472ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3473insert 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';
3474ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3475insert 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';
3476ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3477insert 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';
3478ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3479insert 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';
3480ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3481insert 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';
3482ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3483insert 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';
3484ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3485insert 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';
3486ERROR 22003: Out of range value for column '_dec' at row 2
3487insert 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';
3488ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3489insert 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';
3490ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3491insert 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';
3492ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3493insert 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';
3494ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3495insert 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';
3496insert 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';
3497insert 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';
3498ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 2
3499insert 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';
3500insert 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';
3501insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='null') from t where c='null';
3502ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3503insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='bool') from t where c='bool';
3504insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='uint') from t where c='uint';
3505insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='int') from t where c='int';
3506insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='double') from t where c='double';
3507insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='stringany') from t where c='stringany';
3508ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3509insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='stringint') from t where c='stringint';
3510insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3511insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='object') from t where c='object';
3512ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3513insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='array') from t where c='array';
3514ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3515insert 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';
3516insert 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';
3517ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3518insert 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';
3519ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3520insert 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';
3521ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3522insert 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';
3523ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3524insert 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';
3525ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3526insert 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';
3527ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3528insert 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';
3529ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3530insert 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';
3531insert 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';
3532ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3533insert 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';
3534ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3535insert 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';
3536ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3537insert 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';
3538ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3539insert 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';
3540insert 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';
3541insert 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';
3542ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3543insert 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';
3544insert 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';
3545insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='null') from t where c='null';
3546ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3547insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='bool') from t where c='bool';
3548insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='uint') from t where c='uint';
3549insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='int') from t where c='int';
3550insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='double') from t where c='double';
3551insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='stringany') from t where c='stringany';
3552ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3553insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='stringint') from t where c='stringint';
3554insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3555insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='object') from t where c='object';
3556ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3557insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='array') from t where c='array';
3558ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3559insert 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';
3560insert 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';
3561ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3562insert 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';
3563ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3564insert 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';
3565ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3566insert 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';
3567ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3568insert 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';
3569ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3570insert 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';
3571ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3572insert 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';
3573ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3574insert 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';
3575insert 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';
3576ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3577insert 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';
3578ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3579insert 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';
3580ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3581insert 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';
3582ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3583insert 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';
3584insert 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';
3585insert 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';
3586ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 2
3587insert 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';
3588insert 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';
3589insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='null') from t where c='null';
3590ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3591insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='bool') from t where c='bool';
3592ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3593insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='uint') from t where c='uint';
3594ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3595insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='int') from t where c='int';
3596ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3597insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='double') from t where c='double';
3598ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3599insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='stringany') from t where c='stringany';
3600ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3601insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='stringint') from t where c='stringint';
3602ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3603insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3604ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3605insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='object') from t where c='object';
3606ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3607insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='array') from t where c='array';
3608ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3609insert 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';
3610ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3611insert 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';
3612ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3613insert 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';
3614ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3615insert 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';
3616insert 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';
3617ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3618insert 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';
3619Warnings:
3620Note	1292	Incorrect date value: '2015-01-15 23:24:25' for column '_dat' at row 2
3621insert 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';
3622ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3623insert 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';
3624ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3625insert 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';
3626ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3627insert 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';
3628ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3629insert 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';
3630ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3631insert 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';
3632ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3633insert 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';
3634ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3635insert 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';
3636insert 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';
3637insert 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';
3638ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3639insert 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';
3640insert 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';
3641insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='null') from t where c='null';
3642ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3643insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='bool') from t where c='bool';
3644ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3645insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='uint') from t where c='uint';
3646ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3647insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='int') from t where c='int';
3648ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3649insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='double') from t where c='double';
3650ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3651insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='stringany') from t where c='stringany';
3652ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3653insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='stringint') from t where c='stringint';
3654ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3655insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3656ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3657insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='object') from t where c='object';
3658ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3659insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='array') from t where c='array';
3660ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3661insert 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';
3662ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3663insert 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';
3664ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3665insert 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';
3666ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3667insert 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';
3668insert 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';
3669ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3670insert 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';
3671insert 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';
3672ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3673insert 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';
3674ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3675insert 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';
3676ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3677insert 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';
3678ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3679insert 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';
3680ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3681insert 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';
3682ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3683insert 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';
3684ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3685insert 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';
3686insert 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';
3687insert 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';
3688ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3689insert 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';
3690insert 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';
3691insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='null') from t where c='null';
3692ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3693insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='bool') from t where c='bool';
3694ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3695insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='uint') from t where c='uint';
3696ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3697insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='int') from t where c='int';
3698ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3699insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='double') from t where c='double';
3700ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3701insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='stringany') from t where c='stringany';
3702ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3703insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='stringint') from t where c='stringint';
3704ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3705insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3706ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3707insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='object') from t where c='object';
3708ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3709insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='array') from t where c='array';
3710ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3711insert 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';
3712ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3713insert 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';
3714ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3715insert 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';
3716ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3717insert 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';
3718insert 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';
3719ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3720insert 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';
3721insert 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';
3722ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3723insert 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';
3724ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3725insert 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';
3726ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3727insert 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';
3728ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3729insert 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';
3730ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3731insert 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';
3732ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3733insert 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';
3734ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3735insert 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';
3736insert 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';
3737insert 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';
3738ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3739insert 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';
3740insert 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';
3741insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='null') from t where c='null';
3742ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3743insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='bool') from t where c='bool';
3744ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3745insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='uint') from t where c='uint';
3746ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3747insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='int') from t where c='int';
3748ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3749insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='double') from t where c='double';
3750ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3751insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='stringany') from t where c='stringany';
3752ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3753insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='stringint') from t where c='stringint';
3754ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3755insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3756ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3757insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='object') from t where c='object';
3758ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3759insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='array') from t where c='array';
3760ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3761insert 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';
3762ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3763insert 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';
3764ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3765insert 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';
3766ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3767insert 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';
3768ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3769insert 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';
3770insert 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';
3771ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3772insert 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';
3773ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3774insert 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';
3775ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3776insert 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';
3777ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3778insert 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';
3779ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3780insert 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';
3781ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3782insert 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';
3783ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3784insert 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';
3785ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3786insert 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';
3787insert 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';
3788insert 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';
3789ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
3790insert 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';
3791insert 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';
3792insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='null') from t where c='null';
3793ERROR HY000: Incorrect integer value: 'null' for column '_yea' at row 2
3794insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='bool') from t where c='bool';
3795ERROR HY000: Incorrect integer value: 'true' for column '_yea' at row 2
3796insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='uint') from t where c='uint';
3797insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='int') from t where c='int';
3798insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='double') from t where c='double';
3799insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='stringany') from t where c='stringany';
3800ERROR HY000: Incorrect integer value: '"a"' for column '_yea' at row 2
3801insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='stringint') from t where c='stringint';
3802ERROR HY000: Incorrect integer value: '"1"' for column '_yea' at row 2
3803insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3804ERROR HY000: Incorrect integer value: '"3.14"' for column '_yea' at row 2
3805insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='object') from t where c='object';
3806ERROR HY000: Incorrect integer value: '{"a": 3}' for column '_yea' at row 2
3807insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='array') from t where c='array';
3808ERROR HY000: Incorrect integer value: '[1, 2]' for column '_yea' at row 2
3809insert 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';
3810insert 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';
3811ERROR HY000: Incorrect integer value: '"b,c"' for column '_yea' at row 2
3812insert 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';
3813ERROR HY000: Incorrect integer value: '"b"' for column '_yea' at row 2
3814insert 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';
3815ERROR HY000: Incorrect integer value: '"2015-01-15"' for column '_yea' at row 2
3816insert 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';
3817ERROR HY000: Incorrect integer value: '"23:24:25.000000"' for column '_yea' at row 2
3818insert 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';
3819ERROR HY000: Incorrect integer value: '"2015-01-15 23:24:25.000000"' for column '_yea' at row 2
3820insert 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';
3821ERROR HY000: Incorrect integer value: '{"type": "Point", "coordinates": [1.0, 1.0]}' for column '_yea' at row 2
3822insert 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';
3823ERROR HY000: Incorrect integer value: '"base64:type15:yv4="' for column '_yea' at row 2
3824insert 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';
3825insert 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';
3826ERROR HY000: Incorrect integer value: '"base64:type252:yv66vg=="' for column '_yea' at row 2
3827insert 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';
3828ERROR HY000: Incorrect integer value: '"base64:type251:yv66vg=="' for column '_yea' at row 2
3829insert 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';
3830ERROR HY000: Incorrect integer value: '"base64:type250:yv66vg=="' for column '_yea' at row 2
3831insert 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';
3832ERROR HY000: Incorrect integer value: '"base64:type249:yv66vg=="' for column '_yea' at row 2
3833insert 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';
3834insert 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';
3835insert 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';
3836ERROR HY000: Incorrect integer value: '"base64:type15:Zm9v"' for column '_yea' at row 2
3837insert 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';
3838insert 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';
3839insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='null') from t where c='null';
3840insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='bool') from t where c='bool';
3841insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='uint') from t where c='uint';
3842insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='int') from t where c='int';
3843insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='double') from t where c='double';
3844insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='stringany') from t where c='stringany';
3845insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='stringint') from t where c='stringint';
3846insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3847insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='object') from t where c='object';
3848insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='array') from t where c='array';
3849insert 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';
3850insert 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';
3851insert 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';
3852insert 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';
3853insert 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';
3854insert 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';
3855insert 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';
3856insert 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';
3857insert 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';
3858insert 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';
3859insert 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';
3860insert 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';
3861insert 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';
3862insert 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';
3863insert 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';
3864insert 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';
3865insert 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';
3866insert 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';
3867insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='null') from t where c='null';
3868insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='bool') from t where c='bool';
3869insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='uint') from t where c='uint';
3870insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='int') from t where c='int';
3871insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='double') from t where c='double';
3872insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='stringany') from t where c='stringany';
3873insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='stringint') from t where c='stringint';
3874insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3875insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='object') from t where c='object';
3876insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='array') from t where c='array';
3877insert 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';
3878insert 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';
3879insert 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';
3880insert 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';
3881insert 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';
3882insert 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';
3883insert 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';
3884insert 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';
3885insert 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';
3886insert 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';
3887insert 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';
3888insert 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';
3889insert 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';
3890insert 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';
3891insert 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';
3892insert 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';
3893insert 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';
3894insert 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';
3895insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='null') from t where c='null';
3896insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='bool') from t where c='bool';
3897insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='uint') from t where c='uint';
3898insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='int') from t where c='int';
3899insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='double') from t where c='double';
3900insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='stringany') from t where c='stringany';
3901insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='stringint') from t where c='stringint';
3902insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3903insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='object') from t where c='object';
3904insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='array') from t where c='array';
3905insert 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';
3906insert 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';
3907insert 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';
3908insert 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';
3909insert 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';
3910insert 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';
3911insert 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';
3912insert 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';
3913insert 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';
3914insert 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';
3915insert 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';
3916insert 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';
3917insert 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';
3918insert 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';
3919insert 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';
3920insert 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';
3921insert 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';
3922insert 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';
3923insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='null') from t where c='null';
3924insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='bool') from t where c='bool';
3925insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='uint') from t where c='uint';
3926insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='int') from t where c='int';
3927insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='double') from t where c='double';
3928insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='stringany') from t where c='stringany';
3929insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='stringint') from t where c='stringint';
3930insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3931insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='object') from t where c='object';
3932insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='array') from t where c='array';
3933insert 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';
3934insert 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';
3935insert 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';
3936insert 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';
3937insert 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';
3938insert 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';
3939insert 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';
3940insert 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';
3941insert 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';
3942insert 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';
3943insert 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';
3944insert 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';
3945insert 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';
3946insert 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';
3947insert 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';
3948insert 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';
3949insert 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';
3950insert 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';
3951insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='null') from t where c='null';
3952insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='bool') from t where c='bool';
3953insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='uint') from t where c='uint';
3954insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='int') from t where c='int';
3955insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='double') from t where c='double';
3956insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='stringany') from t where c='stringany';
3957insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='stringint') from t where c='stringint';
3958insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3959insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='object') from t where c='object';
3960insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='array') from t where c='array';
3961insert 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';
3962insert 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';
3963insert 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';
3964insert 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';
3965insert 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';
3966insert 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';
3967insert 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';
3968insert 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';
3969insert 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';
3970insert 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';
3971insert 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';
3972insert 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';
3973insert 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';
3974insert 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';
3975insert 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';
3976insert 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';
3977insert 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';
3978insert 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';
3979insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='null') from t where c='null';
3980insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='bool') from t where c='bool';
3981insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='uint') from t where c='uint';
3982insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='int') from t where c='int';
3983insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='double') from t where c='double';
3984insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='stringany') from t where c='stringany';
3985insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='stringint') from t where c='stringint';
3986insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
3987insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='object') from t where c='object';
3988insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='array') from t where c='array';
3989insert 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';
3990insert 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';
3991insert 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';
3992insert 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';
3993insert 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';
3994insert 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';
3995insert 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';
3996insert 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';
3997insert 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';
3998insert 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';
3999insert 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';
4000insert 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';
4001insert 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';
4002insert 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';
4003insert 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';
4004insert 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';
4005insert 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';
4006insert 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';
4007insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='null') from t where c='null';
4008insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='bool') from t where c='bool';
4009insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='uint') from t where c='uint';
4010insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='int') from t where c='int';
4011insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='double') from t where c='double';
4012insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='stringany') from t where c='stringany';
4013insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='stringint') from t where c='stringint';
4014insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4015insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='object') from t where c='object';
4016insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='array') from t where c='array';
4017insert 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';
4018insert 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';
4019insert 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';
4020insert 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';
4021insert 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';
4022insert 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';
4023insert 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';
4024insert 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';
4025insert 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';
4026insert 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';
4027insert 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';
4028insert 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';
4029insert 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';
4030insert 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';
4031insert 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';
4032insert 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';
4033insert 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';
4034insert 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';
4035insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='null') from t where c='null';
4036insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='bool') from t where c='bool';
4037insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='uint') from t where c='uint';
4038insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='int') from t where c='int';
4039insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='double') from t where c='double';
4040insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='stringany') from t where c='stringany';
4041insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='stringint') from t where c='stringint';
4042insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4043insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='object') from t where c='object';
4044insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='array') from t where c='array';
4045insert 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';
4046insert 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';
4047insert 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';
4048insert 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';
4049insert 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';
4050insert 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';
4051insert 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';
4052insert 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';
4053insert 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';
4054insert 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';
4055insert 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';
4056insert 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';
4057insert 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';
4058insert 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';
4059insert 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';
4060insert 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';
4061insert 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';
4062insert 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';
4063insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='null') from t where c='null';
4064insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='bool') from t where c='bool';
4065insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='uint') from t where c='uint';
4066insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='int') from t where c='int';
4067insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='double') from t where c='double';
4068insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='stringany') from t where c='stringany';
4069insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='stringint') from t where c='stringint';
4070insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4071insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='object') from t where c='object';
4072insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='array') from t where c='array';
4073insert 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';
4074insert 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';
4075insert 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';
4076insert 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';
4077insert 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';
4078insert 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';
4079insert 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';
4080insert 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';
4081insert 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';
4082insert 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';
4083insert 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';
4084insert 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';
4085insert 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';
4086insert 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';
4087insert 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';
4088insert 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';
4089insert 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';
4090insert 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';
4091insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='null') from t where c='null';
4092insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='bool') from t where c='bool';
4093insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='uint') from t where c='uint';
4094insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='int') from t where c='int';
4095insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='double') from t where c='double';
4096insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='stringany') from t where c='stringany';
4097insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='stringint') from t where c='stringint';
4098insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4099insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='object') from t where c='object';
4100insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='array') from t where c='array';
4101insert 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';
4102insert 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';
4103insert 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';
4104insert 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';
4105insert 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';
4106insert 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';
4107insert 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';
4108insert 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';
4109insert 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';
4110insert 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';
4111insert 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';
4112insert 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';
4113insert 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';
4114insert 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';
4115insert 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';
4116insert 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';
4117insert 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';
4118insert 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';
4119insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='null') from t where c='null';
4120insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='bool') from t where c='bool';
4121insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='uint') from t where c='uint';
4122insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='int') from t where c='int';
4123insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='double') from t where c='double';
4124insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='stringany') from t where c='stringany';
4125insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='stringint') from t where c='stringint';
4126insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4127insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='object') from t where c='object';
4128insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='array') from t where c='array';
4129insert 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';
4130insert 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';
4131insert 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';
4132insert 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';
4133insert 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';
4134insert 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';
4135insert 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';
4136insert 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';
4137insert 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';
4138insert 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';
4139insert 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';
4140insert 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';
4141insert 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';
4142insert 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';
4143insert 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';
4144insert 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';
4145insert 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';
4146insert 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';
4147insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='null') from t where c='null';
4148insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='bool') from t where c='bool';
4149insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='uint') from t where c='uint';
4150insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='int') from t where c='int';
4151insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='double') from t where c='double';
4152insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='stringany') from t where c='stringany';
4153insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='stringint') from t where c='stringint';
4154insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4155insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='object') from t where c='object';
4156insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='array') from t where c='array';
4157insert 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';
4158insert 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';
4159insert 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';
4160insert 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';
4161insert 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';
4162insert 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';
4163insert 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';
4164insert 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';
4165insert 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';
4166insert 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';
4167insert 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';
4168insert 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';
4169insert 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';
4170insert 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';
4171insert 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';
4172insert 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';
4173insert 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';
4174insert 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';
4175insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='null') from t where c='null';
4176insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='bool') from t where c='bool';
4177insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='uint') from t where c='uint';
4178insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='int') from t where c='int';
4179insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='double') from t where c='double';
4180insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='stringany') from t where c='stringany';
4181insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='stringint') from t where c='stringint';
4182insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4183insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='object') from t where c='object';
4184insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='array') from t where c='array';
4185insert 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';
4186insert 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';
4187insert 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';
4188insert 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';
4189insert 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';
4190insert 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';
4191insert 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';
4192insert 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';
4193insert 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';
4194insert 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';
4195insert 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';
4196insert 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';
4197insert 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';
4198insert 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';
4199insert 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';
4200insert 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';
4201insert 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';
4202insert 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';
4203insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='double') from t where c='double';
4204ERROR 01000: Data truncated for column '_enu' at row 2
4205insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='stringany') from t where c='stringany';
4206ERROR 01000: Data truncated for column '_enu' at row 2
4207insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='stringint') from t where c='stringint';
4208ERROR 01000: Data truncated for column '_enu' at row 2
4209insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4210ERROR 01000: Data truncated for column '_enu' at row 2
4211insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='object') from t where c='object';
4212ERROR 01000: Data truncated for column '_enu' at row 2
4213insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='array') from t where c='array';
4214ERROR 01000: Data truncated for column '_enu' at row 2
4215insert 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';
4216ERROR 01000: Data truncated for column '_enu' at row 2
4217insert 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';
4218ERROR 01000: Data truncated for column '_enu' at row 2
4219insert 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';
4220ERROR 01000: Data truncated for column '_enu' at row 2
4221insert 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';
4222ERROR 01000: Data truncated for column '_enu' at row 2
4223insert 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';
4224ERROR 01000: Data truncated for column '_enu' at row 2
4225insert 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';
4226ERROR 01000: Data truncated for column '_enu' at row 2
4227insert 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';
4228ERROR 01000: Data truncated for column '_enu' at row 2
4229insert 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';
4230ERROR 01000: Data truncated for column '_enu' at row 2
4231insert 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';
4232ERROR 01000: Data truncated for column '_enu' at row 2
4233insert 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';
4234ERROR 01000: Data truncated for column '_enu' at row 2
4235insert 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';
4236ERROR 01000: Data truncated for column '_enu' at row 2
4237insert 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';
4238ERROR 01000: Data truncated for column '_enu' at row 2
4239insert 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';
4240ERROR 01000: Data truncated for column '_enu' at row 2
4241insert 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';
4242insert 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';
4243insert 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';
4244ERROR 01000: Data truncated for column '_enu' at row 2
4245insert 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';
4246insert 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';
4247insert into at(c,_set) select concat('_set: ',c), (select j from t where c='null') from t where c='null';
4248ERROR 01000: Data truncated for column '_set' at row 2
4249insert into at(c,_set) select concat('_set: ',c), (select j from t where c='bool') from t where c='bool';
4250ERROR 01000: Data truncated for column '_set' at row 2
4251insert into at(c,_set) select concat('_set: ',c), (select j from t where c='uint') from t where c='uint';
4252ERROR 01000: Data truncated for column '_set' at row 2
4253insert into at(c,_set) select concat('_set: ',c), (select j from t where c='int') from t where c='int';
4254ERROR 01000: Data truncated for column '_set' at row 2
4255insert into at(c,_set) select concat('_set: ',c), (select j from t where c='double') from t where c='double';
4256ERROR 01000: Data truncated for column '_set' at row 2
4257insert into at(c,_set) select concat('_set: ',c), (select j from t where c='stringany') from t where c='stringany';
4258ERROR 01000: Data truncated for column '_set' at row 2
4259insert into at(c,_set) select concat('_set: ',c), (select j from t where c='stringint') from t where c='stringint';
4260ERROR 01000: Data truncated for column '_set' at row 2
4261insert into at(c,_set) select concat('_set: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4262ERROR 01000: Data truncated for column '_set' at row 2
4263insert into at(c,_set) select concat('_set: ',c), (select j from t where c='object') from t where c='object';
4264ERROR 01000: Data truncated for column '_set' at row 2
4265insert into at(c,_set) select concat('_set: ',c), (select j from t where c='array') from t where c='array';
4266ERROR 01000: Data truncated for column '_set' at row 2
4267insert 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';
4268ERROR 01000: Data truncated for column '_set' at row 2
4269insert 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';
4270ERROR 01000: Data truncated for column '_set' at row 2
4271insert 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';
4272ERROR 01000: Data truncated for column '_set' at row 2
4273insert 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';
4274ERROR 01000: Data truncated for column '_set' at row 2
4275insert 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';
4276ERROR 01000: Data truncated for column '_set' at row 2
4277insert 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';
4278ERROR 01000: Data truncated for column '_set' at row 2
4279insert 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';
4280ERROR 01000: Data truncated for column '_set' at row 2
4281insert 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';
4282ERROR 01000: Data truncated for column '_set' at row 2
4283insert 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';
4284ERROR 01000: Data truncated for column '_set' at row 2
4285insert 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';
4286ERROR 01000: Data truncated for column '_set' at row 2
4287insert 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';
4288ERROR 01000: Data truncated for column '_set' at row 2
4289insert 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';
4290ERROR 01000: Data truncated for column '_set' at row 2
4291insert 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';
4292ERROR 01000: Data truncated for column '_set' at row 2
4293insert 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';
4294insert 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';
4295insert 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';
4296ERROR 01000: Data truncated for column '_set' at row 2
4297insert 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';
4298insert 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';
4299insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='null') from t where c='null';
4300ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4301insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='bool') from t where c='bool';
4302ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4303insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='uint') from t where c='uint';
4304ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4305insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='int') from t where c='int';
4306ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4307insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='double') from t where c='double';
4308ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4309insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='stringany') from t where c='stringany';
4310ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4311insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='stringint') from t where c='stringint';
4312ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4313insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4314ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4315insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='object') from t where c='object';
4316ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4317insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='array') from t where c='array';
4318ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4319insert 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';
4320ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4321insert 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';
4322ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4323insert 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';
4324ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4325insert 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';
4326ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4327insert 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';
4328ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4329insert 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';
4330ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4331insert 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';
4332ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4333insert 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';
4334ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4335insert 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';
4336ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4337insert 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';
4338ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4339insert 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';
4340ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4341insert 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';
4342ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4343insert 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';
4344ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4345insert 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';
4346insert 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';
4347insert 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';
4348ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4349insert 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';
4350insert 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';
4351insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='null') from t where c='null';
4352ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4353insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='bool') from t where c='bool';
4354ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4355insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='uint') from t where c='uint';
4356ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4357insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='int') from t where c='int';
4358ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4359insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='double') from t where c='double';
4360ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4361insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='stringany') from t where c='stringany';
4362ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4363insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='stringint') from t where c='stringint';
4364ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4365insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4366ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4367insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='object') from t where c='object';
4368ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4369insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='array') from t where c='array';
4370ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4371insert 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';
4372ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4373insert 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';
4374ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4375insert 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';
4376ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4377insert 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';
4378ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4379insert 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';
4380ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4381insert 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';
4382ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4383insert 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';
4384ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4385insert 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';
4386ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4387insert 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';
4388ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4389insert 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';
4390ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4391insert 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';
4392ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4393insert 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';
4394ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4395insert 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';
4396ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4397insert 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';
4398insert 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';
4399insert 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';
4400ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4401insert 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';
4402insert 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';
4403insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='null') from t where c='null';
4404ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4405insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='bool') from t where c='bool';
4406ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4407insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='uint') from t where c='uint';
4408ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4409insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='int') from t where c='int';
4410ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4411insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='double') from t where c='double';
4412ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4413insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='stringany') from t where c='stringany';
4414ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4415insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='stringint') from t where c='stringint';
4416ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4417insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4418ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4419insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='object') from t where c='object';
4420ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4421insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='array') from t where c='array';
4422ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4423insert 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';
4424ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4425insert 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';
4426ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4427insert 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';
4428ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4429insert 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';
4430ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4431insert 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';
4432ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4433insert 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';
4434ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4435insert 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';
4436ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4437insert 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';
4438ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4439insert 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';
4440ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4441insert 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';
4442ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4443insert 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';
4444ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4445insert 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';
4446ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4447insert 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';
4448ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4449insert 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';
4450insert 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';
4451insert 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';
4452ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4453insert 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';
4454insert 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';
4455insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='null') from t where c='null';
4456ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4457insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='bool') from t where c='bool';
4458ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4459insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='uint') from t where c='uint';
4460ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4461insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='int') from t where c='int';
4462ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4463insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='double') from t where c='double';
4464ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4465insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='stringany') from t where c='stringany';
4466ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4467insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='stringint') from t where c='stringint';
4468ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4469insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4470ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4471insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='object') from t where c='object';
4472ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4473insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='array') from t where c='array';
4474ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4475insert 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';
4476ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4477insert 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';
4478ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4479insert 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';
4480ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4481insert 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';
4482ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4483insert 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';
4484ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4485insert 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';
4486ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4487insert 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';
4488ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4489insert 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';
4490ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4491insert 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';
4492ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4493insert 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';
4494ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4495insert 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';
4496ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4497insert 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';
4498ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4499insert 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';
4500ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4501insert 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';
4502insert 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';
4503insert 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';
4504ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4505insert 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';
4506insert 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';
4507insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='null') from t where c='null';
4508ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4509insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='bool') from t where c='bool';
4510ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4511insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='uint') from t where c='uint';
4512ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4513insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='int') from t where c='int';
4514ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4515insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='double') from t where c='double';
4516ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4517insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='stringany') from t where c='stringany';
4518ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4519insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='stringint') from t where c='stringint';
4520ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4521insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4522ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4523insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='object') from t where c='object';
4524ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4525insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='array') from t where c='array';
4526ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4527insert 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';
4528ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4529insert 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';
4530ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4531insert 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';
4532ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4533insert 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';
4534ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4535insert 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';
4536ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4537insert 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';
4538ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4539insert 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';
4540ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4541insert 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';
4542ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4543insert 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';
4544ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4545insert 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';
4546ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4547insert 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';
4548ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4549insert 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';
4550ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4551insert 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';
4552ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4553insert 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';
4554insert 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';
4555insert 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';
4556ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4557insert 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';
4558insert 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';
4559insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='null') from t where c='null';
4560ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4561insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='bool') from t where c='bool';
4562ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4563insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='uint') from t where c='uint';
4564ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4565insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='int') from t where c='int';
4566ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4567insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='double') from t where c='double';
4568ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4569insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='stringany') from t where c='stringany';
4570ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4571insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='stringint') from t where c='stringint';
4572ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4573insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4574ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4575insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='object') from t where c='object';
4576ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4577insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='array') from t where c='array';
4578ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4579insert 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';
4580ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4581insert 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';
4582ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4583insert 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';
4584ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4585insert 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';
4586ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4587insert 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';
4588ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4589insert 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';
4590ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4591insert 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';
4592ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4593insert 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';
4594ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4595insert 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';
4596ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4597insert 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';
4598ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4599insert 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';
4600ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4601insert 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';
4602ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4603insert 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';
4604ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4605insert 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';
4606insert 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';
4607insert 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';
4608ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4609insert 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';
4610insert 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';
4611insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='null') from t where c='null';
4612ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4613insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='bool') from t where c='bool';
4614ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4615insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='uint') from t where c='uint';
4616ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4617insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='int') from t where c='int';
4618ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4619insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='double') from t where c='double';
4620ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4621insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='stringany') from t where c='stringany';
4622ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4623insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='stringint') from t where c='stringint';
4624ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4625insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4626ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4627insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='object') from t where c='object';
4628ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4629insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='array') from t where c='array';
4630ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4631insert 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';
4632ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4633insert 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';
4634ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4635insert 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';
4636ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4637insert 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';
4638ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4639insert 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';
4640ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4641insert 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';
4642ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4643insert 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';
4644ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4645insert 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';
4646ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4647insert 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';
4648ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4649insert 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';
4650ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4651insert 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';
4652ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4653insert 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';
4654ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4655insert 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';
4656ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4657insert 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';
4658insert 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';
4659insert 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';
4660ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4661insert 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';
4662insert 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';
4663insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='null') from t where c='null';
4664ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4665insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='bool') from t where c='bool';
4666ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4667insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='uint') from t where c='uint';
4668ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4669insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='int') from t where c='int';
4670ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4671insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='double') from t where c='double';
4672ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4673insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='stringany') from t where c='stringany';
4674ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4675insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='stringint') from t where c='stringint';
4676ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4677insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal';
4678ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4679insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='object') from t where c='object';
4680ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4681insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='array') from t where c='array';
4682ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4683insert 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';
4684ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4685insert 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';
4686ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4687insert 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';
4688ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4689insert 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';
4690ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4691insert 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';
4692ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4693insert 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';
4694ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4695insert 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';
4696ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4697insert 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';
4698ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4699insert 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';
4700ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4701insert 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';
4702ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4703insert 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';
4704ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4705insert 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';
4706ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4707insert 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';
4708ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4709insert 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';
4710insert 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';
4711insert 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';
4712ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
4713insert 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';
4714insert 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';
4715# ----------------------------------------------------------------------
4716# Validate the data actually inserted
4717# ----------------------------------------------------------------------
4718select c, _bit from at
4719where c like '_bit%';
4720c	_bit
4721_bit: null	����null
4722_bit: bool	����true
4723_bit: uint	������12
4724_bit: int	������12
4725_bit: double	����3.14
4726_bit: stringany	�����"a"
4727_bit: stringint	�����"1"
4728_bit: stringdecimal	��"3.14"
4729_bit: object	{"a": 3}
4730_bit: array	��[1, 2]
4731_bit: opaque_mysql_type_decimal	����3.14
4732_bit: opaque_mysql_type_set	���"b,c"
4733_bit: opaque_mysql_type_enum	�����"b"
4734_bit: opaque_mysql_type_year	����1992
4735_bit: opaque_mysql_type_varbinary	NULL
4736_bit: opaque_mysql_type_binary	NULL
4737_bit: opaque_mysql_type_string	NULL
4738_bit: opaque_mysql_type_var_string	NULL
4739_bit: null	����null
4740_bit: bool	����true
4741_bit: uint	������12
4742_bit: int	������12
4743_bit: double	����3.14
4744_bit: stringany	�����"a"
4745_bit: stringint	�����"1"
4746_bit: stringdecimal	��"3.14"
4747_bit: object	{"a": 3}
4748_bit: array	��[1, 2]
4749_bit: opaque_mysql_type_decimal	����3.14
4750_bit: opaque_mysql_type_set	���"b,c"
4751_bit: opaque_mysql_type_enum	�����"b"
4752_bit: opaque_mysql_type_year	����1992
4753_bit: opaque_mysql_type_varbinary	NULL
4754_bit: opaque_mysql_type_binary	NULL
4755_bit: opaque_mysql_type_string	NULL
4756_bit: opaque_mysql_type_var_string	NULL
4757_bit: null	����null
4758_bit: bool	����true
4759_bit: uint	������12
4760_bit: int	������12
4761_bit: double	����3.14
4762_bit: stringany	�����"a"
4763_bit: stringint	�����"1"
4764_bit: stringdecimal	��"3.14"
4765_bit: object	{"a": 3}
4766_bit: array	��[1, 2]
4767_bit: opaque_mysql_type_decimal	����3.14
4768_bit: opaque_mysql_type_set	���"b,c"
4769_bit: opaque_mysql_type_enum	�����"b"
4770_bit: opaque_mysql_type_year	����1992
4771_bit: opaque_mysql_type_varbinary	NULL
4772_bit: opaque_mysql_type_binary	NULL
4773_bit: opaque_mysql_type_string	NULL
4774_bit: opaque_mysql_type_var_string	NULL
4775select c, _tin from at
4776where c like '_tin%';
4777c	_tin
4778_tin: bool	1
4779_tin: uint	12
4780_tin: int	12
4781_tin: double	3
4782_tin: stringint	1
4783_tin: opaque_mysql_type_decimal	3
4784_tin: opaque_mysql_type_varbinary	NULL
4785_tin: opaque_mysql_type_binary	NULL
4786_tin: opaque_mysql_type_string	NULL
4787_tin: opaque_mysql_type_var_string	NULL
4788_tin: bool	1
4789_tin: uint	12
4790_tin: int	12
4791_tin: double	3
4792_tin: stringint	1
4793_tin: opaque_mysql_type_decimal	3
4794_tin: opaque_mysql_type_varbinary	NULL
4795_tin: opaque_mysql_type_binary	NULL
4796_tin: opaque_mysql_type_string	NULL
4797_tin: opaque_mysql_type_var_string	NULL
4798_tin: bool	1
4799_tin: bool	1
4800_tin: uint	12
4801_tin: int	12
4802_tin: double	3
4803_tin: stringint	1
4804_tin: opaque_mysql_type_decimal	3
4805_tin: opaque_mysql_type_varbinary	NULL
4806_tin: opaque_mysql_type_binary	NULL
4807_tin: opaque_mysql_type_string	NULL
4808_tin: opaque_mysql_type_var_string	NULL
4809select c, _boo from at
4810where c like '_boo%';
4811c	_boo
4812_boo: bool	1
4813_boo: uint	12
4814_boo: int	12
4815_boo: double	3
4816_boo: stringint	1
4817_boo: opaque_mysql_type_decimal	3
4818_boo: opaque_mysql_type_varbinary	NULL
4819_boo: opaque_mysql_type_binary	NULL
4820_boo: opaque_mysql_type_string	NULL
4821_boo: opaque_mysql_type_var_string	NULL
4822_boo: bool	1
4823_boo: uint	12
4824_boo: int	12
4825_boo: double	3
4826_boo: stringint	1
4827_boo: opaque_mysql_type_decimal	3
4828_boo: opaque_mysql_type_varbinary	NULL
4829_boo: opaque_mysql_type_binary	NULL
4830_boo: opaque_mysql_type_string	NULL
4831_boo: opaque_mysql_type_var_string	NULL
4832_boo: bool	1
4833_boo: uint	12
4834_boo: int	12
4835_boo: double	3
4836_boo: stringint	1
4837_boo: opaque_mysql_type_decimal	3
4838_boo: opaque_mysql_type_varbinary	NULL
4839_boo: opaque_mysql_type_binary	NULL
4840_boo: opaque_mysql_type_string	NULL
4841_boo: opaque_mysql_type_var_string	NULL
4842select c, _sms from at
4843where c like '_sms%';
4844c	_sms
4845_sms: bool	1
4846_sms: uint	12
4847_sms: int	12
4848_sms: double	3
4849_sms: stringint	1
4850_sms: opaque_mysql_type_decimal	3
4851_sms: opaque_mysql_type_year	1992
4852_sms: opaque_mysql_type_varbinary	NULL
4853_sms: opaque_mysql_type_binary	NULL
4854_sms: opaque_mysql_type_string	NULL
4855_sms: opaque_mysql_type_var_string	NULL
4856_sms: bool	1
4857_sms: uint	12
4858_sms: int	12
4859_sms: double	3
4860_sms: stringint	1
4861_sms: opaque_mysql_type_decimal	3
4862_sms: opaque_mysql_type_year	1992
4863_sms: opaque_mysql_type_varbinary	NULL
4864_sms: opaque_mysql_type_binary	NULL
4865_sms: opaque_mysql_type_string	NULL
4866_sms: opaque_mysql_type_var_string	NULL
4867_sms: bool	1
4868_sms: uint	12
4869_sms: int	12
4870_sms: double	3
4871_sms: stringint	1
4872_sms: opaque_mysql_type_decimal	3
4873_sms: opaque_mysql_type_year	1992
4874_sms: opaque_mysql_type_varbinary	NULL
4875_sms: opaque_mysql_type_binary	NULL
4876_sms: opaque_mysql_type_string	NULL
4877_sms: opaque_mysql_type_var_string	NULL
4878select c, _smu from at
4879where c like '_smu%';
4880c	_smu
4881_smu: bool	1
4882_smu: uint	12
4883_smu: int	12
4884_smu: double	3
4885_smu: stringint	1
4886_smu: opaque_mysql_type_decimal	3
4887_smu: opaque_mysql_type_year	1992
4888_smu: opaque_mysql_type_varbinary	NULL
4889_smu: opaque_mysql_type_binary	NULL
4890_smu: opaque_mysql_type_string	NULL
4891_smu: opaque_mysql_type_var_string	NULL
4892_smu: bool	1
4893_smu: uint	12
4894_smu: int	12
4895_smu: double	3
4896_smu: stringint	1
4897_smu: opaque_mysql_type_decimal	3
4898_smu: opaque_mysql_type_year	1992
4899_smu: opaque_mysql_type_varbinary	NULL
4900_smu: opaque_mysql_type_binary	NULL
4901_smu: opaque_mysql_type_string	NULL
4902_smu: opaque_mysql_type_var_string	NULL
4903_smu: bool	1
4904_smu: uint	12
4905_smu: int	12
4906_smu: double	3
4907_smu: stringint	1
4908_smu: opaque_mysql_type_decimal	3
4909_smu: opaque_mysql_type_year	1992
4910_smu: opaque_mysql_type_varbinary	NULL
4911_smu: opaque_mysql_type_binary	NULL
4912_smu: opaque_mysql_type_string	NULL
4913_smu: opaque_mysql_type_var_string	NULL
4914select c, _mes from at
4915where c like '_mes%';
4916c	_mes
4917_mes: bool	1
4918_mes: uint	12
4919_mes: int	12
4920_mes: double	3
4921_mes: stringint	1
4922_mes: opaque_mysql_type_decimal	3
4923_mes: opaque_mysql_type_year	1992
4924_mes: opaque_mysql_type_varbinary	NULL
4925_mes: opaque_mysql_type_binary	NULL
4926_mes: opaque_mysql_type_string	NULL
4927_mes: opaque_mysql_type_var_string	NULL
4928_mes: bool	1
4929_mes: uint	12
4930_mes: int	12
4931_mes: double	3
4932_mes: stringint	1
4933_mes: opaque_mysql_type_decimal	3
4934_mes: opaque_mysql_type_year	1992
4935_mes: opaque_mysql_type_varbinary	NULL
4936_mes: opaque_mysql_type_binary	NULL
4937_mes: opaque_mysql_type_string	NULL
4938_mes: opaque_mysql_type_var_string	NULL
4939_mes: bool	1
4940_mes: uint	12
4941_mes: int	12
4942_mes: double	3
4943_mes: stringint	1
4944_mes: opaque_mysql_type_decimal	3
4945_mes: opaque_mysql_type_year	1992
4946_mes: opaque_mysql_type_varbinary	NULL
4947_mes: opaque_mysql_type_binary	NULL
4948_mes: opaque_mysql_type_string	NULL
4949_mes: opaque_mysql_type_var_string	NULL
4950select c, _meu from at
4951where c like '_meu%';
4952c	_meu
4953_meu: bool	1
4954_meu: uint	12
4955_meu: int	12
4956_meu: double	3
4957_meu: stringint	1
4958_meu: opaque_mysql_type_decimal	3
4959_meu: opaque_mysql_type_year	1992
4960_meu: opaque_mysql_type_varbinary	NULL
4961_meu: opaque_mysql_type_binary	NULL
4962_meu: opaque_mysql_type_string	NULL
4963_meu: opaque_mysql_type_var_string	NULL
4964_meu: bool	1
4965_meu: uint	12
4966_meu: int	12
4967_meu: double	3
4968_meu: stringint	1
4969_meu: opaque_mysql_type_decimal	3
4970_meu: opaque_mysql_type_year	1992
4971_meu: opaque_mysql_type_varbinary	NULL
4972_meu: opaque_mysql_type_binary	NULL
4973_meu: opaque_mysql_type_string	NULL
4974_meu: opaque_mysql_type_var_string	NULL
4975_meu: bool	1
4976_meu: uint	12
4977_meu: int	12
4978_meu: double	3
4979_meu: stringint	1
4980_meu: opaque_mysql_type_decimal	3
4981_meu: opaque_mysql_type_year	1992
4982_meu: opaque_mysql_type_varbinary	NULL
4983_meu: opaque_mysql_type_binary	NULL
4984_meu: opaque_mysql_type_string	NULL
4985_meu: opaque_mysql_type_var_string	NULL
4986select c, _ins from at
4987where c like '_ins%';
4988c	_ins
4989_ins: bool	1
4990_ins: uint	12
4991_ins: int	12
4992_ins: double	3
4993_ins: stringint	1
4994_ins: opaque_mysql_type_decimal	3
4995_ins: opaque_mysql_type_year	1992
4996_ins: opaque_mysql_type_varbinary	NULL
4997_ins: opaque_mysql_type_binary	NULL
4998_ins: opaque_mysql_type_string	NULL
4999_ins: opaque_mysql_type_var_string	NULL
5000_ins: bool	1
5001_ins: uint	12
5002_ins: int	12
5003_ins: double	3
5004_ins: stringint	1
5005_ins: opaque_mysql_type_decimal	3
5006_ins: opaque_mysql_type_year	1992
5007_ins: opaque_mysql_type_varbinary	NULL
5008_ins: opaque_mysql_type_binary	NULL
5009_ins: opaque_mysql_type_string	NULL
5010_ins: opaque_mysql_type_var_string	NULL
5011_ins: bool	1
5012_ins: uint	12
5013_ins: int	12
5014_ins: double	3
5015_ins: stringint	1
5016_ins: opaque_mysql_type_decimal	3
5017_ins: opaque_mysql_type_year	1992
5018_ins: opaque_mysql_type_varbinary	NULL
5019_ins: opaque_mysql_type_binary	NULL
5020_ins: opaque_mysql_type_string	NULL
5021_ins: opaque_mysql_type_var_string	NULL
5022select c, _inu from at
5023where c like '_inu%';
5024c	_inu
5025_inu: bool	1
5026_inu: uint	12
5027_inu: int	12
5028_inu: double	3
5029_inu: stringint	1
5030_inu: opaque_mysql_type_decimal	3
5031_inu: opaque_mysql_type_year	1992
5032_inu: opaque_mysql_type_varbinary	NULL
5033_inu: opaque_mysql_type_binary	NULL
5034_inu: opaque_mysql_type_string	NULL
5035_inu: opaque_mysql_type_var_string	NULL
5036_inu: bool	1
5037_inu: uint	12
5038_inu: int	12
5039_inu: double	3
5040_inu: stringint	1
5041_inu: opaque_mysql_type_decimal	3
5042_inu: opaque_mysql_type_year	1992
5043_inu: opaque_mysql_type_varbinary	NULL
5044_inu: opaque_mysql_type_binary	NULL
5045_inu: opaque_mysql_type_string	NULL
5046_inu: opaque_mysql_type_var_string	NULL
5047_inu: bool	1
5048_inu: uint	12
5049_inu: int	12
5050_inu: double	3
5051_inu: stringint	1
5052_inu: opaque_mysql_type_decimal	3
5053_inu: opaque_mysql_type_year	1992
5054_inu: opaque_mysql_type_varbinary	NULL
5055_inu: opaque_mysql_type_binary	NULL
5056_inu: opaque_mysql_type_string	NULL
5057_inu: opaque_mysql_type_var_string	NULL
5058select c, _bis from at
5059where c like '_bis%';
5060c	_bis
5061_bis: bool	1
5062_bis: uint	12
5063_bis: int	12
5064_bis: double	3
5065_bis: stringint	1
5066_bis: opaque_mysql_type_decimal	3
5067_bis: opaque_mysql_type_year	1992
5068_bis: opaque_mysql_type_varbinary	NULL
5069_bis: opaque_mysql_type_binary	NULL
5070_bis: opaque_mysql_type_string	NULL
5071_bis: opaque_mysql_type_var_string	NULL
5072_bis: bool	1
5073_bis: uint	12
5074_bis: int	12
5075_bis: double	3
5076_bis: stringint	1
5077_bis: opaque_mysql_type_decimal	3
5078_bis: opaque_mysql_type_year	1992
5079_bis: opaque_mysql_type_varbinary	NULL
5080_bis: opaque_mysql_type_binary	NULL
5081_bis: opaque_mysql_type_string	NULL
5082_bis: opaque_mysql_type_var_string	NULL
5083_bis: bool	1
5084_bis: uint	12
5085_bis: int	12
5086_bis: double	3
5087_bis: stringint	1
5088_bis: opaque_mysql_type_decimal	3
5089_bis: opaque_mysql_type_year	1992
5090_bis: opaque_mysql_type_varbinary	NULL
5091_bis: opaque_mysql_type_binary	NULL
5092_bis: opaque_mysql_type_string	NULL
5093_bis: opaque_mysql_type_var_string	NULL
5094select c, _biu from at
5095where c like '_biu%';
5096c	_biu
5097_biu: bool	1
5098_biu: uint	12
5099_biu: int	12
5100_biu: double	3
5101_biu: stringint	1
5102_biu: opaque_mysql_type_decimal	3
5103_biu: opaque_mysql_type_year	1992
5104_biu: opaque_mysql_type_varbinary	NULL
5105_biu: opaque_mysql_type_binary	NULL
5106_biu: opaque_mysql_type_string	NULL
5107_biu: opaque_mysql_type_var_string	NULL
5108_biu: bool	1
5109_biu: uint	12
5110_biu: int	12
5111_biu: double	3
5112_biu: stringint	1
5113_biu: opaque_mysql_type_decimal	3
5114_biu: opaque_mysql_type_year	1992
5115_biu: opaque_mysql_type_varbinary	NULL
5116_biu: opaque_mysql_type_binary	NULL
5117_biu: opaque_mysql_type_string	NULL
5118_biu: opaque_mysql_type_var_string	NULL
5119_biu: bool	1
5120_biu: uint	12
5121_biu: int	12
5122_biu: double	3
5123_biu: stringint	1
5124_biu: opaque_mysql_type_decimal	3
5125_biu: opaque_mysql_type_year	1992
5126_biu: opaque_mysql_type_varbinary	NULL
5127_biu: opaque_mysql_type_binary	NULL
5128_biu: opaque_mysql_type_string	NULL
5129_biu: opaque_mysql_type_var_string	NULL
5130select c, _dec from at
5131where c like '_dec%';
5132c	_dec
5133_dec: bool	1.00
5134_dec: uint	12.00
5135_dec: int	12.00
5136_dec: double	3.14
5137_dec: stringint	1.00
5138_dec: stringdecimal	3.14
5139_dec: opaque_mysql_type_decimal	3.14
5140_dec: opaque_mysql_type_varbinary	NULL
5141_dec: opaque_mysql_type_binary	NULL
5142_dec: opaque_mysql_type_string	NULL
5143_dec: opaque_mysql_type_var_string	NULL
5144_dec: bool	1.00
5145_dec: uint	12.00
5146_dec: int	12.00
5147_dec: double	3.14
5148_dec: stringint	1.00
5149_dec: stringdecimal	3.14
5150_dec: opaque_mysql_type_decimal	3.14
5151_dec: opaque_mysql_type_varbinary	NULL
5152_dec: opaque_mysql_type_binary	NULL
5153_dec: opaque_mysql_type_string	NULL
5154_dec: opaque_mysql_type_var_string	NULL
5155_dec: bool	1.00
5156_dec: uint	12.00
5157_dec: int	12.00
5158_dec: double	3.14
5159_dec: stringint	1.00
5160_dec: stringdecimal	3.14
5161_dec: opaque_mysql_type_decimal	3.14
5162_dec: opaque_mysql_type_varbinary	NULL
5163_dec: opaque_mysql_type_binary	NULL
5164_dec: opaque_mysql_type_string	NULL
5165_dec: opaque_mysql_type_var_string	NULL
5166select c, _flo from at
5167where c like '_flo%';
5168c	_flo
5169_flo: bool	1
5170_flo: uint	12
5171_flo: int	12
5172_flo: double	3.14
5173_flo: stringint	1
5174_flo: stringdecimal	3.14
5175_flo: opaque_mysql_type_decimal	3.14
5176_flo: opaque_mysql_type_year	1992
5177_flo: opaque_mysql_type_varbinary	NULL
5178_flo: opaque_mysql_type_binary	NULL
5179_flo: opaque_mysql_type_string	NULL
5180_flo: opaque_mysql_type_var_string	NULL
5181_flo: bool	1
5182_flo: uint	12
5183_flo: int	12
5184_flo: double	3.14
5185_flo: stringint	1
5186_flo: stringdecimal	3.14
5187_flo: opaque_mysql_type_decimal	3.14
5188_flo: opaque_mysql_type_year	1992
5189_flo: opaque_mysql_type_varbinary	NULL
5190_flo: opaque_mysql_type_binary	NULL
5191_flo: opaque_mysql_type_string	NULL
5192_flo: opaque_mysql_type_var_string	NULL
5193_flo: bool	1
5194_flo: uint	12
5195_flo: int	12
5196_flo: double	3.14
5197_flo: stringint	1
5198_flo: stringdecimal	3.14
5199_flo: opaque_mysql_type_decimal	3.14
5200_flo: opaque_mysql_type_year	1992
5201_flo: opaque_mysql_type_varbinary	NULL
5202_flo: opaque_mysql_type_binary	NULL
5203_flo: opaque_mysql_type_string	NULL
5204_flo: opaque_mysql_type_var_string	NULL
5205select c, _dou from at
5206where c like '_dou%';
5207c	_dou
5208_dou: bool	1
5209_dou: uint	12
5210_dou: int	12
5211_dou: double	3.14
5212_dou: stringint	1
5213_dou: stringdecimal	3.14
5214_dou: opaque_mysql_type_decimal	3.14
5215_dou: opaque_mysql_type_year	1992
5216_dou: opaque_mysql_type_varbinary	NULL
5217_dou: opaque_mysql_type_binary	NULL
5218_dou: opaque_mysql_type_string	NULL
5219_dou: opaque_mysql_type_var_string	NULL
5220_dou: bool	1
5221_dou: uint	12
5222_dou: int	12
5223_dou: double	3.14
5224_dou: stringint	1
5225_dou: stringdecimal	3.14
5226_dou: opaque_mysql_type_decimal	3.14
5227_dou: opaque_mysql_type_year	1992
5228_dou: opaque_mysql_type_varbinary	NULL
5229_dou: opaque_mysql_type_binary	NULL
5230_dou: opaque_mysql_type_string	NULL
5231_dou: opaque_mysql_type_var_string	NULL
5232_dou: bool	1
5233_dou: uint	12
5234_dou: int	12
5235_dou: double	3.14
5236_dou: stringint	1
5237_dou: stringdecimal	3.14
5238_dou: opaque_mysql_type_decimal	3.14
5239_dou: opaque_mysql_type_year	1992
5240_dou: opaque_mysql_type_varbinary	NULL
5241_dou: opaque_mysql_type_binary	NULL
5242_dou: opaque_mysql_type_string	NULL
5243_dou: opaque_mysql_type_var_string	NULL
5244select c, _dat from at
5245where c like '_dat%';
5246c	_dat
5247_dat: opaque_mysql_type_date	--EXPECTED_DATE--
5248_dat: opaque_mysql_type_datetime	--EXPECTED_DATE--
5249_dat: opaque_mysql_type_varbinary	NULL
5250_dat: opaque_mysql_type_binary	NULL
5251_dat: opaque_mysql_type_string	NULL
5252_dat: opaque_mysql_type_var_string	NULL
5253_dat: opaque_mysql_type_var_string	NULL
5254_dat: opaque_mysql_type_date	--EXPECTED_DATE--
5255_dat: opaque_mysql_type_datetime	--EXPECTED_DATE--
5256_dat: opaque_mysql_type_varbinary	NULL
5257_dat: opaque_mysql_type_binary	NULL
5258_dat: opaque_mysql_type_string	NULL
5259_dat: opaque_mysql_type_var_string	NULL
5260_dat: opaque_mysql_type_var_string	NULL
5261_dat: opaque_mysql_type_date	--EXPECTED_DATE--
5262_dat: opaque_mysql_type_datetime	--EXPECTED_DATE--
5263_dat: opaque_mysql_type_varbinary	NULL
5264_dat: opaque_mysql_type_binary	NULL
5265_dat: opaque_mysql_type_string	NULL
5266_dat: opaque_mysql_type_var_string	NULL
5267_dat: opaque_mysql_type_var_string	NULL
5268select c, _dtt from at
5269where c like '_dtt%';
5270c	_dtt
5271_dtt: opaque_mysql_type_date	--DATETIME--
5272_dtt: opaque_mysql_type_datetime	--EXPECTED_DATETIME--
5273_dtt: opaque_mysql_type_varbinary	NULL
5274_dtt: opaque_mysql_type_binary	NULL
5275_dtt: opaque_mysql_type_string	NULL
5276_dtt: opaque_mysql_type_date	--DATETIME--
5277_dtt: opaque_mysql_type_datetime	--EXPECTED_DATETIME--
5278_dtt: opaque_mysql_type_varbinary	NULL
5279_dtt: opaque_mysql_type_binary	NULL
5280_dtt: opaque_mysql_type_string	NULL
5281_dtt: opaque_mysql_type_date	--DATETIME--
5282_dtt: opaque_mysql_type_datetime	--EXPECTED_DATETIME--
5283_dtt: opaque_mysql_type_varbinary	NULL
5284_dtt: opaque_mysql_type_binary	NULL
5285_dtt: opaque_mysql_type_string	NULL
5286select c, _smp from at
5287where c like '_smp%';
5288c	_smp
5289_smp: opaque_mysql_type_date	--TIMESTAMP--
5290_smp: opaque_mysql_type_datetime	--EXPECTED_TIMESTAMP--
5291_smp: opaque_mysql_type_varbinary	NULL
5292_smp: opaque_mysql_type_binary	NULL
5293_smp: opaque_mysql_type_string	NULL
5294_smp: opaque_mysql_type_var_string	NULL
5295_smp: opaque_mysql_type_date	--TIMESTAMP--
5296_smp: opaque_mysql_type_datetime	--EXPECTED_TIMESTAMP--
5297_smp: opaque_mysql_type_varbinary	NULL
5298_smp: opaque_mysql_type_binary	NULL
5299_smp: opaque_mysql_type_string	NULL
5300_smp: opaque_mysql_type_var_string	NULL
5301_smp: opaque_mysql_type_date	--TIMESTAMP--
5302_smp: opaque_mysql_type_datetime	--EXPECTED_TIMESTAMP--
5303_smp: opaque_mysql_type_varbinary	NULL
5304_smp: opaque_mysql_type_binary	NULL
5305_smp: opaque_mysql_type_string	NULL
5306_smp: opaque_mysql_type_var_string	NULL
5307select c, _tim from at
5308where c like '_tim%';
5309c	_tim
5310_tim: opaque_mysql_type_time	--EXPECTED_TIME--
5311_tim: opaque_mysql_type_varbinary	NULL
5312_tim: opaque_mysql_type_binary	NULL
5313_tim: opaque_mysql_type_string	NULL
5314_tim: opaque_mysql_type_var_string	NULL
5315_tim: opaque_mysql_type_time	--EXPECTED_TIME--
5316_tim: opaque_mysql_type_varbinary	NULL
5317_tim: opaque_mysql_type_binary	NULL
5318_tim: opaque_mysql_type_string	NULL
5319_tim: opaque_mysql_type_var_string	NULL
5320_tim: opaque_mysql_type_time	--EXPECTED_TIME--
5321_tim: opaque_mysql_type_varbinary	NULL
5322_tim: opaque_mysql_type_binary	NULL
5323_tim: opaque_mysql_type_string	NULL
5324_tim: opaque_mysql_type_var_string	NULL
5325select c, _yea from at
5326where c like '_yea%';
5327c	_yea
5328_yea: uint	2012
5329_yea: int	2012
5330_yea: double	2003
5331_yea: opaque_mysql_type_decimal	2003
5332_yea: opaque_mysql_type_year	1992
5333_yea: opaque_mysql_type_varbinary	NULL
5334_yea: opaque_mysql_type_binary	NULL
5335_yea: opaque_mysql_type_string	NULL
5336_yea: opaque_mysql_type_var_string	NULL
5337_yea: uint	2012
5338_yea: int	2012
5339_yea: double	2003
5340_yea: opaque_mysql_type_decimal	2003
5341_yea: opaque_mysql_type_year	1992
5342_yea: opaque_mysql_type_varbinary	NULL
5343_yea: opaque_mysql_type_binary	NULL
5344_yea: opaque_mysql_type_string	NULL
5345_yea: opaque_mysql_type_var_string	NULL
5346_yea: uint	2012
5347_yea: int	2012
5348_yea: double	2003
5349_yea: opaque_mysql_type_decimal	2003
5350_yea: opaque_mysql_type_year	1992
5351_yea: opaque_mysql_type_varbinary	NULL
5352_yea: opaque_mysql_type_binary	NULL
5353_yea: opaque_mysql_type_string	NULL
5354_yea: opaque_mysql_type_var_string	NULL
5355select c, _jsn from at
5356where c like '_jsn%';
5357c	_jsn
5358_jsn: null	null
5359_jsn: bool	true
5360_jsn: uint	12
5361_jsn: int	12
5362_jsn: double	3.14
5363_jsn: stringany	"a"
5364_jsn: stringint	"1"
5365_jsn: stringdecimal	"3.14"
5366_jsn: object	{"a": 3}
5367_jsn: array	[1, 2]
5368_jsn: opaque_mysql_type_decimal	3.14
5369_jsn: opaque_mysql_type_set	"b,c"
5370_jsn: opaque_mysql_type_enum	"b"
5371_jsn: opaque_mysql_type_date	"2015-01-15"
5372_jsn: opaque_mysql_type_time	"23:24:25.000000"
5373_jsn: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5374_jsn: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5375_jsn: opaque_mysql_type_bit	"base64:type15:yv4="
5376_jsn: opaque_mysql_type_year	1992
5377_jsn: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5378_jsn: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5379_jsn: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5380_jsn: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5381_jsn: opaque_mysql_type_varbinary	NULL
5382_jsn: opaque_mysql_type_binary	NULL
5383_jsn: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5384_jsn: opaque_mysql_type_string	NULL
5385_jsn: opaque_mysql_type_var_string	NULL
5386_jsn: null	null
5387_jsn: bool	true
5388_jsn: uint	12
5389_jsn: int	12
5390_jsn: double	3.14
5391_jsn: stringany	"a"
5392_jsn: stringint	"1"
5393_jsn: stringdecimal	"3.14"
5394_jsn: object	{"a": 3}
5395_jsn: array	[1, 2]
5396_jsn: opaque_mysql_type_decimal	3.14
5397_jsn: opaque_mysql_type_set	"b,c"
5398_jsn: opaque_mysql_type_enum	"b"
5399_jsn: opaque_mysql_type_date	"2015-01-15"
5400_jsn: opaque_mysql_type_time	"23:24:25.000000"
5401_jsn: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5402_jsn: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5403_jsn: opaque_mysql_type_bit	"base64:type15:yv4="
5404_jsn: opaque_mysql_type_year	1992
5405_jsn: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5406_jsn: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5407_jsn: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5408_jsn: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5409_jsn: opaque_mysql_type_varbinary	NULL
5410_jsn: opaque_mysql_type_binary	NULL
5411_jsn: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5412_jsn: opaque_mysql_type_string	NULL
5413_jsn: opaque_mysql_type_var_string	NULL
5414_jsn: null	null
5415_jsn: bool	true
5416_jsn: uint	12
5417_jsn: int	12
5418_jsn: double	3.14
5419_jsn: stringany	"a"
5420_jsn: stringint	"1"
5421_jsn: stringdecimal	"3.14"
5422_jsn: object	{"a": 3}
5423_jsn: array	[1, 2]
5424_jsn: opaque_mysql_type_decimal	3.14
5425_jsn: opaque_mysql_type_set	"b,c"
5426_jsn: opaque_mysql_type_enum	"b"
5427_jsn: opaque_mysql_type_date	"2015-01-15"
5428_jsn: opaque_mysql_type_time	"23:24:25.000000"
5429_jsn: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5430_jsn: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5431_jsn: opaque_mysql_type_bit	"base64:type15:yv4="
5432_jsn: opaque_mysql_type_year	1992
5433_jsn: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5434_jsn: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5435_jsn: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5436_jsn: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5437_jsn: opaque_mysql_type_varbinary	NULL
5438_jsn: opaque_mysql_type_binary	NULL
5439_jsn: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5440_jsn: opaque_mysql_type_string	NULL
5441_jsn: opaque_mysql_type_var_string	NULL
5442select c, _chr from at
5443where c like '_chr%';
5444c	_chr
5445_chr: null	null
5446_chr: bool	true
5447_chr: uint	12
5448_chr: int	12
5449_chr: double	3.14
5450_chr: stringany	"a"
5451_chr: stringint	"1"
5452_chr: stringdecimal	"3.14"
5453_chr: object	{"a": 3}
5454_chr: array	[1, 2]
5455_chr: opaque_mysql_type_decimal	3.14
5456_chr: opaque_mysql_type_set	"b,c"
5457_chr: opaque_mysql_type_enum	"b"
5458_chr: opaque_mysql_type_date	"2015-01-15"
5459_chr: opaque_mysql_type_time	"23:24:25.000000"
5460_chr: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5461_chr: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5462_chr: opaque_mysql_type_bit	"base64:type15:yv4="
5463_chr: opaque_mysql_type_year	1992
5464_chr: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5465_chr: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5466_chr: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5467_chr: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5468_chr: opaque_mysql_type_varbinary	NULL
5469_chr: opaque_mysql_type_binary	NULL
5470_chr: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5471_chr: opaque_mysql_type_string	NULL
5472_chr: opaque_mysql_type_var_string	NULL
5473_chr: null	null
5474_chr: bool	true
5475_chr: uint	12
5476_chr: int	12
5477_chr: double	3.14
5478_chr: stringany	"a"
5479_chr: stringint	"1"
5480_chr: stringdecimal	"3.14"
5481_chr: object	{"a": 3}
5482_chr: array	[1, 2]
5483_chr: opaque_mysql_type_decimal	3.14
5484_chr: opaque_mysql_type_set	"b,c"
5485_chr: opaque_mysql_type_enum	"b"
5486_chr: opaque_mysql_type_date	"2015-01-15"
5487_chr: opaque_mysql_type_time	"23:24:25.000000"
5488_chr: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5489_chr: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5490_chr: opaque_mysql_type_bit	"base64:type15:yv4="
5491_chr: opaque_mysql_type_year	1992
5492_chr: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5493_chr: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5494_chr: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5495_chr: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5496_chr: opaque_mysql_type_varbinary	NULL
5497_chr: opaque_mysql_type_binary	NULL
5498_chr: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5499_chr: opaque_mysql_type_string	NULL
5500_chr: opaque_mysql_type_var_string	NULL
5501_chr: null	null
5502_chr: bool	true
5503_chr: uint	12
5504_chr: int	12
5505_chr: double	3.14
5506_chr: stringany	"a"
5507_chr: stringint	"1"
5508_chr: stringdecimal	"3.14"
5509_chr: object	{"a": 3}
5510_chr: array	[1, 2]
5511_chr: opaque_mysql_type_decimal	3.14
5512_chr: opaque_mysql_type_set	"b,c"
5513_chr: opaque_mysql_type_enum	"b"
5514_chr: opaque_mysql_type_date	"2015-01-15"
5515_chr: opaque_mysql_type_time	"23:24:25.000000"
5516_chr: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5517_chr: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5518_chr: opaque_mysql_type_bit	"base64:type15:yv4="
5519_chr: opaque_mysql_type_year	1992
5520_chr: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5521_chr: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5522_chr: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5523_chr: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5524_chr: opaque_mysql_type_varbinary	NULL
5525_chr: opaque_mysql_type_binary	NULL
5526_chr: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5527_chr: opaque_mysql_type_string	NULL
5528_chr: opaque_mysql_type_var_string	NULL
5529select c, _vch from at
5530where c like '_vch%';
5531c	_vch
5532_vch: null	null
5533_vch: bool	true
5534_vch: uint	12
5535_vch: int	12
5536_vch: double	3.14
5537_vch: stringany	"a"
5538_vch: stringint	"1"
5539_vch: stringdecimal	"3.14"
5540_vch: object	{"a": 3}
5541_vch: array	[1, 2]
5542_vch: opaque_mysql_type_decimal	3.14
5543_vch: opaque_mysql_type_set	"b,c"
5544_vch: opaque_mysql_type_enum	"b"
5545_vch: opaque_mysql_type_date	"2015-01-15"
5546_vch: opaque_mysql_type_time	"23:24:25.000000"
5547_vch: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5548_vch: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5549_vch: opaque_mysql_type_bit	"base64:type15:yv4="
5550_vch: opaque_mysql_type_year	1992
5551_vch: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5552_vch: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5553_vch: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5554_vch: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5555_vch: opaque_mysql_type_varbinary	NULL
5556_vch: opaque_mysql_type_binary	NULL
5557_vch: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5558_vch: opaque_mysql_type_string	NULL
5559_vch: opaque_mysql_type_var_string	NULL
5560_vch: null	null
5561_vch: bool	true
5562_vch: uint	12
5563_vch: int	12
5564_vch: double	3.14
5565_vch: stringany	"a"
5566_vch: stringint	"1"
5567_vch: stringdecimal	"3.14"
5568_vch: object	{"a": 3}
5569_vch: array	[1, 2]
5570_vch: opaque_mysql_type_decimal	3.14
5571_vch: opaque_mysql_type_set	"b,c"
5572_vch: opaque_mysql_type_enum	"b"
5573_vch: opaque_mysql_type_date	"2015-01-15"
5574_vch: opaque_mysql_type_time	"23:24:25.000000"
5575_vch: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5576_vch: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5577_vch: opaque_mysql_type_bit	"base64:type15:yv4="
5578_vch: opaque_mysql_type_year	1992
5579_vch: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5580_vch: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5581_vch: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5582_vch: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5583_vch: opaque_mysql_type_varbinary	NULL
5584_vch: opaque_mysql_type_binary	NULL
5585_vch: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5586_vch: opaque_mysql_type_string	NULL
5587_vch: opaque_mysql_type_var_string	NULL
5588_vch: null	null
5589_vch: bool	true
5590_vch: uint	12
5591_vch: int	12
5592_vch: double	3.14
5593_vch: stringany	"a"
5594_vch: stringint	"1"
5595_vch: stringdecimal	"3.14"
5596_vch: object	{"a": 3}
5597_vch: array	[1, 2]
5598_vch: opaque_mysql_type_decimal	3.14
5599_vch: opaque_mysql_type_set	"b,c"
5600_vch: opaque_mysql_type_enum	"b"
5601_vch: opaque_mysql_type_date	"2015-01-15"
5602_vch: opaque_mysql_type_time	"23:24:25.000000"
5603_vch: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5604_vch: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5605_vch: opaque_mysql_type_bit	"base64:type15:yv4="
5606_vch: opaque_mysql_type_year	1992
5607_vch: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5608_vch: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5609_vch: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5610_vch: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5611_vch: opaque_mysql_type_varbinary	NULL
5612_vch: opaque_mysql_type_binary	NULL
5613_vch: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5614_vch: opaque_mysql_type_string	NULL
5615_vch: opaque_mysql_type_var_string	NULL
5616select c, replace(_bin, '\0', '') from at
5617where c like '_bin%';
5618c	replace(_bin, '\0', '')
5619_bin: null	null
5620_bin: bool	true
5621_bin: uint	12
5622_bin: int	12
5623_bin: double	3.14
5624_bin: stringany	"a"
5625_bin: stringint	"1"
5626_bin: stringdecimal	"3.14"
5627_bin: object	{"a": 3}
5628_bin: array	[1, 2]
5629_bin: opaque_mysql_type_decimal	3.14
5630_bin: opaque_mysql_type_set	"b,c"
5631_bin: opaque_mysql_type_enum	"b"
5632_bin: opaque_mysql_type_date	"2015-01-15"
5633_bin: opaque_mysql_type_time	"23:24:25.000000"
5634_bin: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5635_bin: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5636_bin: opaque_mysql_type_bit	"base64:type15:yv4="
5637_bin: opaque_mysql_type_year	1992
5638_bin: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5639_bin: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5640_bin: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5641_bin: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5642_bin: opaque_mysql_type_varbinary	NULL
5643_bin: opaque_mysql_type_binary	NULL
5644_bin: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5645_bin: opaque_mysql_type_string	NULL
5646_bin: opaque_mysql_type_var_string	NULL
5647_bin: null	null
5648_bin: bool	true
5649_bin: uint	12
5650_bin: int	12
5651_bin: double	3.14
5652_bin: stringany	"a"
5653_bin: stringint	"1"
5654_bin: stringdecimal	"3.14"
5655_bin: object	{"a": 3}
5656_bin: array	[1, 2]
5657_bin: opaque_mysql_type_decimal	3.14
5658_bin: opaque_mysql_type_set	"b,c"
5659_bin: opaque_mysql_type_enum	"b"
5660_bin: opaque_mysql_type_date	"2015-01-15"
5661_bin: opaque_mysql_type_time	"23:24:25.000000"
5662_bin: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5663_bin: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5664_bin: opaque_mysql_type_bit	"base64:type15:yv4="
5665_bin: opaque_mysql_type_year	1992
5666_bin: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5667_bin: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5668_bin: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5669_bin: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5670_bin: opaque_mysql_type_varbinary	NULL
5671_bin: opaque_mysql_type_binary	NULL
5672_bin: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5673_bin: opaque_mysql_type_string	NULL
5674_bin: opaque_mysql_type_var_string	NULL
5675_bin: null	null
5676_bin: bool	true
5677_bin: uint	12
5678_bin: int	12
5679_bin: double	3.14
5680_bin: stringany	"a"
5681_bin: stringint	"1"
5682_bin: stringdecimal	"3.14"
5683_bin: object	{"a": 3}
5684_bin: array	[1, 2]
5685_bin: opaque_mysql_type_decimal	3.14
5686_bin: opaque_mysql_type_set	"b,c"
5687_bin: opaque_mysql_type_enum	"b"
5688_bin: opaque_mysql_type_date	"2015-01-15"
5689_bin: opaque_mysql_type_time	"23:24:25.000000"
5690_bin: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5691_bin: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5692_bin: opaque_mysql_type_bit	"base64:type15:yv4="
5693_bin: opaque_mysql_type_year	1992
5694_bin: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5695_bin: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5696_bin: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5697_bin: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5698_bin: opaque_mysql_type_varbinary	NULL
5699_bin: opaque_mysql_type_binary	NULL
5700_bin: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5701_bin: opaque_mysql_type_string	NULL
5702_bin: opaque_mysql_type_var_string	NULL
5703select c, _vbn from at
5704where c like '_vbn%';
5705c	_vbn
5706_vbn: null	null
5707_vbn: bool	true
5708_vbn: uint	12
5709_vbn: int	12
5710_vbn: double	3.14
5711_vbn: stringany	"a"
5712_vbn: stringint	"1"
5713_vbn: stringdecimal	"3.14"
5714_vbn: object	{"a": 3}
5715_vbn: array	[1, 2]
5716_vbn: opaque_mysql_type_decimal	3.14
5717_vbn: opaque_mysql_type_set	"b,c"
5718_vbn: opaque_mysql_type_enum	"b"
5719_vbn: opaque_mysql_type_date	"2015-01-15"
5720_vbn: opaque_mysql_type_time	"23:24:25.000000"
5721_vbn: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5722_vbn: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5723_vbn: opaque_mysql_type_bit	"base64:type15:yv4="
5724_vbn: opaque_mysql_type_year	1992
5725_vbn: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5726_vbn: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5727_vbn: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5728_vbn: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5729_vbn: opaque_mysql_type_varbinary	NULL
5730_vbn: opaque_mysql_type_binary	NULL
5731_vbn: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5732_vbn: opaque_mysql_type_string	NULL
5733_vbn: opaque_mysql_type_var_string	NULL
5734_vbn: null	null
5735_vbn: bool	true
5736_vbn: uint	12
5737_vbn: int	12
5738_vbn: double	3.14
5739_vbn: stringany	"a"
5740_vbn: stringint	"1"
5741_vbn: stringdecimal	"3.14"
5742_vbn: object	{"a": 3}
5743_vbn: array	[1, 2]
5744_vbn: opaque_mysql_type_decimal	3.14
5745_vbn: opaque_mysql_type_set	"b,c"
5746_vbn: opaque_mysql_type_enum	"b"
5747_vbn: opaque_mysql_type_date	"2015-01-15"
5748_vbn: opaque_mysql_type_time	"23:24:25.000000"
5749_vbn: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5750_vbn: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5751_vbn: opaque_mysql_type_bit	"base64:type15:yv4="
5752_vbn: opaque_mysql_type_year	1992
5753_vbn: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5754_vbn: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5755_vbn: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5756_vbn: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5757_vbn: opaque_mysql_type_varbinary	NULL
5758_vbn: opaque_mysql_type_binary	NULL
5759_vbn: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5760_vbn: opaque_mysql_type_string	NULL
5761_vbn: opaque_mysql_type_var_string	NULL
5762_vbn: null	null
5763_vbn: bool	true
5764_vbn: uint	12
5765_vbn: int	12
5766_vbn: double	3.14
5767_vbn: stringany	"a"
5768_vbn: stringint	"1"
5769_vbn: stringdecimal	"3.14"
5770_vbn: object	{"a": 3}
5771_vbn: array	[1, 2]
5772_vbn: opaque_mysql_type_decimal	3.14
5773_vbn: opaque_mysql_type_set	"b,c"
5774_vbn: opaque_mysql_type_enum	"b"
5775_vbn: opaque_mysql_type_date	"2015-01-15"
5776_vbn: opaque_mysql_type_time	"23:24:25.000000"
5777_vbn: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5778_vbn: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5779_vbn: opaque_mysql_type_bit	"base64:type15:yv4="
5780_vbn: opaque_mysql_type_year	1992
5781_vbn: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5782_vbn: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5783_vbn: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5784_vbn: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5785_vbn: opaque_mysql_type_varbinary	NULL
5786_vbn: opaque_mysql_type_binary	NULL
5787_vbn: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5788_vbn: opaque_mysql_type_string	NULL
5789_vbn: opaque_mysql_type_var_string	NULL
5790select c, _tbl from at
5791where c like '_tbl%';
5792c	_tbl
5793_tbl: null	null
5794_tbl: bool	true
5795_tbl: uint	12
5796_tbl: int	12
5797_tbl: double	3.14
5798_tbl: stringany	"a"
5799_tbl: stringint	"1"
5800_tbl: stringdecimal	"3.14"
5801_tbl: object	{"a": 3}
5802_tbl: array	[1, 2]
5803_tbl: opaque_mysql_type_decimal	3.14
5804_tbl: opaque_mysql_type_set	"b,c"
5805_tbl: opaque_mysql_type_enum	"b"
5806_tbl: opaque_mysql_type_date	"2015-01-15"
5807_tbl: opaque_mysql_type_time	"23:24:25.000000"
5808_tbl: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5809_tbl: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5810_tbl: opaque_mysql_type_bit	"base64:type15:yv4="
5811_tbl: opaque_mysql_type_year	1992
5812_tbl: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5813_tbl: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5814_tbl: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5815_tbl: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5816_tbl: opaque_mysql_type_varbinary	NULL
5817_tbl: opaque_mysql_type_binary	NULL
5818_tbl: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5819_tbl: opaque_mysql_type_string	NULL
5820_tbl: opaque_mysql_type_var_string	NULL
5821_tbl: null	null
5822_tbl: bool	true
5823_tbl: uint	12
5824_tbl: int	12
5825_tbl: double	3.14
5826_tbl: stringany	"a"
5827_tbl: stringint	"1"
5828_tbl: stringdecimal	"3.14"
5829_tbl: object	{"a": 3}
5830_tbl: array	[1, 2]
5831_tbl: opaque_mysql_type_decimal	3.14
5832_tbl: opaque_mysql_type_set	"b,c"
5833_tbl: opaque_mysql_type_enum	"b"
5834_tbl: opaque_mysql_type_date	"2015-01-15"
5835_tbl: opaque_mysql_type_time	"23:24:25.000000"
5836_tbl: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5837_tbl: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5838_tbl: opaque_mysql_type_bit	"base64:type15:yv4="
5839_tbl: opaque_mysql_type_year	1992
5840_tbl: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5841_tbl: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5842_tbl: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5843_tbl: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5844_tbl: opaque_mysql_type_varbinary	NULL
5845_tbl: opaque_mysql_type_binary	NULL
5846_tbl: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5847_tbl: opaque_mysql_type_string	NULL
5848_tbl: opaque_mysql_type_var_string	NULL
5849_tbl: null	null
5850_tbl: bool	true
5851_tbl: uint	12
5852_tbl: int	12
5853_tbl: double	3.14
5854_tbl: stringany	"a"
5855_tbl: stringint	"1"
5856_tbl: stringdecimal	"3.14"
5857_tbl: object	{"a": 3}
5858_tbl: array	[1, 2]
5859_tbl: opaque_mysql_type_decimal	3.14
5860_tbl: opaque_mysql_type_set	"b,c"
5861_tbl: opaque_mysql_type_enum	"b"
5862_tbl: opaque_mysql_type_date	"2015-01-15"
5863_tbl: opaque_mysql_type_time	"23:24:25.000000"
5864_tbl: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5865_tbl: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5866_tbl: opaque_mysql_type_bit	"base64:type15:yv4="
5867_tbl: opaque_mysql_type_year	1992
5868_tbl: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5869_tbl: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5870_tbl: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5871_tbl: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5872_tbl: opaque_mysql_type_varbinary	NULL
5873_tbl: opaque_mysql_type_binary	NULL
5874_tbl: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5875_tbl: opaque_mysql_type_string	NULL
5876_tbl: opaque_mysql_type_var_string	NULL
5877select c, _ttx from at
5878where c like '_ttx%';
5879c	_ttx
5880_ttx: null	null
5881_ttx: bool	true
5882_ttx: uint	12
5883_ttx: int	12
5884_ttx: double	3.14
5885_ttx: stringany	"a"
5886_ttx: stringint	"1"
5887_ttx: stringdecimal	"3.14"
5888_ttx: object	{"a": 3}
5889_ttx: array	[1, 2]
5890_ttx: opaque_mysql_type_decimal	3.14
5891_ttx: opaque_mysql_type_set	"b,c"
5892_ttx: opaque_mysql_type_enum	"b"
5893_ttx: opaque_mysql_type_date	"2015-01-15"
5894_ttx: opaque_mysql_type_time	"23:24:25.000000"
5895_ttx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5896_ttx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5897_ttx: opaque_mysql_type_bit	"base64:type15:yv4="
5898_ttx: opaque_mysql_type_year	1992
5899_ttx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5900_ttx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5901_ttx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5902_ttx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5903_ttx: opaque_mysql_type_varbinary	NULL
5904_ttx: opaque_mysql_type_binary	NULL
5905_ttx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5906_ttx: opaque_mysql_type_string	NULL
5907_ttx: opaque_mysql_type_var_string	NULL
5908_ttx: null	null
5909_ttx: bool	true
5910_ttx: uint	12
5911_ttx: int	12
5912_ttx: double	3.14
5913_ttx: stringany	"a"
5914_ttx: stringint	"1"
5915_ttx: stringdecimal	"3.14"
5916_ttx: object	{"a": 3}
5917_ttx: array	[1, 2]
5918_ttx: opaque_mysql_type_decimal	3.14
5919_ttx: opaque_mysql_type_set	"b,c"
5920_ttx: opaque_mysql_type_enum	"b"
5921_ttx: opaque_mysql_type_date	"2015-01-15"
5922_ttx: opaque_mysql_type_time	"23:24:25.000000"
5923_ttx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5924_ttx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5925_ttx: opaque_mysql_type_bit	"base64:type15:yv4="
5926_ttx: opaque_mysql_type_year	1992
5927_ttx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5928_ttx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5929_ttx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5930_ttx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5931_ttx: opaque_mysql_type_varbinary	NULL
5932_ttx: opaque_mysql_type_binary	NULL
5933_ttx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5934_ttx: opaque_mysql_type_string	NULL
5935_ttx: opaque_mysql_type_var_string	NULL
5936_ttx: null	null
5937_ttx: bool	true
5938_ttx: uint	12
5939_ttx: int	12
5940_ttx: double	3.14
5941_ttx: stringany	"a"
5942_ttx: stringint	"1"
5943_ttx: stringdecimal	"3.14"
5944_ttx: object	{"a": 3}
5945_ttx: array	[1, 2]
5946_ttx: opaque_mysql_type_decimal	3.14
5947_ttx: opaque_mysql_type_set	"b,c"
5948_ttx: opaque_mysql_type_enum	"b"
5949_ttx: opaque_mysql_type_date	"2015-01-15"
5950_ttx: opaque_mysql_type_time	"23:24:25.000000"
5951_ttx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5952_ttx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5953_ttx: opaque_mysql_type_bit	"base64:type15:yv4="
5954_ttx: opaque_mysql_type_year	1992
5955_ttx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5956_ttx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5957_ttx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5958_ttx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5959_ttx: opaque_mysql_type_varbinary	NULL
5960_ttx: opaque_mysql_type_binary	NULL
5961_ttx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5962_ttx: opaque_mysql_type_string	NULL
5963_ttx: opaque_mysql_type_var_string	NULL
5964select c, _blb from at
5965where c like '_blb%';
5966c	_blb
5967_blb: null	null
5968_blb: bool	true
5969_blb: uint	12
5970_blb: int	12
5971_blb: double	3.14
5972_blb: stringany	"a"
5973_blb: stringint	"1"
5974_blb: stringdecimal	"3.14"
5975_blb: object	{"a": 3}
5976_blb: array	[1, 2]
5977_blb: opaque_mysql_type_decimal	3.14
5978_blb: opaque_mysql_type_set	"b,c"
5979_blb: opaque_mysql_type_enum	"b"
5980_blb: opaque_mysql_type_date	"2015-01-15"
5981_blb: opaque_mysql_type_time	"23:24:25.000000"
5982_blb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
5983_blb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
5984_blb: opaque_mysql_type_bit	"base64:type15:yv4="
5985_blb: opaque_mysql_type_year	1992
5986_blb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
5987_blb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
5988_blb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
5989_blb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
5990_blb: opaque_mysql_type_varbinary	NULL
5991_blb: opaque_mysql_type_binary	NULL
5992_blb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
5993_blb: opaque_mysql_type_string	NULL
5994_blb: opaque_mysql_type_var_string	NULL
5995_blb: null	null
5996_blb: bool	true
5997_blb: uint	12
5998_blb: int	12
5999_blb: double	3.14
6000_blb: stringany	"a"
6001_blb: stringint	"1"
6002_blb: stringdecimal	"3.14"
6003_blb: object	{"a": 3}
6004_blb: array	[1, 2]
6005_blb: opaque_mysql_type_decimal	3.14
6006_blb: opaque_mysql_type_set	"b,c"
6007_blb: opaque_mysql_type_enum	"b"
6008_blb: opaque_mysql_type_date	"2015-01-15"
6009_blb: opaque_mysql_type_time	"23:24:25.000000"
6010_blb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6011_blb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6012_blb: opaque_mysql_type_bit	"base64:type15:yv4="
6013_blb: opaque_mysql_type_year	1992
6014_blb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6015_blb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6016_blb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6017_blb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6018_blb: opaque_mysql_type_varbinary	NULL
6019_blb: opaque_mysql_type_binary	NULL
6020_blb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6021_blb: opaque_mysql_type_string	NULL
6022_blb: opaque_mysql_type_var_string	NULL
6023_blb: null	null
6024_blb: bool	true
6025_blb: uint	12
6026_blb: int	12
6027_blb: double	3.14
6028_blb: stringany	"a"
6029_blb: stringint	"1"
6030_blb: stringdecimal	"3.14"
6031_blb: object	{"a": 3}
6032_blb: array	[1, 2]
6033_blb: opaque_mysql_type_decimal	3.14
6034_blb: opaque_mysql_type_set	"b,c"
6035_blb: opaque_mysql_type_enum	"b"
6036_blb: opaque_mysql_type_date	"2015-01-15"
6037_blb: opaque_mysql_type_time	"23:24:25.000000"
6038_blb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6039_blb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6040_blb: opaque_mysql_type_bit	"base64:type15:yv4="
6041_blb: opaque_mysql_type_year	1992
6042_blb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6043_blb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6044_blb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6045_blb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6046_blb: opaque_mysql_type_varbinary	NULL
6047_blb: opaque_mysql_type_binary	NULL
6048_blb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6049_blb: opaque_mysql_type_string	NULL
6050_blb: opaque_mysql_type_var_string	NULL
6051select c, _txt from at
6052where c like '_txt%';
6053c	_txt
6054_txt: null	null
6055_txt: bool	true
6056_txt: uint	12
6057_txt: int	12
6058_txt: double	3.14
6059_txt: stringany	"a"
6060_txt: stringint	"1"
6061_txt: stringdecimal	"3.14"
6062_txt: object	{"a": 3}
6063_txt: array	[1, 2]
6064_txt: opaque_mysql_type_decimal	3.14
6065_txt: opaque_mysql_type_set	"b,c"
6066_txt: opaque_mysql_type_enum	"b"
6067_txt: opaque_mysql_type_date	"2015-01-15"
6068_txt: opaque_mysql_type_time	"23:24:25.000000"
6069_txt: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6070_txt: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6071_txt: opaque_mysql_type_bit	"base64:type15:yv4="
6072_txt: opaque_mysql_type_year	1992
6073_txt: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6074_txt: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6075_txt: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6076_txt: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6077_txt: opaque_mysql_type_varbinary	NULL
6078_txt: opaque_mysql_type_binary	NULL
6079_txt: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6080_txt: opaque_mysql_type_string	NULL
6081_txt: opaque_mysql_type_var_string	NULL
6082_txt: null	null
6083_txt: bool	true
6084_txt: uint	12
6085_txt: int	12
6086_txt: double	3.14
6087_txt: stringany	"a"
6088_txt: stringint	"1"
6089_txt: stringdecimal	"3.14"
6090_txt: object	{"a": 3}
6091_txt: array	[1, 2]
6092_txt: opaque_mysql_type_decimal	3.14
6093_txt: opaque_mysql_type_set	"b,c"
6094_txt: opaque_mysql_type_enum	"b"
6095_txt: opaque_mysql_type_date	"2015-01-15"
6096_txt: opaque_mysql_type_time	"23:24:25.000000"
6097_txt: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6098_txt: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6099_txt: opaque_mysql_type_bit	"base64:type15:yv4="
6100_txt: opaque_mysql_type_year	1992
6101_txt: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6102_txt: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6103_txt: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6104_txt: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6105_txt: opaque_mysql_type_varbinary	NULL
6106_txt: opaque_mysql_type_binary	NULL
6107_txt: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6108_txt: opaque_mysql_type_string	NULL
6109_txt: opaque_mysql_type_var_string	NULL
6110_txt: null	null
6111_txt: bool	true
6112_txt: uint	12
6113_txt: int	12
6114_txt: double	3.14
6115_txt: stringany	"a"
6116_txt: stringint	"1"
6117_txt: stringdecimal	"3.14"
6118_txt: object	{"a": 3}
6119_txt: array	[1, 2]
6120_txt: opaque_mysql_type_decimal	3.14
6121_txt: opaque_mysql_type_set	"b,c"
6122_txt: opaque_mysql_type_enum	"b"
6123_txt: opaque_mysql_type_date	"2015-01-15"
6124_txt: opaque_mysql_type_time	"23:24:25.000000"
6125_txt: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6126_txt: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6127_txt: opaque_mysql_type_bit	"base64:type15:yv4="
6128_txt: opaque_mysql_type_year	1992
6129_txt: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6130_txt: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6131_txt: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6132_txt: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6133_txt: opaque_mysql_type_varbinary	NULL
6134_txt: opaque_mysql_type_binary	NULL
6135_txt: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6136_txt: opaque_mysql_type_string	NULL
6137_txt: opaque_mysql_type_var_string	NULL
6138select c, _mbb from at
6139where c like '_mbb%';
6140c	_mbb
6141_mbb: null	null
6142_mbb: bool	true
6143_mbb: uint	12
6144_mbb: int	12
6145_mbb: double	3.14
6146_mbb: stringany	"a"
6147_mbb: stringint	"1"
6148_mbb: stringdecimal	"3.14"
6149_mbb: object	{"a": 3}
6150_mbb: array	[1, 2]
6151_mbb: opaque_mysql_type_decimal	3.14
6152_mbb: opaque_mysql_type_set	"b,c"
6153_mbb: opaque_mysql_type_enum	"b"
6154_mbb: opaque_mysql_type_date	"2015-01-15"
6155_mbb: opaque_mysql_type_time	"23:24:25.000000"
6156_mbb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6157_mbb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6158_mbb: opaque_mysql_type_bit	"base64:type15:yv4="
6159_mbb: opaque_mysql_type_year	1992
6160_mbb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6161_mbb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6162_mbb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6163_mbb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6164_mbb: opaque_mysql_type_varbinary	NULL
6165_mbb: opaque_mysql_type_binary	NULL
6166_mbb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6167_mbb: opaque_mysql_type_string	NULL
6168_mbb: opaque_mysql_type_var_string	NULL
6169_mbb: null	null
6170_mbb: bool	true
6171_mbb: uint	12
6172_mbb: int	12
6173_mbb: double	3.14
6174_mbb: stringany	"a"
6175_mbb: stringint	"1"
6176_mbb: stringdecimal	"3.14"
6177_mbb: object	{"a": 3}
6178_mbb: array	[1, 2]
6179_mbb: opaque_mysql_type_decimal	3.14
6180_mbb: opaque_mysql_type_set	"b,c"
6181_mbb: opaque_mysql_type_enum	"b"
6182_mbb: opaque_mysql_type_date	"2015-01-15"
6183_mbb: opaque_mysql_type_time	"23:24:25.000000"
6184_mbb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6185_mbb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6186_mbb: opaque_mysql_type_bit	"base64:type15:yv4="
6187_mbb: opaque_mysql_type_year	1992
6188_mbb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6189_mbb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6190_mbb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6191_mbb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6192_mbb: opaque_mysql_type_varbinary	NULL
6193_mbb: opaque_mysql_type_binary	NULL
6194_mbb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6195_mbb: opaque_mysql_type_string	NULL
6196_mbb: opaque_mysql_type_var_string	NULL
6197_mbb: null	null
6198_mbb: bool	true
6199_mbb: uint	12
6200_mbb: int	12
6201_mbb: double	3.14
6202_mbb: stringany	"a"
6203_mbb: stringint	"1"
6204_mbb: stringdecimal	"3.14"
6205_mbb: object	{"a": 3}
6206_mbb: array	[1, 2]
6207_mbb: opaque_mysql_type_decimal	3.14
6208_mbb: opaque_mysql_type_set	"b,c"
6209_mbb: opaque_mysql_type_enum	"b"
6210_mbb: opaque_mysql_type_date	"2015-01-15"
6211_mbb: opaque_mysql_type_time	"23:24:25.000000"
6212_mbb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6213_mbb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6214_mbb: opaque_mysql_type_bit	"base64:type15:yv4="
6215_mbb: opaque_mysql_type_year	1992
6216_mbb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6217_mbb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6218_mbb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6219_mbb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6220_mbb: opaque_mysql_type_varbinary	NULL
6221_mbb: opaque_mysql_type_binary	NULL
6222_mbb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6223_mbb: opaque_mysql_type_string	NULL
6224_mbb: opaque_mysql_type_var_string	NULL
6225select c, _mtx from at
6226where c like '_mtx%';
6227c	_mtx
6228_mtx: null	null
6229_mtx: bool	true
6230_mtx: uint	12
6231_mtx: int	12
6232_mtx: double	3.14
6233_mtx: stringany	"a"
6234_mtx: stringint	"1"
6235_mtx: stringdecimal	"3.14"
6236_mtx: object	{"a": 3}
6237_mtx: array	[1, 2]
6238_mtx: opaque_mysql_type_decimal	3.14
6239_mtx: opaque_mysql_type_set	"b,c"
6240_mtx: opaque_mysql_type_enum	"b"
6241_mtx: opaque_mysql_type_date	"2015-01-15"
6242_mtx: opaque_mysql_type_time	"23:24:25.000000"
6243_mtx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6244_mtx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6245_mtx: opaque_mysql_type_bit	"base64:type15:yv4="
6246_mtx: opaque_mysql_type_year	1992
6247_mtx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6248_mtx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6249_mtx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6250_mtx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6251_mtx: opaque_mysql_type_varbinary	NULL
6252_mtx: opaque_mysql_type_binary	NULL
6253_mtx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6254_mtx: opaque_mysql_type_string	NULL
6255_mtx: opaque_mysql_type_var_string	NULL
6256_mtx: null	null
6257_mtx: bool	true
6258_mtx: uint	12
6259_mtx: int	12
6260_mtx: double	3.14
6261_mtx: stringany	"a"
6262_mtx: stringint	"1"
6263_mtx: stringdecimal	"3.14"
6264_mtx: object	{"a": 3}
6265_mtx: array	[1, 2]
6266_mtx: opaque_mysql_type_decimal	3.14
6267_mtx: opaque_mysql_type_set	"b,c"
6268_mtx: opaque_mysql_type_enum	"b"
6269_mtx: opaque_mysql_type_date	"2015-01-15"
6270_mtx: opaque_mysql_type_time	"23:24:25.000000"
6271_mtx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6272_mtx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6273_mtx: opaque_mysql_type_bit	"base64:type15:yv4="
6274_mtx: opaque_mysql_type_year	1992
6275_mtx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6276_mtx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6277_mtx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6278_mtx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6279_mtx: opaque_mysql_type_varbinary	NULL
6280_mtx: opaque_mysql_type_binary	NULL
6281_mtx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6282_mtx: opaque_mysql_type_string	NULL
6283_mtx: opaque_mysql_type_var_string	NULL
6284_mtx: null	null
6285_mtx: bool	true
6286_mtx: uint	12
6287_mtx: int	12
6288_mtx: double	3.14
6289_mtx: stringany	"a"
6290_mtx: stringint	"1"
6291_mtx: stringdecimal	"3.14"
6292_mtx: object	{"a": 3}
6293_mtx: array	[1, 2]
6294_mtx: opaque_mysql_type_decimal	3.14
6295_mtx: opaque_mysql_type_set	"b,c"
6296_mtx: opaque_mysql_type_enum	"b"
6297_mtx: opaque_mysql_type_date	"2015-01-15"
6298_mtx: opaque_mysql_type_time	"23:24:25.000000"
6299_mtx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6300_mtx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6301_mtx: opaque_mysql_type_bit	"base64:type15:yv4="
6302_mtx: opaque_mysql_type_year	1992
6303_mtx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6304_mtx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6305_mtx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6306_mtx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6307_mtx: opaque_mysql_type_varbinary	NULL
6308_mtx: opaque_mysql_type_binary	NULL
6309_mtx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6310_mtx: opaque_mysql_type_string	NULL
6311_mtx: opaque_mysql_type_var_string	NULL
6312select c, _lbb from at
6313where c like '_lbb%';
6314c	_lbb
6315_lbb: null	null
6316_lbb: bool	true
6317_lbb: uint	12
6318_lbb: int	12
6319_lbb: double	3.14
6320_lbb: stringany	"a"
6321_lbb: stringint	"1"
6322_lbb: stringdecimal	"3.14"
6323_lbb: object	{"a": 3}
6324_lbb: array	[1, 2]
6325_lbb: opaque_mysql_type_decimal	3.14
6326_lbb: opaque_mysql_type_set	"b,c"
6327_lbb: opaque_mysql_type_enum	"b"
6328_lbb: opaque_mysql_type_date	"2015-01-15"
6329_lbb: opaque_mysql_type_time	"23:24:25.000000"
6330_lbb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6331_lbb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6332_lbb: opaque_mysql_type_bit	"base64:type15:yv4="
6333_lbb: opaque_mysql_type_year	1992
6334_lbb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6335_lbb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6336_lbb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6337_lbb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6338_lbb: opaque_mysql_type_varbinary	NULL
6339_lbb: opaque_mysql_type_binary	NULL
6340_lbb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6341_lbb: opaque_mysql_type_string	NULL
6342_lbb: opaque_mysql_type_var_string	NULL
6343_lbb: null	null
6344_lbb: bool	true
6345_lbb: uint	12
6346_lbb: int	12
6347_lbb: double	3.14
6348_lbb: stringany	"a"
6349_lbb: stringint	"1"
6350_lbb: stringdecimal	"3.14"
6351_lbb: object	{"a": 3}
6352_lbb: array	[1, 2]
6353_lbb: opaque_mysql_type_decimal	3.14
6354_lbb: opaque_mysql_type_set	"b,c"
6355_lbb: opaque_mysql_type_enum	"b"
6356_lbb: opaque_mysql_type_date	"2015-01-15"
6357_lbb: opaque_mysql_type_time	"23:24:25.000000"
6358_lbb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6359_lbb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6360_lbb: opaque_mysql_type_bit	"base64:type15:yv4="
6361_lbb: opaque_mysql_type_year	1992
6362_lbb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6363_lbb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6364_lbb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6365_lbb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6366_lbb: opaque_mysql_type_varbinary	NULL
6367_lbb: opaque_mysql_type_binary	NULL
6368_lbb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6369_lbb: opaque_mysql_type_string	NULL
6370_lbb: opaque_mysql_type_var_string	NULL
6371_lbb: null	null
6372_lbb: bool	true
6373_lbb: uint	12
6374_lbb: int	12
6375_lbb: double	3.14
6376_lbb: stringany	"a"
6377_lbb: stringint	"1"
6378_lbb: stringdecimal	"3.14"
6379_lbb: object	{"a": 3}
6380_lbb: array	[1, 2]
6381_lbb: opaque_mysql_type_decimal	3.14
6382_lbb: opaque_mysql_type_set	"b,c"
6383_lbb: opaque_mysql_type_enum	"b"
6384_lbb: opaque_mysql_type_date	"2015-01-15"
6385_lbb: opaque_mysql_type_time	"23:24:25.000000"
6386_lbb: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6387_lbb: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6388_lbb: opaque_mysql_type_bit	"base64:type15:yv4="
6389_lbb: opaque_mysql_type_year	1992
6390_lbb: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6391_lbb: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6392_lbb: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6393_lbb: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6394_lbb: opaque_mysql_type_varbinary	NULL
6395_lbb: opaque_mysql_type_binary	NULL
6396_lbb: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6397_lbb: opaque_mysql_type_string	NULL
6398_lbb: opaque_mysql_type_var_string	NULL
6399select c, _ltx from at
6400where c like '_ltx%';
6401c	_ltx
6402_ltx: null	null
6403_ltx: bool	true
6404_ltx: uint	12
6405_ltx: int	12
6406_ltx: double	3.14
6407_ltx: stringany	"a"
6408_ltx: stringint	"1"
6409_ltx: stringdecimal	"3.14"
6410_ltx: object	{"a": 3}
6411_ltx: array	[1, 2]
6412_ltx: opaque_mysql_type_decimal	3.14
6413_ltx: opaque_mysql_type_set	"b,c"
6414_ltx: opaque_mysql_type_enum	"b"
6415_ltx: opaque_mysql_type_date	"2015-01-15"
6416_ltx: opaque_mysql_type_time	"23:24:25.000000"
6417_ltx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6418_ltx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6419_ltx: opaque_mysql_type_bit	"base64:type15:yv4="
6420_ltx: opaque_mysql_type_year	1992
6421_ltx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6422_ltx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6423_ltx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6424_ltx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6425_ltx: opaque_mysql_type_varbinary	NULL
6426_ltx: opaque_mysql_type_binary	NULL
6427_ltx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6428_ltx: opaque_mysql_type_string	NULL
6429_ltx: opaque_mysql_type_var_string	NULL
6430_ltx: null	null
6431_ltx: bool	true
6432_ltx: uint	12
6433_ltx: int	12
6434_ltx: double	3.14
6435_ltx: stringany	"a"
6436_ltx: stringint	"1"
6437_ltx: stringdecimal	"3.14"
6438_ltx: object	{"a": 3}
6439_ltx: array	[1, 2]
6440_ltx: opaque_mysql_type_decimal	3.14
6441_ltx: opaque_mysql_type_set	"b,c"
6442_ltx: opaque_mysql_type_enum	"b"
6443_ltx: opaque_mysql_type_date	"2015-01-15"
6444_ltx: opaque_mysql_type_time	"23:24:25.000000"
6445_ltx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6446_ltx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6447_ltx: opaque_mysql_type_bit	"base64:type15:yv4="
6448_ltx: opaque_mysql_type_year	1992
6449_ltx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6450_ltx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6451_ltx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6452_ltx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6453_ltx: opaque_mysql_type_varbinary	NULL
6454_ltx: opaque_mysql_type_binary	NULL
6455_ltx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6456_ltx: opaque_mysql_type_string	NULL
6457_ltx: opaque_mysql_type_var_string	NULL
6458_ltx: null	null
6459_ltx: bool	true
6460_ltx: uint	12
6461_ltx: int	12
6462_ltx: double	3.14
6463_ltx: stringany	"a"
6464_ltx: stringint	"1"
6465_ltx: stringdecimal	"3.14"
6466_ltx: object	{"a": 3}
6467_ltx: array	[1, 2]
6468_ltx: opaque_mysql_type_decimal	3.14
6469_ltx: opaque_mysql_type_set	"b,c"
6470_ltx: opaque_mysql_type_enum	"b"
6471_ltx: opaque_mysql_type_date	"2015-01-15"
6472_ltx: opaque_mysql_type_time	"23:24:25.000000"
6473_ltx: opaque_mysql_type_datetime	"2015-01-15 23:24:25.000000"
6474_ltx: opaque_mysql_type_geom	{"type": "Point", "coordinates": [1.0, 1.0]}
6475_ltx: opaque_mysql_type_bit	"base64:type15:yv4="
6476_ltx: opaque_mysql_type_year	1992
6477_ltx: opaque_mysql_type_blob	"base64:type252:yv66vg=="
6478_ltx: opaque_mysql_type_longblob	"base64:type251:yv66vg=="
6479_ltx: opaque_mysql_type_mediumblob	"base64:type250:yv66vg=="
6480_ltx: opaque_mysql_type_tinyblob	"base64:type249:yv66vg=="
6481_ltx: opaque_mysql_type_varbinary	NULL
6482_ltx: opaque_mysql_type_binary	NULL
6483_ltx: opaque_mysql_type_varchar	"base64:type15:Zm9v"
6484_ltx: opaque_mysql_type_string	NULL
6485_ltx: opaque_mysql_type_var_string	NULL
6486select c, _enu from at
6487where c like '_enu%';
6488c	_enu
6489_enu: opaque_mysql_type_varbinary	NULL
6490_enu: opaque_mysql_type_binary	NULL
6491_enu: opaque_mysql_type_string	NULL
6492_enu: opaque_mysql_type_var_string	NULL
6493_enu: opaque_mysql_type_varbinary	NULL
6494_enu: opaque_mysql_type_binary	NULL
6495_enu: opaque_mysql_type_string	NULL
6496_enu: opaque_mysql_type_var_string	NULL
6497_enu: opaque_mysql_type_varbinary	NULL
6498_enu: opaque_mysql_type_binary	NULL
6499_enu: opaque_mysql_type_string	NULL
6500_enu: opaque_mysql_type_var_string	NULL
6501select c, _set from at
6502where c like '_set%';
6503c	_set
6504_set: opaque_mysql_type_varbinary	NULL
6505_set: opaque_mysql_type_binary	NULL
6506_set: opaque_mysql_type_string	NULL
6507_set: opaque_mysql_type_var_string	NULL
6508_set: opaque_mysql_type_varbinary	NULL
6509_set: opaque_mysql_type_binary	NULL
6510_set: opaque_mysql_type_string	NULL
6511_set: opaque_mysql_type_var_string	NULL
6512_set: opaque_mysql_type_varbinary	NULL
6513_set: opaque_mysql_type_binary	NULL
6514_set: opaque_mysql_type_string	NULL
6515_set: opaque_mysql_type_var_string	NULL
6516select c, _geo from at
6517where c like '_geo%';
6518c	_geo
6519_geo: opaque_mysql_type_varbinary	NULL
6520_geo: opaque_mysql_type_binary	NULL
6521_geo: opaque_mysql_type_string	NULL
6522_geo: opaque_mysql_type_var_string	NULL
6523_geo: opaque_mysql_type_varbinary	NULL
6524_geo: opaque_mysql_type_binary	NULL
6525_geo: opaque_mysql_type_string	NULL
6526_geo: opaque_mysql_type_var_string	NULL
6527_geo: opaque_mysql_type_varbinary	NULL
6528_geo: opaque_mysql_type_binary	NULL
6529_geo: opaque_mysql_type_string	NULL
6530_geo: opaque_mysql_type_var_string	NULL
6531select c, _pnt from at
6532where c like '_pnt%';
6533c	_pnt
6534_pnt: opaque_mysql_type_varbinary	NULL
6535_pnt: opaque_mysql_type_binary	NULL
6536_pnt: opaque_mysql_type_string	NULL
6537_pnt: opaque_mysql_type_var_string	NULL
6538_pnt: opaque_mysql_type_varbinary	NULL
6539_pnt: opaque_mysql_type_binary	NULL
6540_pnt: opaque_mysql_type_string	NULL
6541_pnt: opaque_mysql_type_var_string	NULL
6542_pnt: opaque_mysql_type_varbinary	NULL
6543_pnt: opaque_mysql_type_binary	NULL
6544_pnt: opaque_mysql_type_string	NULL
6545_pnt: opaque_mysql_type_var_string	NULL
6546select c, _lst from at
6547where c like '_lst%';
6548c	_lst
6549_lst: opaque_mysql_type_varbinary	NULL
6550_lst: opaque_mysql_type_binary	NULL
6551_lst: opaque_mysql_type_string	NULL
6552_lst: opaque_mysql_type_var_string	NULL
6553_lst: opaque_mysql_type_varbinary	NULL
6554_lst: opaque_mysql_type_binary	NULL
6555_lst: opaque_mysql_type_string	NULL
6556_lst: opaque_mysql_type_var_string	NULL
6557_lst: opaque_mysql_type_varbinary	NULL
6558_lst: opaque_mysql_type_binary	NULL
6559_lst: opaque_mysql_type_string	NULL
6560_lst: opaque_mysql_type_var_string	NULL
6561select c, _pol from at
6562where c like '_pol%';
6563c	_pol
6564_pol: opaque_mysql_type_varbinary	NULL
6565_pol: opaque_mysql_type_binary	NULL
6566_pol: opaque_mysql_type_string	NULL
6567_pol: opaque_mysql_type_var_string	NULL
6568_pol: opaque_mysql_type_varbinary	NULL
6569_pol: opaque_mysql_type_binary	NULL
6570_pol: opaque_mysql_type_string	NULL
6571_pol: opaque_mysql_type_var_string	NULL
6572_pol: opaque_mysql_type_varbinary	NULL
6573_pol: opaque_mysql_type_binary	NULL
6574_pol: opaque_mysql_type_string	NULL
6575_pol: opaque_mysql_type_var_string	NULL
6576select c, _mpt from at
6577where c like '_mpt%';
6578c	_mpt
6579_mpt: opaque_mysql_type_varbinary	NULL
6580_mpt: opaque_mysql_type_binary	NULL
6581_mpt: opaque_mysql_type_string	NULL
6582_mpt: opaque_mysql_type_var_string	NULL
6583_mpt: opaque_mysql_type_varbinary	NULL
6584_mpt: opaque_mysql_type_binary	NULL
6585_mpt: opaque_mysql_type_string	NULL
6586_mpt: opaque_mysql_type_var_string	NULL
6587_mpt: opaque_mysql_type_varbinary	NULL
6588_mpt: opaque_mysql_type_binary	NULL
6589_mpt: opaque_mysql_type_string	NULL
6590_mpt: opaque_mysql_type_var_string	NULL
6591select c, _mls from at
6592where c like '_mls%';
6593c	_mls
6594_mls: opaque_mysql_type_varbinary	NULL
6595_mls: opaque_mysql_type_binary	NULL
6596_mls: opaque_mysql_type_string	NULL
6597_mls: opaque_mysql_type_var_string	NULL
6598_mls: opaque_mysql_type_varbinary	NULL
6599_mls: opaque_mysql_type_binary	NULL
6600_mls: opaque_mysql_type_string	NULL
6601_mls: opaque_mysql_type_var_string	NULL
6602_mls: opaque_mysql_type_varbinary	NULL
6603_mls: opaque_mysql_type_binary	NULL
6604_mls: opaque_mysql_type_string	NULL
6605_mls: opaque_mysql_type_var_string	NULL
6606select c, _mpy from at
6607where c like '_mpy%';
6608c	_mpy
6609_mpy: opaque_mysql_type_varbinary	NULL
6610_mpy: opaque_mysql_type_binary	NULL
6611_mpy: opaque_mysql_type_string	NULL
6612_mpy: opaque_mysql_type_var_string	NULL
6613_mpy: opaque_mysql_type_varbinary	NULL
6614_mpy: opaque_mysql_type_binary	NULL
6615_mpy: opaque_mysql_type_string	NULL
6616_mpy: opaque_mysql_type_var_string	NULL
6617_mpy: opaque_mysql_type_varbinary	NULL
6618_mpy: opaque_mysql_type_binary	NULL
6619_mpy: opaque_mysql_type_string	NULL
6620_mpy: opaque_mysql_type_var_string	NULL
6621select c, _gco from at
6622where c like '_gco%';
6623c	_gco
6624_gco: opaque_mysql_type_varbinary	NULL
6625_gco: opaque_mysql_type_binary	NULL
6626_gco: opaque_mysql_type_string	NULL
6627_gco: opaque_mysql_type_var_string	NULL
6628_gco: opaque_mysql_type_varbinary	NULL
6629_gco: opaque_mysql_type_binary	NULL
6630_gco: opaque_mysql_type_string	NULL
6631_gco: opaque_mysql_type_var_string	NULL
6632_gco: opaque_mysql_type_varbinary	NULL
6633_gco: opaque_mysql_type_binary	NULL
6634_gco: opaque_mysql_type_string	NULL
6635_gco: opaque_mysql_type_var_string	NULL
6636# Explicit coercions (CAST)
6637# ----------------------------------------------------------------------
6638# CAST to BINARY[(N)]
6639# CAST to CHAR[(N)]
6640# CAST to DATE
6641# CAST to DATETIME
6642# CAST to TIME
6643# CAST to DECIMAL[(M[,D])]
6644# CAST to SIGNED [INTEGER]
6645# CAST to UNSIGNED [INTEGER]
6646# CAST to JSON
6647# ----------------------------------------------------------------------
6648#  C A S T   F R O M   J S O N   C O L U M N
6649# ----------------------------------------------------------------------
6650select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t;
6651concat('From JSON col ',c, ' as BINARY(35)')	replace(cast(j as BINARY(35)), '\0', '')
6652From JSON col null as BINARY(35)	null
6653From JSON col bool as BINARY(35)	true
6654From JSON col uint as BINARY(35)	12
6655From JSON col int as BINARY(35)	12
6656From JSON col double as BINARY(35)	3.14
6657From JSON col stringany as BINARY(35)	"a"
6658From JSON col stringint as BINARY(35)	"1"
6659From JSON col stringdecimal as BINARY(35)	"3.14"
6660From JSON col object as BINARY(35)	{"a": 3}
6661From JSON col array as BINARY(35)	[1, 2]
6662From JSON col opaque_mysql_type_decimal as BINARY(35)	3.14
6663From JSON col opaque_mysql_type_set as BINARY(35)	"b,c"
6664From JSON col opaque_mysql_type_enum as BINARY(35)	"b"
6665From JSON col opaque_mysql_type_date as BINARY(35)	"2015-01-15"
6666From JSON col opaque_mysql_type_time as BINARY(35)	"23:24:25.000000"
6667From JSON col opaque_mysql_type_datetime as BINARY(35)	"2015-01-15 23:24:25.000000"
6668From JSON col opaque_mysql_type_geom as BINARY(35)	{"type": "Point", "coordinates": [1
6669From JSON col opaque_mysql_type_bit as BINARY(35)	"base64:type15:yv4="
6670From JSON col opaque_mysql_type_year as BINARY(35)	1992
6671From JSON col opaque_mysql_type_blob as BINARY(35)	"base64:type252:yv66vg=="
6672From JSON col opaque_mysql_type_longblob as BINARY(35)	"base64:type251:yv66vg=="
6673From JSON col opaque_mysql_type_mediumblob as BINARY(35)	"base64:type250:yv66vg=="
6674From JSON col opaque_mysql_type_tinyblob as BINARY(35)	"base64:type249:yv66vg=="
6675From JSON col opaque_mysql_type_varbinary as BINARY(35)	NULL
6676From JSON col opaque_mysql_type_binary as BINARY(35)	NULL
6677From JSON col opaque_mysql_type_varchar as BINARY(35)	"base64:type15:Zm9v"
6678From JSON col opaque_mysql_type_string as BINARY(35)	NULL
6679From JSON col opaque_mysql_type_var_string as BINARY(35)	NULL
6680Warnings:
6681Warning	1292	Truncated incorrect BINARY(35) value: '{"type": "Point", "coordinates": [1.0, 1.0]}'
6682select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t;
6683concat('From JSON col ',c, ' as CHAR(35))')	cast(j as CHAR(35))
6684From JSON col null as CHAR(35))	null
6685From JSON col bool as CHAR(35))	true
6686From JSON col uint as CHAR(35))	12
6687From JSON col int as CHAR(35))	12
6688From JSON col double as CHAR(35))	3.14
6689From JSON col stringany as CHAR(35))	"a"
6690From JSON col stringint as CHAR(35))	"1"
6691From JSON col stringdecimal as CHAR(35))	"3.14"
6692From JSON col object as CHAR(35))	{"a": 3}
6693From JSON col array as CHAR(35))	[1, 2]
6694From JSON col opaque_mysql_type_decimal as CHAR(35))	3.14
6695From JSON col opaque_mysql_type_set as CHAR(35))	"b,c"
6696From JSON col opaque_mysql_type_enum as CHAR(35))	"b"
6697From JSON col opaque_mysql_type_date as CHAR(35))	"2015-01-15"
6698From JSON col opaque_mysql_type_time as CHAR(35))	"23:24:25.000000"
6699From JSON col opaque_mysql_type_datetime as CHAR(35))	"2015-01-15 23:24:25.000000"
6700From JSON col opaque_mysql_type_geom as CHAR(35))	{"type": "Point", "coordinates": [1
6701From JSON col opaque_mysql_type_bit as CHAR(35))	"base64:type15:yv4="
6702From JSON col opaque_mysql_type_year as CHAR(35))	1992
6703From JSON col opaque_mysql_type_blob as CHAR(35))	"base64:type252:yv66vg=="
6704From JSON col opaque_mysql_type_longblob as CHAR(35))	"base64:type251:yv66vg=="
6705From JSON col opaque_mysql_type_mediumblob as CHAR(35))	"base64:type250:yv66vg=="
6706From JSON col opaque_mysql_type_tinyblob as CHAR(35))	"base64:type249:yv66vg=="
6707From JSON col opaque_mysql_type_varbinary as CHAR(35))	NULL
6708From JSON col opaque_mysql_type_binary as CHAR(35))	NULL
6709From JSON col opaque_mysql_type_varchar as CHAR(35))	"base64:type15:Zm9v"
6710From JSON col opaque_mysql_type_string as CHAR(35))	NULL
6711From JSON col opaque_mysql_type_var_string as CHAR(35))	NULL
6712Warnings:
6713Warning	1292	Truncated incorrect CHAR(35) value: '{"type": "Point", "coordinates": [1.0, 1.0]}'
6714select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='null';
6715concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6716From JSON col null as DATE	NULL
6717Warnings:
6718Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6719select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='bool';
6720concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6721From JSON col bool as DATE	NULL
6722Warnings:
6723Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6724select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='uint';
6725concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6726From JSON col uint as DATE	NULL
6727Warnings:
6728Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6729select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='int';
6730concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6731From JSON col int as DATE	NULL
6732Warnings:
6733Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6734select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='double';
6735concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6736From JSON col double as DATE	NULL
6737Warnings:
6738Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6739select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='stringany';
6740concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6741From JSON col stringany as DATE	NULL
6742Warnings:
6743Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6744select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='stringint';
6745concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6746From JSON col stringint as DATE	NULL
6747Warnings:
6748Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6749select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='stringdecimal';
6750concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6751From JSON col stringdecimal as DATE	NULL
6752Warnings:
6753Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6754select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='object';
6755concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6756From JSON col object as DATE	NULL
6757Warnings:
6758Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6759select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='array';
6760concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6761From JSON col array as DATE	NULL
6762Warnings:
6763Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6764select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_decimal';
6765concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6766From JSON col opaque_mysql_type_decimal as DATE	NULL
6767Warnings:
6768Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6769select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_set';
6770concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6771From JSON col opaque_mysql_type_set as DATE	NULL
6772Warnings:
6773Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6774select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_enum';
6775concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6776From JSON col opaque_mysql_type_enum as DATE	NULL
6777Warnings:
6778Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6779select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_date';
6780concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6781From JSON col opaque_mysql_type_date as DATE	2015-01-15
6782select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_time';
6783concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6784From JSON col opaque_mysql_type_time as DATE	NULL
6785Warnings:
6786Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6787select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_datetime';
6788concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6789From JSON col opaque_mysql_type_datetime as DATE	2015-01-15
6790select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_geom';
6791concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6792From JSON col opaque_mysql_type_geom as DATE	NULL
6793Warnings:
6794Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6795select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_bit';
6796concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6797From JSON col opaque_mysql_type_bit as DATE	NULL
6798Warnings:
6799Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6800select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_year';
6801concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6802From JSON col opaque_mysql_type_year as DATE	NULL
6803Warnings:
6804Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6805select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_blob';
6806concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6807From JSON col opaque_mysql_type_blob as DATE	NULL
6808Warnings:
6809Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6810select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_longblob';
6811concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6812From JSON col opaque_mysql_type_longblob as DATE	NULL
6813Warnings:
6814Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6815select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_mediumblob';
6816concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6817From JSON col opaque_mysql_type_mediumblob as DATE	NULL
6818Warnings:
6819Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6820select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_tinyblob';
6821concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6822From JSON col opaque_mysql_type_tinyblob as DATE	NULL
6823Warnings:
6824Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6825select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_varbinary';
6826concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6827From JSON col opaque_mysql_type_varbinary as DATE	NULL
6828select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_binary';
6829concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6830From JSON col opaque_mysql_type_binary as DATE	NULL
6831select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_varchar';
6832concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6833From JSON col opaque_mysql_type_varchar as DATE	NULL
6834Warnings:
6835Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6836select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_string';
6837concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6838From JSON col opaque_mysql_type_string as DATE	NULL
6839select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_var_string';
6840concat('From JSON col ',c, ' as DATE')	cast(j as DATE)
6841From JSON col opaque_mysql_type_var_string as DATE	NULL
6842select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='null';
6843concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6844From JSON col null as DATETIME	NULL
6845Warnings:
6846Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6847select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='bool';
6848concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6849From JSON col bool as DATETIME	NULL
6850Warnings:
6851Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6852select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='uint';
6853concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6854From JSON col uint as DATETIME	NULL
6855Warnings:
6856Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6857select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='int';
6858concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6859From JSON col int as DATETIME	NULL
6860Warnings:
6861Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6862select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='double';
6863concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6864From JSON col double as DATETIME	NULL
6865Warnings:
6866Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6867select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='stringany';
6868concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6869From JSON col stringany as DATETIME	NULL
6870Warnings:
6871Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6872select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='stringint';
6873concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6874From JSON col stringint as DATETIME	NULL
6875Warnings:
6876Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6877select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='stringdecimal';
6878concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6879From JSON col stringdecimal as DATETIME	NULL
6880Warnings:
6881Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6882select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='object';
6883concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6884From JSON col object as DATETIME	NULL
6885Warnings:
6886Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6887select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='array';
6888concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6889From JSON col array as DATETIME	NULL
6890Warnings:
6891Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6892select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_decimal';
6893concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6894From JSON col opaque_mysql_type_decimal as DATETIME	NULL
6895Warnings:
6896Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6897select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_set';
6898concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6899From JSON col opaque_mysql_type_set as DATETIME	NULL
6900Warnings:
6901Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6902select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_enum';
6903concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6904From JSON col opaque_mysql_type_enum as DATETIME	NULL
6905Warnings:
6906Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6907select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_date';
6908concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6909From JSON col opaque_mysql_type_date as DATETIME	2015-01-15 00:00:00
6910select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_time';
6911concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6912From JSON col opaque_mysql_type_time as DATETIME	NULL
6913Warnings:
6914Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6915select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_datetime';
6916concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6917From JSON col opaque_mysql_type_datetime as DATETIME	2015-01-15 23:24:25
6918select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_geom';
6919concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6920From JSON col opaque_mysql_type_geom as DATETIME	NULL
6921Warnings:
6922Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6923select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_bit';
6924concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6925From JSON col opaque_mysql_type_bit as DATETIME	NULL
6926Warnings:
6927Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6928select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_year';
6929concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6930From JSON col opaque_mysql_type_year as DATETIME	NULL
6931Warnings:
6932Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6933select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_blob';
6934concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6935From JSON col opaque_mysql_type_blob as DATETIME	NULL
6936Warnings:
6937Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6938select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_longblob';
6939concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6940From JSON col opaque_mysql_type_longblob as DATETIME	NULL
6941Warnings:
6942Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6943select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_mediumblob';
6944concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6945From JSON col opaque_mysql_type_mediumblob as DATETIME	NULL
6946Warnings:
6947Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6948select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_tinyblob';
6949concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6950From JSON col opaque_mysql_type_tinyblob as DATETIME	NULL
6951Warnings:
6952Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6953select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_varbinary';
6954concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6955From JSON col opaque_mysql_type_varbinary as DATETIME	NULL
6956select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_binary';
6957concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6958From JSON col opaque_mysql_type_binary as DATETIME	NULL
6959select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_varchar';
6960concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6961From JSON col opaque_mysql_type_varchar as DATETIME	NULL
6962Warnings:
6963Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
6964select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_string';
6965concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6966From JSON col opaque_mysql_type_string as DATETIME	NULL
6967select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_var_string';
6968concat('From JSON col ',c, ' as DATETIME')	cast(j as DATETIME)
6969From JSON col opaque_mysql_type_var_string as DATETIME	NULL
6970select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t;
6971concat('From JSON col ',c, ' as TIME')	cast(j as TIME)
6972From JSON col null as TIME	NULL
6973From JSON col bool as TIME	NULL
6974From JSON col uint as TIME	NULL
6975From JSON col int as TIME	NULL
6976From JSON col double as TIME	NULL
6977From JSON col stringany as TIME	NULL
6978From JSON col stringint as TIME	NULL
6979From JSON col stringdecimal as TIME	NULL
6980From JSON col object as TIME	NULL
6981From JSON col array as TIME	NULL
6982From JSON col opaque_mysql_type_decimal as TIME	NULL
6983From JSON col opaque_mysql_type_set as TIME	NULL
6984From JSON col opaque_mysql_type_enum as TIME	NULL
6985From JSON col opaque_mysql_type_date as TIME	NULL
6986From JSON col opaque_mysql_type_time as TIME	23:24:25
6987From JSON col opaque_mysql_type_datetime as TIME	NULL
6988From JSON col opaque_mysql_type_geom as TIME	NULL
6989From JSON col opaque_mysql_type_bit as TIME	NULL
6990From JSON col opaque_mysql_type_year as TIME	NULL
6991From JSON col opaque_mysql_type_blob as TIME	NULL
6992From JSON col opaque_mysql_type_longblob as TIME	NULL
6993From JSON col opaque_mysql_type_mediumblob as TIME	NULL
6994From JSON col opaque_mysql_type_tinyblob as TIME	NULL
6995From JSON col opaque_mysql_type_varbinary as TIME	NULL
6996From JSON col opaque_mysql_type_binary as TIME	NULL
6997From JSON col opaque_mysql_type_varchar as TIME	NULL
6998From JSON col opaque_mysql_type_string as TIME	NULL
6999From JSON col opaque_mysql_type_var_string as TIME	NULL
7000Warnings:
7001Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
7002Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7003Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3
7004Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4
7005Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5
7006Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6
7007Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7
7008Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8
7009Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9
7010Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10
7011Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11
7012Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12
7013Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13
7014Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 14
7015Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 16
7016Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17
7017Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18
7018Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19
7019Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20
7020Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21
7021Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22
7022Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23
7023Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26
7024select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t;
7025concat('From JSON col ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
7026From JSON col null as DECIMAL(5,2)	0.00
7027From JSON col bool as DECIMAL(5,2)	1.00
7028From JSON col uint as DECIMAL(5,2)	12.00
7029From JSON col int as DECIMAL(5,2)	12.00
7030From JSON col double as DECIMAL(5,2)	3.14
7031From JSON col stringany as DECIMAL(5,2)	0.00
7032From JSON col stringint as DECIMAL(5,2)	1.00
7033From JSON col stringdecimal as DECIMAL(5,2)	3.14
7034From JSON col object as DECIMAL(5,2)	0.00
7035From JSON col array as DECIMAL(5,2)	0.00
7036From JSON col opaque_mysql_type_decimal as DECIMAL(5,2)	3.14
7037From JSON col opaque_mysql_type_set as DECIMAL(5,2)	0.00
7038From JSON col opaque_mysql_type_enum as DECIMAL(5,2)	0.00
7039From JSON col opaque_mysql_type_date as DECIMAL(5,2)	0.00
7040From JSON col opaque_mysql_type_time as DECIMAL(5,2)	0.00
7041From JSON col opaque_mysql_type_datetime as DECIMAL(5,2)	0.00
7042From JSON col opaque_mysql_type_geom as DECIMAL(5,2)	0.00
7043From JSON col opaque_mysql_type_bit as DECIMAL(5,2)	0.00
7044From JSON col opaque_mysql_type_year as DECIMAL(5,2)	999.99
7045From JSON col opaque_mysql_type_blob as DECIMAL(5,2)	0.00
7046From JSON col opaque_mysql_type_longblob as DECIMAL(5,2)	0.00
7047From JSON col opaque_mysql_type_mediumblob as DECIMAL(5,2)	0.00
7048From JSON col opaque_mysql_type_tinyblob as DECIMAL(5,2)	0.00
7049From JSON col opaque_mysql_type_varbinary as DECIMAL(5,2)	NULL
7050From JSON col opaque_mysql_type_binary as DECIMAL(5,2)	NULL
7051From JSON col opaque_mysql_type_varchar as DECIMAL(5,2)	0.00
7052From JSON col opaque_mysql_type_string as DECIMAL(5,2)	NULL
7053From JSON col opaque_mysql_type_var_string as DECIMAL(5,2)	NULL
7054Warnings:
7055Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 1
7056Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 6
7057Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 9
7058Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 10
7059Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 12
7060Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 13
7061Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 14
7062Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 15
7063Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 16
7064Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 17
7065Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 18
7066Warning	1264	Out of range value for column 'cast(j as DECIMAL(5,2))' at row 1
7067Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 20
7068Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 21
7069Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 22
7070Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 23
7071Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 26
7072select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t;
7073concat('From JSON col ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
7074From JSON col null as UNSIGNED	0
7075From JSON col bool as UNSIGNED	1
7076From JSON col uint as UNSIGNED	12
7077From JSON col int as UNSIGNED	12
7078From JSON col double as UNSIGNED	3
7079From JSON col stringany as UNSIGNED	0
7080From JSON col stringint as UNSIGNED	1
7081From JSON col stringdecimal as UNSIGNED	3
7082From JSON col object as UNSIGNED	0
7083From JSON col array as UNSIGNED	0
7084From JSON col opaque_mysql_type_decimal as UNSIGNED	3
7085From JSON col opaque_mysql_type_set as UNSIGNED	0
7086From JSON col opaque_mysql_type_enum as UNSIGNED	0
7087From JSON col opaque_mysql_type_date as UNSIGNED	0
7088From JSON col opaque_mysql_type_time as UNSIGNED	0
7089From JSON col opaque_mysql_type_datetime as UNSIGNED	0
7090From JSON col opaque_mysql_type_geom as UNSIGNED	0
7091From JSON col opaque_mysql_type_bit as UNSIGNED	0
7092From JSON col opaque_mysql_type_year as UNSIGNED	1992
7093From JSON col opaque_mysql_type_blob as UNSIGNED	0
7094From JSON col opaque_mysql_type_longblob as UNSIGNED	0
7095From JSON col opaque_mysql_type_mediumblob as UNSIGNED	0
7096From JSON col opaque_mysql_type_tinyblob as UNSIGNED	0
7097From JSON col opaque_mysql_type_varbinary as UNSIGNED	NULL
7098From JSON col opaque_mysql_type_binary as UNSIGNED	NULL
7099From JSON col opaque_mysql_type_varchar as UNSIGNED	0
7100From JSON col opaque_mysql_type_string as UNSIGNED	NULL
7101From JSON col opaque_mysql_type_var_string as UNSIGNED	NULL
7102Warnings:
7103Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
7104Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 6
7105Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 8
7106Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 9
7107Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 10
7108Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 12
7109Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 13
7110Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 14
7111Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 15
7112Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 16
7113Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 17
7114Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 18
7115Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 20
7116Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 21
7117Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 22
7118Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 23
7119Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 26
7120select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t;
7121concat('From JSON col ',c, ' as SIGNED')	cast(j as SIGNED)
7122From JSON col null as SIGNED	0
7123From JSON col bool as SIGNED	1
7124From JSON col uint as SIGNED	12
7125From JSON col int as SIGNED	12
7126From JSON col double as SIGNED	3
7127From JSON col stringany as SIGNED	0
7128From JSON col stringint as SIGNED	1
7129From JSON col stringdecimal as SIGNED	3
7130From JSON col object as SIGNED	0
7131From JSON col array as SIGNED	0
7132From JSON col opaque_mysql_type_decimal as SIGNED	3
7133From JSON col opaque_mysql_type_set as SIGNED	0
7134From JSON col opaque_mysql_type_enum as SIGNED	0
7135From JSON col opaque_mysql_type_date as SIGNED	0
7136From JSON col opaque_mysql_type_time as SIGNED	0
7137From JSON col opaque_mysql_type_datetime as SIGNED	0
7138From JSON col opaque_mysql_type_geom as SIGNED	0
7139From JSON col opaque_mysql_type_bit as SIGNED	0
7140From JSON col opaque_mysql_type_year as SIGNED	1992
7141From JSON col opaque_mysql_type_blob as SIGNED	0
7142From JSON col opaque_mysql_type_longblob as SIGNED	0
7143From JSON col opaque_mysql_type_mediumblob as SIGNED	0
7144From JSON col opaque_mysql_type_tinyblob as SIGNED	0
7145From JSON col opaque_mysql_type_varbinary as SIGNED	NULL
7146From JSON col opaque_mysql_type_binary as SIGNED	NULL
7147From JSON col opaque_mysql_type_varchar as SIGNED	0
7148From JSON col opaque_mysql_type_string as SIGNED	NULL
7149From JSON col opaque_mysql_type_var_string as SIGNED	NULL
7150Warnings:
7151Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
7152Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 6
7153Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 8
7154Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 9
7155Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 10
7156Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 12
7157Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 13
7158Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 14
7159Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 15
7160Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 16
7161Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 17
7162Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 18
7163Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 20
7164Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 21
7165Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 22
7166Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 23
7167Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 26
7168# ----------------------------------------------------------------------
7169#  C A S T   F R O M   J S O N   F U N C T I O N
7170# ----------------------------------------------------------------------
7171select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t;
7172concat('From JSON func ',c, ' as BINARY(35)')	replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '')
7173From JSON func null as BINARY(35)	null
7174From JSON func bool as BINARY(35)	true
7175From JSON func uint as BINARY(35)	12
7176From JSON func int as BINARY(35)	12
7177From JSON func double as BINARY(35)	3.14
7178From JSON func stringany as BINARY(35)	"a"
7179From JSON func stringint as BINARY(35)	"1"
7180From JSON func stringdecimal as BINARY(35)	"3.14"
7181From JSON func object as BINARY(35)	{"a": 3}
7182From JSON func array as BINARY(35)	[1, 2]
7183From JSON func opaque_mysql_type_decimal as BINARY(35)	3.14
7184From JSON func opaque_mysql_type_set as BINARY(35)	"b,c"
7185From JSON func opaque_mysql_type_enum as BINARY(35)	"b"
7186From JSON func opaque_mysql_type_date as BINARY(35)	"2015-01-15"
7187From JSON func opaque_mysql_type_time as BINARY(35)	"23:24:25.000000"
7188From JSON func opaque_mysql_type_datetime as BINARY(35)	"2015-01-15 23:24:25.000000"
7189From JSON func opaque_mysql_type_geom as BINARY(35)	{"type": "Point", "coordinates": [1
7190From JSON func opaque_mysql_type_bit as BINARY(35)	"base64:type15:yv4="
7191From JSON func opaque_mysql_type_year as BINARY(35)	1992
7192From JSON func opaque_mysql_type_blob as BINARY(35)	"base64:type252:yv66vg=="
7193From JSON func opaque_mysql_type_longblob as BINARY(35)	"base64:type251:yv66vg=="
7194From JSON func opaque_mysql_type_mediumblob as BINARY(35)	"base64:type250:yv66vg=="
7195From JSON func opaque_mysql_type_tinyblob as BINARY(35)	"base64:type249:yv66vg=="
7196From JSON func opaque_mysql_type_varbinary as BINARY(35)	NULL
7197From JSON func opaque_mysql_type_binary as BINARY(35)	NULL
7198From JSON func opaque_mysql_type_varchar as BINARY(35)	"base64:type15:Zm9v"
7199From JSON func opaque_mysql_type_string as BINARY(35)	NULL
7200From JSON func opaque_mysql_type_var_string as BINARY(35)	NULL
7201Warnings:
7202Warning	1292	Truncated incorrect BINARY(35) value: '{"type": "Point", "coordinates": [1.0, 1.0]}'
7203select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t;
7204concat('From JSON func ',c, ' as CHAR(35))')	cast(json_extract(j, '$') as CHAR(35))
7205From JSON func null as CHAR(35))	null
7206From JSON func bool as CHAR(35))	true
7207From JSON func uint as CHAR(35))	12
7208From JSON func int as CHAR(35))	12
7209From JSON func double as CHAR(35))	3.14
7210From JSON func stringany as CHAR(35))	"a"
7211From JSON func stringint as CHAR(35))	"1"
7212From JSON func stringdecimal as CHAR(35))	"3.14"
7213From JSON func object as CHAR(35))	{"a": 3}
7214From JSON func array as CHAR(35))	[1, 2]
7215From JSON func opaque_mysql_type_decimal as CHAR(35))	3.14
7216From JSON func opaque_mysql_type_set as CHAR(35))	"b,c"
7217From JSON func opaque_mysql_type_enum as CHAR(35))	"b"
7218From JSON func opaque_mysql_type_date as CHAR(35))	"2015-01-15"
7219From JSON func opaque_mysql_type_time as CHAR(35))	"23:24:25.000000"
7220From JSON func opaque_mysql_type_datetime as CHAR(35))	"2015-01-15 23:24:25.000000"
7221From JSON func opaque_mysql_type_geom as CHAR(35))	{"type": "Point", "coordinates": [1
7222From JSON func opaque_mysql_type_bit as CHAR(35))	"base64:type15:yv4="
7223From JSON func opaque_mysql_type_year as CHAR(35))	1992
7224From JSON func opaque_mysql_type_blob as CHAR(35))	"base64:type252:yv66vg=="
7225From JSON func opaque_mysql_type_longblob as CHAR(35))	"base64:type251:yv66vg=="
7226From JSON func opaque_mysql_type_mediumblob as CHAR(35))	"base64:type250:yv66vg=="
7227From JSON func opaque_mysql_type_tinyblob as CHAR(35))	"base64:type249:yv66vg=="
7228From JSON func opaque_mysql_type_varbinary as CHAR(35))	NULL
7229From JSON func opaque_mysql_type_binary as CHAR(35))	NULL
7230From JSON func opaque_mysql_type_varchar as CHAR(35))	"base64:type15:Zm9v"
7231From JSON func opaque_mysql_type_string as CHAR(35))	NULL
7232From JSON func opaque_mysql_type_var_string as CHAR(35))	NULL
7233Warnings:
7234Warning	1292	Truncated incorrect CHAR(35) value: '{"type": "Point", "coordinates": [1.0, 1.0]}'
7235select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='null';
7236concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7237From JSON func null as DATE	NULL
7238Warnings:
7239Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7240select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='bool';
7241concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7242From JSON func bool as DATE	NULL
7243Warnings:
7244Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7245select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='uint';
7246concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7247From JSON func uint as DATE	NULL
7248Warnings:
7249Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7250select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='int';
7251concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7252From JSON func int as DATE	NULL
7253Warnings:
7254Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7255select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='double';
7256concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7257From JSON func double as DATE	NULL
7258Warnings:
7259Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7260select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='stringany';
7261concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7262From JSON func stringany as DATE	NULL
7263Warnings:
7264Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7265select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='stringint';
7266concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7267From JSON func stringint as DATE	NULL
7268Warnings:
7269Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7270select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='stringdecimal';
7271concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7272From JSON func stringdecimal as DATE	NULL
7273Warnings:
7274Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7275select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='object';
7276concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7277From JSON func object as DATE	NULL
7278Warnings:
7279Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7280select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='array';
7281concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7282From JSON func array as DATE	NULL
7283Warnings:
7284Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7285select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_decimal';
7286concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7287From JSON func opaque_mysql_type_decimal as DATE	NULL
7288Warnings:
7289Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7290select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_set';
7291concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7292From JSON func opaque_mysql_type_set as DATE	NULL
7293Warnings:
7294Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7295select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_enum';
7296concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7297From JSON func opaque_mysql_type_enum as DATE	NULL
7298Warnings:
7299Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7300select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_date';
7301concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7302From JSON func opaque_mysql_type_date as DATE	2015-01-15
7303select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_time';
7304concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7305From JSON func opaque_mysql_type_time as DATE	NULL
7306Warnings:
7307Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7308select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_datetime';
7309concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7310From JSON func opaque_mysql_type_datetime as DATE	2015-01-15
7311select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_geom';
7312concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7313From JSON func opaque_mysql_type_geom as DATE	NULL
7314Warnings:
7315Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7316select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_bit';
7317concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7318From JSON func opaque_mysql_type_bit as DATE	NULL
7319Warnings:
7320Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7321select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_year';
7322concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7323From JSON func opaque_mysql_type_year as DATE	NULL
7324Warnings:
7325Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7326select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_blob';
7327concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7328From JSON func opaque_mysql_type_blob as DATE	NULL
7329Warnings:
7330Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7331select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_longblob';
7332concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7333From JSON func opaque_mysql_type_longblob as DATE	NULL
7334Warnings:
7335Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7336select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_mediumblob';
7337concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7338From JSON func opaque_mysql_type_mediumblob as DATE	NULL
7339Warnings:
7340Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7341select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_tinyblob';
7342concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7343From JSON func opaque_mysql_type_tinyblob as DATE	NULL
7344Warnings:
7345Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7346select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_varbinary';
7347concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7348From JSON func opaque_mysql_type_varbinary as DATE	NULL
7349select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_binary';
7350concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7351From JSON func opaque_mysql_type_binary as DATE	NULL
7352select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_varchar';
7353concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7354From JSON func opaque_mysql_type_varchar as DATE	NULL
7355Warnings:
7356Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7357select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_string';
7358concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7359From JSON func opaque_mysql_type_string as DATE	NULL
7360select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_var_string';
7361concat('From JSON func ',c, ' as DATE')	cast(json_extract(j, '$') as DATE)
7362From JSON func opaque_mysql_type_var_string as DATE	NULL
7363select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='null';
7364concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7365From JSON func null as DATETIME	NULL
7366Warnings:
7367Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7368select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='bool';
7369concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7370From JSON func bool as DATETIME	NULL
7371Warnings:
7372Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7373select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='uint';
7374concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7375From JSON func uint as DATETIME	NULL
7376Warnings:
7377Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7378select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='int';
7379concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7380From JSON func int as DATETIME	NULL
7381Warnings:
7382Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7383select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='double';
7384concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7385From JSON func double as DATETIME	NULL
7386Warnings:
7387Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7388select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='stringany';
7389concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7390From JSON func stringany as DATETIME	NULL
7391Warnings:
7392Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7393select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='stringint';
7394concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7395From JSON func stringint as DATETIME	NULL
7396Warnings:
7397Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7398select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='stringdecimal';
7399concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7400From JSON func stringdecimal as DATETIME	NULL
7401Warnings:
7402Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7403select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='object';
7404concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7405From JSON func object as DATETIME	NULL
7406Warnings:
7407Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7408select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='array';
7409concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7410From JSON func array as DATETIME	NULL
7411Warnings:
7412Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7413select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_decimal';
7414concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7415From JSON func opaque_mysql_type_decimal as DATETIME	NULL
7416Warnings:
7417Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7418select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_set';
7419concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7420From JSON func opaque_mysql_type_set as DATETIME	NULL
7421Warnings:
7422Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7423select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_enum';
7424concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7425From JSON func opaque_mysql_type_enum as DATETIME	NULL
7426Warnings:
7427Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7428select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_date';
7429concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7430From JSON func opaque_mysql_type_date as DATETIME	2015-01-15 00:00:00
7431select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_time';
7432concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7433From JSON func opaque_mysql_type_time as DATETIME	NULL
7434Warnings:
7435Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7436select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_datetime';
7437concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7438From JSON func opaque_mysql_type_datetime as DATETIME	2015-01-15 23:24:25
7439select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_geom';
7440concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7441From JSON func opaque_mysql_type_geom as DATETIME	NULL
7442Warnings:
7443Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7444select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_bit';
7445concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7446From JSON func opaque_mysql_type_bit as DATETIME	NULL
7447Warnings:
7448Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7449select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_year';
7450concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7451From JSON func opaque_mysql_type_year as DATETIME	NULL
7452Warnings:
7453Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7454select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_blob';
7455concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7456From JSON func opaque_mysql_type_blob as DATETIME	NULL
7457Warnings:
7458Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7459select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_longblob';
7460concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7461From JSON func opaque_mysql_type_longblob as DATETIME	NULL
7462Warnings:
7463Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7464select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_mediumblob';
7465concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7466From JSON func opaque_mysql_type_mediumblob as DATETIME	NULL
7467Warnings:
7468Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7469select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_tinyblob';
7470concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7471From JSON func opaque_mysql_type_tinyblob as DATETIME	NULL
7472Warnings:
7473Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7474select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_varbinary';
7475concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7476From JSON func opaque_mysql_type_varbinary as DATETIME	NULL
7477select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_binary';
7478concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7479From JSON func opaque_mysql_type_binary as DATETIME	NULL
7480select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_varchar';
7481concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7482From JSON func opaque_mysql_type_varchar as DATETIME	NULL
7483Warnings:
7484Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7485select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_string';
7486concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7487From JSON func opaque_mysql_type_string as DATETIME	NULL
7488select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_var_string';
7489concat('From JSON func ',c, ' as DATETIME')	cast(json_extract(j, '$') as DATETIME)
7490From JSON func opaque_mysql_type_var_string as DATETIME	NULL
7491select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t;
7492concat('From JSON func ',c, ' as TIME')	cast(json_extract(j, '$') as TIME)
7493From JSON func null as TIME	NULL
7494From JSON func bool as TIME	NULL
7495From JSON func uint as TIME	NULL
7496From JSON func int as TIME	NULL
7497From JSON func double as TIME	NULL
7498From JSON func stringany as TIME	NULL
7499From JSON func stringint as TIME	NULL
7500From JSON func stringdecimal as TIME	NULL
7501From JSON func object as TIME	NULL
7502From JSON func array as TIME	NULL
7503From JSON func opaque_mysql_type_decimal as TIME	NULL
7504From JSON func opaque_mysql_type_set as TIME	NULL
7505From JSON func opaque_mysql_type_enum as TIME	NULL
7506From JSON func opaque_mysql_type_date as TIME	NULL
7507From JSON func opaque_mysql_type_time as TIME	23:24:25
7508From JSON func opaque_mysql_type_datetime as TIME	NULL
7509From JSON func opaque_mysql_type_geom as TIME	NULL
7510From JSON func opaque_mysql_type_bit as TIME	NULL
7511From JSON func opaque_mysql_type_year as TIME	NULL
7512From JSON func opaque_mysql_type_blob as TIME	NULL
7513From JSON func opaque_mysql_type_longblob as TIME	NULL
7514From JSON func opaque_mysql_type_mediumblob as TIME	NULL
7515From JSON func opaque_mysql_type_tinyblob as TIME	NULL
7516From JSON func opaque_mysql_type_varbinary as TIME	NULL
7517From JSON func opaque_mysql_type_binary as TIME	NULL
7518From JSON func opaque_mysql_type_varchar as TIME	NULL
7519From JSON func opaque_mysql_type_string as TIME	NULL
7520From JSON func opaque_mysql_type_var_string as TIME	NULL
7521Warnings:
7522Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1
7523Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2
7524Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3
7525Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4
7526Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5
7527Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6
7528Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7
7529Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8
7530Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9
7531Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10
7532Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11
7533Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12
7534Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13
7535Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 14
7536Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 16
7537Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17
7538Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18
7539Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19
7540Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20
7541Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21
7542Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22
7543Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23
7544Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26
7545select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t;
7546concat('From JSON func ',c, ' as DECIMAL(5,2)')	cast(json_extract(j, '$') as DECIMAL(5,2))
7547From JSON func null as DECIMAL(5,2)	0.00
7548From JSON func bool as DECIMAL(5,2)	1.00
7549From JSON func uint as DECIMAL(5,2)	12.00
7550From JSON func int as DECIMAL(5,2)	12.00
7551From JSON func double as DECIMAL(5,2)	3.14
7552From JSON func stringany as DECIMAL(5,2)	0.00
7553From JSON func stringint as DECIMAL(5,2)	1.00
7554From JSON func stringdecimal as DECIMAL(5,2)	3.14
7555From JSON func object as DECIMAL(5,2)	0.00
7556From JSON func array as DECIMAL(5,2)	0.00
7557From JSON func opaque_mysql_type_decimal as DECIMAL(5,2)	3.14
7558From JSON func opaque_mysql_type_set as DECIMAL(5,2)	0.00
7559From JSON func opaque_mysql_type_enum as DECIMAL(5,2)	0.00
7560From JSON func opaque_mysql_type_date as DECIMAL(5,2)	0.00
7561From JSON func opaque_mysql_type_time as DECIMAL(5,2)	0.00
7562From JSON func opaque_mysql_type_datetime as DECIMAL(5,2)	0.00
7563From JSON func opaque_mysql_type_geom as DECIMAL(5,2)	0.00
7564From JSON func opaque_mysql_type_bit as DECIMAL(5,2)	0.00
7565From JSON func opaque_mysql_type_year as DECIMAL(5,2)	999.99
7566From JSON func opaque_mysql_type_blob as DECIMAL(5,2)	0.00
7567From JSON func opaque_mysql_type_longblob as DECIMAL(5,2)	0.00
7568From JSON func opaque_mysql_type_mediumblob as DECIMAL(5,2)	0.00
7569From JSON func opaque_mysql_type_tinyblob as DECIMAL(5,2)	0.00
7570From JSON func opaque_mysql_type_varbinary as DECIMAL(5,2)	NULL
7571From JSON func opaque_mysql_type_binary as DECIMAL(5,2)	NULL
7572From JSON func opaque_mysql_type_varchar as DECIMAL(5,2)	0.00
7573From JSON func opaque_mysql_type_string as DECIMAL(5,2)	NULL
7574From JSON func opaque_mysql_type_var_string as DECIMAL(5,2)	NULL
7575Warnings:
7576Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 1
7577Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 6
7578Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 9
7579Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 10
7580Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 12
7581Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 13
7582Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 14
7583Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 15
7584Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 16
7585Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 17
7586Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 18
7587Warning	1264	Out of range value for column 'cast(json_extract(j, '$') as DECIMAL(5,2))' at row 1
7588Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 20
7589Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 21
7590Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 22
7591Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 23
7592Warning	3156	Invalid JSON value for CAST to DECIMAL from column json_extract at row 26
7593select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t;
7594concat('From JSON func ',c, ' as UNSIGNED')	cast(json_extract(j, '$') as UNSIGNED)
7595From JSON func null as UNSIGNED	0
7596From JSON func bool as UNSIGNED	1
7597From JSON func uint as UNSIGNED	12
7598From JSON func int as UNSIGNED	12
7599From JSON func double as UNSIGNED	3
7600From JSON func stringany as UNSIGNED	0
7601From JSON func stringint as UNSIGNED	1
7602From JSON func stringdecimal as UNSIGNED	3
7603From JSON func object as UNSIGNED	0
7604From JSON func array as UNSIGNED	0
7605From JSON func opaque_mysql_type_decimal as UNSIGNED	3
7606From JSON func opaque_mysql_type_set as UNSIGNED	0
7607From JSON func opaque_mysql_type_enum as UNSIGNED	0
7608From JSON func opaque_mysql_type_date as UNSIGNED	0
7609From JSON func opaque_mysql_type_time as UNSIGNED	0
7610From JSON func opaque_mysql_type_datetime as UNSIGNED	0
7611From JSON func opaque_mysql_type_geom as UNSIGNED	0
7612From JSON func opaque_mysql_type_bit as UNSIGNED	0
7613From JSON func opaque_mysql_type_year as UNSIGNED	1992
7614From JSON func opaque_mysql_type_blob as UNSIGNED	0
7615From JSON func opaque_mysql_type_longblob as UNSIGNED	0
7616From JSON func opaque_mysql_type_mediumblob as UNSIGNED	0
7617From JSON func opaque_mysql_type_tinyblob as UNSIGNED	0
7618From JSON func opaque_mysql_type_varbinary as UNSIGNED	NULL
7619From JSON func opaque_mysql_type_binary as UNSIGNED	NULL
7620From JSON func opaque_mysql_type_varchar as UNSIGNED	0
7621From JSON func opaque_mysql_type_string as UNSIGNED	NULL
7622From JSON func opaque_mysql_type_var_string as UNSIGNED	NULL
7623Warnings:
7624Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 1
7625Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 6
7626Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 8
7627Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 9
7628Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 10
7629Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 12
7630Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 13
7631Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 14
7632Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 15
7633Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 16
7634Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 17
7635Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 18
7636Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 20
7637Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 21
7638Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 22
7639Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 23
7640Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 26
7641select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t;
7642concat('From JSON func ',c, ' as SIGNED')	cast(json_extract(j, '$') as SIGNED)
7643From JSON func null as SIGNED	0
7644From JSON func bool as SIGNED	1
7645From JSON func uint as SIGNED	12
7646From JSON func int as SIGNED	12
7647From JSON func double as SIGNED	3
7648From JSON func stringany as SIGNED	0
7649From JSON func stringint as SIGNED	1
7650From JSON func stringdecimal as SIGNED	3
7651From JSON func object as SIGNED	0
7652From JSON func array as SIGNED	0
7653From JSON func opaque_mysql_type_decimal as SIGNED	3
7654From JSON func opaque_mysql_type_set as SIGNED	0
7655From JSON func opaque_mysql_type_enum as SIGNED	0
7656From JSON func opaque_mysql_type_date as SIGNED	0
7657From JSON func opaque_mysql_type_time as SIGNED	0
7658From JSON func opaque_mysql_type_datetime as SIGNED	0
7659From JSON func opaque_mysql_type_geom as SIGNED	0
7660From JSON func opaque_mysql_type_bit as SIGNED	0
7661From JSON func opaque_mysql_type_year as SIGNED	1992
7662From JSON func opaque_mysql_type_blob as SIGNED	0
7663From JSON func opaque_mysql_type_longblob as SIGNED	0
7664From JSON func opaque_mysql_type_mediumblob as SIGNED	0
7665From JSON func opaque_mysql_type_tinyblob as SIGNED	0
7666From JSON func opaque_mysql_type_varbinary as SIGNED	NULL
7667From JSON func opaque_mysql_type_binary as SIGNED	NULL
7668From JSON func opaque_mysql_type_varchar as SIGNED	0
7669From JSON func opaque_mysql_type_string as SIGNED	NULL
7670From JSON func opaque_mysql_type_var_string as SIGNED	NULL
7671Warnings:
7672Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 1
7673Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 6
7674Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 8
7675Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 9
7676Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 10
7677Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 12
7678Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 13
7679Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 14
7680Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 15
7681Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 16
7682Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 17
7683Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 18
7684Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 20
7685Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 21
7686Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 22
7687Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 23
7688Warning	3156	Invalid JSON value for CAST to INTEGER from column json_extract at row 26
7689# ----------------------------------------------------------------------
7690#  C A S T   F R O M   J S O N   S U B Q U E R Y
7691# ----------------------------------------------------------------------
7692select 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';
7693concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='null') as BINARY(35)), '\0', '')
7694From JSON subselect null as BINARY(35)	null
7695select 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';
7696concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='bool') as BINARY(35)), '\0', '')
7697From JSON subselect bool as BINARY(35)	true
7698select 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';
7699concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='uint') as BINARY(35)), '\0', '')
7700From JSON subselect uint as BINARY(35)	12
7701select 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';
7702concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='int') as BINARY(35)), '\0', '')
7703From JSON subselect int as BINARY(35)	12
7704select 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';
7705concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='double') as BINARY(35)), '\0', '')
7706From JSON subselect double as BINARY(35)	3.14
7707select 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';
7708concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='stringany') as BINARY(35)), '\0', '')
7709From JSON subselect stringany as BINARY(35)	"a"
7710select 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';
7711concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='stringint') as BINARY(35)), '\0', '')
7712From JSON subselect stringint as BINARY(35)	"1"
7713select 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';
7714concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='stringdecimal') as BINARY(35)), '\0', '')
7715From JSON subselect stringdecimal as BINARY(35)	"3.14"
7716select 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';
7717concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='object') as BINARY(35)), '\0', '')
7718From JSON subselect object as BINARY(35)	{"a": 3}
7719select 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';
7720concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='array') as BINARY(35)), '\0', '')
7721From JSON subselect array as BINARY(35)	[1, 2]
7722select 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';
7723concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_decimal') as BINARY(35)), '\0', '')
7724From JSON subselect opaque_mysql_type_decimal as BINARY(35)	3.14
7725select 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';
7726concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_set') as BINARY(35)), '\0', '')
7727From JSON subselect opaque_mysql_type_set as BINARY(35)	"b,c"
7728select 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';
7729concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_enum') as BINARY(35)), '\0', '')
7730From JSON subselect opaque_mysql_type_enum as BINARY(35)	"b"
7731select 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';
7732concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_date') as BINARY(35)), '\0', '')
7733From JSON subselect opaque_mysql_type_date as BINARY(35)	"2015-01-15"
7734select 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';
7735concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_time') as BINARY(35)), '\0', '')
7736From JSON subselect opaque_mysql_type_time as BINARY(35)	"23:24:25.000000"
7737select 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';
7738concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_datetime') as BINARY(35)), '\0', '')
7739From JSON subselect opaque_mysql_type_datetime as BINARY(35)	"2015-01-15 23:24:25.000000"
7740select 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';
7741concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_geom') as BINARY(35)), '\0', '')
7742From JSON subselect opaque_mysql_type_geom as BINARY(35)	{"type": "Point", "coordinates": [1
7743Warnings:
7744Warning	1292	Truncated incorrect BINARY(35) value: '{"type": "Point", "coordinates": [1.0, 1.0]}'
7745select 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';
7746concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_bit') as BINARY(35)), '\0', '')
7747From JSON subselect opaque_mysql_type_bit as BINARY(35)	"base64:type15:yv4="
7748select 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';
7749concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_year') as BINARY(35)), '\0', '')
7750From JSON subselect opaque_mysql_type_year as BINARY(35)	1992
7751select 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';
7752concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_blob') as BINARY(35)), '\0', '')
7753From JSON subselect opaque_mysql_type_blob as BINARY(35)	"base64:type252:yv66vg=="
7754select 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';
7755concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_longblob') as BINARY(35)), '\0', '')
7756From JSON subselect opaque_mysql_type_longblob as BINARY(35)	"base64:type251:yv66vg=="
7757select 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';
7758concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_mediumblob') as BINARY(35)), '\0', '')
7759From JSON subselect opaque_mysql_type_mediumblob as BINARY(35)	"base64:type250:yv66vg=="
7760select 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';
7761concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_tinyblob') as BINARY(35)), '\0', '')
7762From JSON subselect opaque_mysql_type_tinyblob as BINARY(35)	"base64:type249:yv66vg=="
7763select 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';
7764concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_varbinary') as BINARY(35)), '\0', '')
7765From JSON subselect opaque_mysql_type_varbinary as BINARY(35)	NULL
7766select 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';
7767concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_binary') as BINARY(35)), '\0', '')
7768From JSON subselect opaque_mysql_type_binary as BINARY(35)	NULL
7769select 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';
7770concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_varchar') as BINARY(35)), '\0', '')
7771From JSON subselect opaque_mysql_type_varchar as BINARY(35)	"base64:type15:Zm9v"
7772select 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';
7773concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_string') as BINARY(35)), '\0', '')
7774From JSON subselect opaque_mysql_type_string as BINARY(35)	NULL
7775select 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';
7776concat('From JSON subselect ',c, ' as BINARY(35)')	replace(cast((select j from t where c='opaque_mysql_type_var_string') as BINARY(35)), '\0', '')
7777From JSON subselect opaque_mysql_type_var_string as BINARY(35)	NULL
7778select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='null') as CHAR(35)) from t where c='null';
7779concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='null') as CHAR(35))
7780From JSON subselect null as CHAR(35))	null
7781select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='bool') as CHAR(35)) from t where c='bool';
7782concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='bool') as CHAR(35))
7783From JSON subselect bool as CHAR(35))	true
7784select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='uint') as CHAR(35)) from t where c='uint';
7785concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='uint') as CHAR(35))
7786From JSON subselect uint as CHAR(35))	12
7787select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='int') as CHAR(35)) from t where c='int';
7788concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='int') as CHAR(35))
7789From JSON subselect int as CHAR(35))	12
7790select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='double') as CHAR(35)) from t where c='double';
7791concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='double') as CHAR(35))
7792From JSON subselect double as CHAR(35))	3.14
7793select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='stringany') as CHAR(35)) from t where c='stringany';
7794concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='stringany') as CHAR(35))
7795From JSON subselect stringany as CHAR(35))	"a"
7796select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='stringint') as CHAR(35)) from t where c='stringint';
7797concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='stringint') as CHAR(35))
7798From JSON subselect stringint as CHAR(35))	"1"
7799select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='stringdecimal') as CHAR(35)) from t where c='stringdecimal';
7800concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='stringdecimal') as CHAR(35))
7801From JSON subselect stringdecimal as CHAR(35))	"3.14"
7802select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='object') as CHAR(35)) from t where c='object';
7803concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='object') as CHAR(35))
7804From JSON subselect object as CHAR(35))	{"a": 3}
7805select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='array') as CHAR(35)) from t where c='array';
7806concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='array') as CHAR(35))
7807From JSON subselect array as CHAR(35))	[1, 2]
7808select 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';
7809concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_decimal') as CHAR(35))
7810From JSON subselect opaque_mysql_type_decimal as CHAR(35))	3.14
7811select 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';
7812concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_set') as CHAR(35))
7813From JSON subselect opaque_mysql_type_set as CHAR(35))	"b,c"
7814select 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';
7815concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_enum') as CHAR(35))
7816From JSON subselect opaque_mysql_type_enum as CHAR(35))	"b"
7817select 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';
7818concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_date') as CHAR(35))
7819From JSON subselect opaque_mysql_type_date as CHAR(35))	"2015-01-15"
7820select 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';
7821concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_time') as CHAR(35))
7822From JSON subselect opaque_mysql_type_time as CHAR(35))	"23:24:25.000000"
7823select 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';
7824concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_datetime') as CHAR(35))
7825From JSON subselect opaque_mysql_type_datetime as CHAR(35))	"2015-01-15 23:24:25.000000"
7826select 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';
7827concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_geom') as CHAR(35))
7828From JSON subselect opaque_mysql_type_geom as CHAR(35))	{"type": "Point", "coordinates": [1
7829Warnings:
7830Warning	1292	Truncated incorrect CHAR(35) value: '{"type": "Point", "coordinates": [1.0, 1.0]}'
7831select 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';
7832concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_bit') as CHAR(35))
7833From JSON subselect opaque_mysql_type_bit as CHAR(35))	"base64:type15:yv4="
7834select 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';
7835concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_year') as CHAR(35))
7836From JSON subselect opaque_mysql_type_year as CHAR(35))	1992
7837select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_year';
7838concat('From JSON subselect ',c, ' as CHAR(35))')	cast(j as CHAR(35))
7839From JSON subselect opaque_mysql_type_year as CHAR(35))	1992
7840select 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';
7841concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_blob') as CHAR(35))
7842From JSON subselect opaque_mysql_type_blob as CHAR(35))	"base64:type252:yv66vg=="
7843select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_longblob';
7844concat('From JSON subselect ',c, ' as CHAR(35))')	cast(j as CHAR(35))
7845From JSON subselect opaque_mysql_type_longblob as CHAR(35))	"base64:type251:yv66vg=="
7846select 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';
7847concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_mediumblob') as CHAR(35))
7848From JSON subselect opaque_mysql_type_mediumblob as CHAR(35))	"base64:type250:yv66vg=="
7849select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_tinyblob';
7850concat('From JSON subselect ',c, ' as CHAR(35))')	cast(j as CHAR(35))
7851From JSON subselect opaque_mysql_type_tinyblob as CHAR(35))	"base64:type249:yv66vg=="
7852select 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';
7853concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_varbinary') as CHAR(35))
7854From JSON subselect opaque_mysql_type_varbinary as CHAR(35))	NULL
7855select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_binary';
7856concat('From JSON subselect ',c, ' as CHAR(35))')	cast(j as CHAR(35))
7857From JSON subselect opaque_mysql_type_binary as CHAR(35))	NULL
7858select 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';
7859concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_varchar') as CHAR(35))
7860From JSON subselect opaque_mysql_type_varchar as CHAR(35))	"base64:type15:Zm9v"
7861select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_string';
7862concat('From JSON subselect ',c, ' as CHAR(35))')	cast(j as CHAR(35))
7863From JSON subselect opaque_mysql_type_string as CHAR(35))	NULL
7864select 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';
7865concat('From JSON subselect ',c, ' as CHAR(35))')	cast((select j from t where c='opaque_mysql_type_var_string') as CHAR(35))
7866From JSON subselect opaque_mysql_type_var_string as CHAR(35))	NULL
7867select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='null') as DATE) from t where c='null';
7868concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='null') as DATE)
7869From JSON subselect null as DATE	NULL
7870Warnings:
7871Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7872select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='bool';
7873concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
7874From JSON subselect bool as DATE	NULL
7875Warnings:
7876Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
7877select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='uint') as DATE) from t where c='uint';
7878concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='uint') as DATE)
7879From JSON subselect uint as DATE	NULL
7880Warnings:
7881Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7882select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='int';
7883concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
7884From JSON subselect int as DATE	NULL
7885Warnings:
7886Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
7887select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='double') as DATE) from t where c='double';
7888concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='double') as DATE)
7889From JSON subselect double as DATE	NULL
7890Warnings:
7891Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7892select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='stringany';
7893concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
7894From JSON subselect stringany as DATE	NULL
7895Warnings:
7896Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
7897select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='stringint') as DATE) from t where c='stringint';
7898concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='stringint') as DATE)
7899From JSON subselect stringint as DATE	NULL
7900Warnings:
7901Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7902select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='stringdecimal';
7903concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
7904From JSON subselect stringdecimal as DATE	NULL
7905Warnings:
7906Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
7907select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='object') as DATE) from t where c='object';
7908concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='object') as DATE)
7909From JSON subselect object as DATE	NULL
7910Warnings:
7911Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7912select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='array';
7913concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
7914From JSON subselect array as DATE	NULL
7915Warnings:
7916Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
7917select 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';
7918concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_decimal') as DATE)
7919From JSON subselect opaque_mysql_type_decimal as DATE	NULL
7920Warnings:
7921Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7922select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_set';
7923concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
7924From JSON subselect opaque_mysql_type_set as DATE	NULL
7925Warnings:
7926Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
7927select 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';
7928concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_enum') as DATE)
7929From JSON subselect opaque_mysql_type_enum as DATE	NULL
7930Warnings:
7931Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7932select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_date';
7933concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
7934From JSON subselect opaque_mysql_type_date as DATE	2015-01-15
7935select 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';
7936concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_time') as DATE)
7937From JSON subselect opaque_mysql_type_time as DATE	NULL
7938Warnings:
7939Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7940select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_datetime';
7941concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
7942From JSON subselect opaque_mysql_type_datetime as DATE	2015-01-15
7943select 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';
7944concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_geom') as DATE)
7945From JSON subselect opaque_mysql_type_geom as DATE	NULL
7946Warnings:
7947Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7948select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_bit';
7949concat('From JSON subselect ',c, ' as DATE')	cast(j as DATE)
7950From JSON subselect opaque_mysql_type_bit as DATE	NULL
7951Warnings:
7952Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
7953select 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';
7954concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_year') as DATE)
7955From JSON subselect opaque_mysql_type_year as DATE	NULL
7956Warnings:
7957Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7958select 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';
7959concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_blob') as DATE)
7960From JSON subselect opaque_mysql_type_blob as DATE	NULL
7961Warnings:
7962Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7963select 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';
7964concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_longblob') as DATE)
7965From JSON subselect opaque_mysql_type_longblob as DATE	NULL
7966Warnings:
7967Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7968select 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';
7969concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_mediumblob') as DATE)
7970From JSON subselect opaque_mysql_type_mediumblob as DATE	NULL
7971Warnings:
7972Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7973select 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';
7974concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_tinyblob') as DATE)
7975From JSON subselect opaque_mysql_type_tinyblob as DATE	NULL
7976Warnings:
7977Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7978select 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';
7979concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_varbinary') as DATE)
7980From JSON subselect opaque_mysql_type_varbinary as DATE	NULL
7981select 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';
7982concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_binary') as DATE)
7983From JSON subselect opaque_mysql_type_binary as DATE	NULL
7984select 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';
7985concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_varchar') as DATE)
7986From JSON subselect opaque_mysql_type_varchar as DATE	NULL
7987Warnings:
7988Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
7989select 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';
7990concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_string') as DATE)
7991From JSON subselect opaque_mysql_type_string as DATE	NULL
7992select 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';
7993concat('From JSON subselect ',c, ' as DATE')	cast((select j from t where c='opaque_mysql_type_var_string') as DATE)
7994From JSON subselect opaque_mysql_type_var_string as DATE	NULL
7995select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='null') as DATETIME) from t where c='null';
7996concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='null') as DATETIME)
7997From JSON subselect null as DATETIME	NULL
7998Warnings:
7999Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8000select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='bool') as DATETIME) from t where c='bool';
8001concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='bool') as DATETIME)
8002From JSON subselect bool as DATETIME	NULL
8003Warnings:
8004Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8005select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='uint') as DATETIME) from t where c='uint';
8006concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='uint') as DATETIME)
8007From JSON subselect uint as DATETIME	NULL
8008Warnings:
8009Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8010select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='int') as DATETIME) from t where c='int';
8011concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='int') as DATETIME)
8012From JSON subselect int as DATETIME	NULL
8013Warnings:
8014Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8015select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='double') as DATETIME) from t where c='double';
8016concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='double') as DATETIME)
8017From JSON subselect double as DATETIME	NULL
8018Warnings:
8019Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8020select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='stringany') as DATETIME) from t where c='stringany';
8021concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='stringany') as DATETIME)
8022From JSON subselect stringany as DATETIME	NULL
8023Warnings:
8024Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8025select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='stringint') as DATETIME) from t where c='stringint';
8026concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='stringint') as DATETIME)
8027From JSON subselect stringint as DATETIME	NULL
8028Warnings:
8029Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8030select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='stringdecimal') as DATETIME) from t where c='stringdecimal';
8031concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='stringdecimal') as DATETIME)
8032From JSON subselect stringdecimal as DATETIME	NULL
8033Warnings:
8034Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8035select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='object') as DATETIME) from t where c='object';
8036concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='object') as DATETIME)
8037From JSON subselect object as DATETIME	NULL
8038Warnings:
8039Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8040select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='array') as DATETIME) from t where c='array';
8041concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='array') as DATETIME)
8042From JSON subselect array as DATETIME	NULL
8043Warnings:
8044Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8045select 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';
8046concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_decimal') as DATETIME)
8047From JSON subselect opaque_mysql_type_decimal as DATETIME	NULL
8048Warnings:
8049Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8050select 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';
8051concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_set') as DATETIME)
8052From JSON subselect opaque_mysql_type_set as DATETIME	NULL
8053Warnings:
8054Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8055select 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';
8056concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_enum') as DATETIME)
8057From JSON subselect opaque_mysql_type_enum as DATETIME	NULL
8058Warnings:
8059Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8060select 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';
8061concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_date') as DATETIME)
8062From JSON subselect opaque_mysql_type_date as DATETIME	2015-01-15 00:00:00
8063select 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';
8064concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_time') as DATETIME)
8065From JSON subselect opaque_mysql_type_time as DATETIME	NULL
8066Warnings:
8067Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8068select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_datetime';
8069concat('From JSON subselect ',c, ' as DATETIME')	cast(j as DATETIME)
8070From JSON subselect opaque_mysql_type_datetime as DATETIME	2015-01-15 23:24:25
8071select 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';
8072concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_geom') as DATETIME)
8073From JSON subselect opaque_mysql_type_geom as DATETIME	NULL
8074Warnings:
8075Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8076select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_bit';
8077concat('From JSON subselect ',c, ' as DATETIME')	cast(j as DATETIME)
8078From JSON subselect opaque_mysql_type_bit as DATETIME	NULL
8079Warnings:
8080Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8081select 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';
8082concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_year') as DATETIME)
8083From JSON subselect opaque_mysql_type_year as DATETIME	NULL
8084Warnings:
8085Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8086select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_year';
8087concat('From JSON subselect ',c, ' as DATETIME')	cast(j as DATETIME)
8088From JSON subselect opaque_mysql_type_year as DATETIME	NULL
8089Warnings:
8090Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8091select 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';
8092concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_blob') as DATETIME)
8093From JSON subselect opaque_mysql_type_blob as DATETIME	NULL
8094Warnings:
8095Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8096select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_longblob';
8097concat('From JSON subselect ',c, ' as DATETIME')	cast(j as DATETIME)
8098From JSON subselect opaque_mysql_type_longblob as DATETIME	NULL
8099Warnings:
8100Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8101select 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';
8102concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_mediumblob') as DATETIME)
8103From JSON subselect opaque_mysql_type_mediumblob as DATETIME	NULL
8104Warnings:
8105Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8106select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_tinyblob';
8107concat('From JSON subselect ',c, ' as DATETIME')	cast(j as DATETIME)
8108From JSON subselect opaque_mysql_type_tinyblob as DATETIME	NULL
8109Warnings:
8110Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8111select 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';
8112concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_varbinary') as DATETIME)
8113From JSON subselect opaque_mysql_type_varbinary as DATETIME	NULL
8114select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_binary';
8115concat('From JSON subselect ',c, ' as DATETIME')	cast(j as DATETIME)
8116From JSON subselect opaque_mysql_type_binary as DATETIME	NULL
8117select 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';
8118concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_varchar') as DATETIME)
8119From JSON subselect opaque_mysql_type_varchar as DATETIME	NULL
8120Warnings:
8121Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8122select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_string';
8123concat('From JSON subselect ',c, ' as DATETIME')	cast(j as DATETIME)
8124From JSON subselect opaque_mysql_type_string as DATETIME	NULL
8125select 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';
8126concat('From JSON subselect ',c, ' as DATETIME')	cast((select j from t where c='opaque_mysql_type_var_string') as DATETIME)
8127From JSON subselect opaque_mysql_type_var_string as DATETIME	NULL
8128select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='null') as TIME) from t where c='null';
8129concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='null') as TIME)
8130From JSON subselect null as TIME	NULL
8131Warnings:
8132Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8133select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='bool';
8134concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
8135From JSON subselect bool as TIME	NULL
8136Warnings:
8137Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8138select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='uint') as TIME) from t where c='uint';
8139concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='uint') as TIME)
8140From JSON subselect uint as TIME	NULL
8141Warnings:
8142Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8143select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='int';
8144concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
8145From JSON subselect int as TIME	NULL
8146Warnings:
8147Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8148select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='double') as TIME) from t where c='double';
8149concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='double') as TIME)
8150From JSON subselect double as TIME	NULL
8151Warnings:
8152Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8153select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='stringany';
8154concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
8155From JSON subselect stringany as TIME	NULL
8156Warnings:
8157Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8158select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='stringint') as TIME) from t where c='stringint';
8159concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='stringint') as TIME)
8160From JSON subselect stringint as TIME	NULL
8161Warnings:
8162Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8163select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='stringdecimal';
8164concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
8165From JSON subselect stringdecimal as TIME	NULL
8166Warnings:
8167Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8168select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='object') as TIME) from t where c='object';
8169concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='object') as TIME)
8170From JSON subselect object as TIME	NULL
8171Warnings:
8172Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8173select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='array';
8174concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
8175From JSON subselect array as TIME	NULL
8176Warnings:
8177Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8178select 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';
8179concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_decimal') as TIME)
8180From JSON subselect opaque_mysql_type_decimal as TIME	NULL
8181Warnings:
8182Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8183select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_set';
8184concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
8185From JSON subselect opaque_mysql_type_set as TIME	NULL
8186Warnings:
8187Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8188select 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';
8189concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_enum') as TIME)
8190From JSON subselect opaque_mysql_type_enum as TIME	NULL
8191Warnings:
8192Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8193select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_date';
8194concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
8195From JSON subselect opaque_mysql_type_date as TIME	NULL
8196Warnings:
8197Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8198select 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';
8199concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_time') as TIME)
8200From JSON subselect opaque_mysql_type_time as TIME	23:24:25
8201select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_datetime';
8202concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
8203From JSON subselect opaque_mysql_type_datetime as TIME	NULL
8204Warnings:
8205Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8206select 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';
8207concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_geom') as TIME)
8208From JSON subselect opaque_mysql_type_geom as TIME	NULL
8209Warnings:
8210Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8211select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_bit';
8212concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
8213From JSON subselect opaque_mysql_type_bit as TIME	NULL
8214Warnings:
8215Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8216select 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';
8217concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_year') as TIME)
8218From JSON subselect opaque_mysql_type_year as TIME	NULL
8219Warnings:
8220Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8221select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_year';
8222concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
8223From JSON subselect opaque_mysql_type_year as TIME	NULL
8224Warnings:
8225Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8226select 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';
8227concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_blob') as TIME)
8228From JSON subselect opaque_mysql_type_blob as TIME	NULL
8229Warnings:
8230Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8231select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_longblob';
8232concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
8233From JSON subselect opaque_mysql_type_longblob as TIME	NULL
8234Warnings:
8235Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8236select 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';
8237concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_mediumblob') as TIME)
8238From JSON subselect opaque_mysql_type_mediumblob as TIME	NULL
8239Warnings:
8240Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8241select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_tinyblob';
8242concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
8243From JSON subselect opaque_mysql_type_tinyblob as TIME	NULL
8244Warnings:
8245Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1
8246select 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';
8247concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_varbinary') as TIME)
8248From JSON subselect opaque_mysql_type_varbinary as TIME	NULL
8249select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_binary';
8250concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
8251From JSON subselect opaque_mysql_type_binary as TIME	NULL
8252select 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';
8253concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_varchar') as TIME)
8254From JSON subselect opaque_mysql_type_varchar as TIME	NULL
8255Warnings:
8256Warning	3156	Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2
8257select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_string';
8258concat('From JSON subselect ',c, ' as TIME')	cast(j as TIME)
8259From JSON subselect opaque_mysql_type_string as TIME	NULL
8260select 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';
8261concat('From JSON subselect ',c, ' as TIME')	cast((select j from t where c='opaque_mysql_type_var_string') as TIME)
8262From JSON subselect opaque_mysql_type_var_string as TIME	NULL
8263select 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';
8264concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='null') as DECIMAL(5,2))
8265From JSON subselect null as DECIMAL(5,2)	0.00
8266Warnings:
8267Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 2
8268select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='bool';
8269concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
8270From JSON subselect bool as DECIMAL(5,2)	1.00
8271select 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';
8272concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='uint') as DECIMAL(5,2))
8273From JSON subselect uint as DECIMAL(5,2)	12.00
8274select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='int';
8275concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
8276From JSON subselect int as DECIMAL(5,2)	12.00
8277select 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';
8278concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='double') as DECIMAL(5,2))
8279From JSON subselect double as DECIMAL(5,2)	3.14
8280select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='stringany';
8281concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
8282From JSON subselect stringany as DECIMAL(5,2)	0.00
8283Warnings:
8284Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 1
8285select 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';
8286concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='stringint') as DECIMAL(5,2))
8287From JSON subselect stringint as DECIMAL(5,2)	1.00
8288select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='stringdecimal';
8289concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
8290From JSON subselect stringdecimal as DECIMAL(5,2)	3.14
8291select 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';
8292concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='object') as DECIMAL(5,2))
8293From JSON subselect object as DECIMAL(5,2)	0.00
8294Warnings:
8295Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 2
8296select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='array';
8297concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
8298From JSON subselect array as DECIMAL(5,2)	0.00
8299Warnings:
8300Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 1
8301select 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';
8302concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_decimal') as DECIMAL(5,2))
8303From JSON subselect opaque_mysql_type_decimal as DECIMAL(5,2)	3.14
8304select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_set';
8305concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
8306From JSON subselect opaque_mysql_type_set as DECIMAL(5,2)	0.00
8307Warnings:
8308Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 1
8309select 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';
8310concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_enum') as DECIMAL(5,2))
8311From JSON subselect opaque_mysql_type_enum as DECIMAL(5,2)	0.00
8312Warnings:
8313Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 2
8314select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_date';
8315concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
8316From JSON subselect opaque_mysql_type_date as DECIMAL(5,2)	0.00
8317Warnings:
8318Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 1
8319select 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';
8320concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_time') as DECIMAL(5,2))
8321From JSON subselect opaque_mysql_type_time as DECIMAL(5,2)	0.00
8322Warnings:
8323Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 2
8324select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_datetime';
8325concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
8326From JSON subselect opaque_mysql_type_datetime as DECIMAL(5,2)	0.00
8327Warnings:
8328Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 1
8329select 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';
8330concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_geom') as DECIMAL(5,2))
8331From JSON subselect opaque_mysql_type_geom as DECIMAL(5,2)	0.00
8332Warnings:
8333Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 2
8334select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_bit';
8335concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
8336From JSON subselect opaque_mysql_type_bit as DECIMAL(5,2)	0.00
8337Warnings:
8338Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 1
8339select 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';
8340concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_year') as DECIMAL(5,2))
8341From JSON subselect opaque_mysql_type_year as DECIMAL(5,2)	999.99
8342Warnings:
8343Warning	1264	Out of range value for column 'cast((select j from t where c='opaque_mysql_type_year') as DECIMAL(5,2))' at row 1
8344select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_year';
8345concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
8346From JSON subselect opaque_mysql_type_year as DECIMAL(5,2)	999.99
8347Warnings:
8348Warning	1264	Out of range value for column 'cast(j as DECIMAL(5,2))' at row 1
8349select 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';
8350concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_blob') as DECIMAL(5,2))
8351From JSON subselect opaque_mysql_type_blob as DECIMAL(5,2)	0.00
8352Warnings:
8353Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 2
8354select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_longblob';
8355concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
8356From JSON subselect opaque_mysql_type_longblob as DECIMAL(5,2)	0.00
8357Warnings:
8358Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 1
8359select 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';
8360concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_mediumblob') as DECIMAL(5,2))
8361From JSON subselect opaque_mysql_type_mediumblob as DECIMAL(5,2)	0.00
8362Warnings:
8363Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 2
8364select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_tinyblob';
8365concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
8366From JSON subselect opaque_mysql_type_tinyblob as DECIMAL(5,2)	0.00
8367Warnings:
8368Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 1
8369select 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';
8370concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_varbinary') as DECIMAL(5,2))
8371From JSON subselect opaque_mysql_type_varbinary as DECIMAL(5,2)	NULL
8372select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_binary';
8373concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
8374From JSON subselect opaque_mysql_type_binary as DECIMAL(5,2)	NULL
8375select 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';
8376concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_varchar') as DECIMAL(5,2))
8377From JSON subselect opaque_mysql_type_varchar as DECIMAL(5,2)	0.00
8378Warnings:
8379Warning	3156	Invalid JSON value for CAST to DECIMAL from column j at row 2
8380select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_string';
8381concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast(j as DECIMAL(5,2))
8382From JSON subselect opaque_mysql_type_string as DECIMAL(5,2)	NULL
8383select 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';
8384concat('From JSON subselect ',c, ' as DECIMAL(5,2)')	cast((select j from t where c='opaque_mysql_type_var_string') as DECIMAL(5,2))
8385From JSON subselect opaque_mysql_type_var_string as DECIMAL(5,2)	NULL
8386select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='null') as UNSIGNED) from t where c='null';
8387concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='null') as UNSIGNED)
8388From JSON subselect null as UNSIGNED	0
8389Warnings:
8390Warning	1292	Truncated incorrect INTEGER value: 'null'
8391select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='bool';
8392concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
8393From JSON subselect bool as UNSIGNED	1
8394select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='uint') as UNSIGNED) from t where c='uint';
8395concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='uint') as UNSIGNED)
8396From JSON subselect uint as UNSIGNED	12
8397select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='int';
8398concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
8399From JSON subselect int as UNSIGNED	12
8400select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='double') as UNSIGNED) from t where c='double';
8401concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='double') as UNSIGNED)
8402From JSON subselect double as UNSIGNED	3
8403Warnings:
8404Warning	1292	Truncated incorrect INTEGER value: '3.14'
8405select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='stringany';
8406concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
8407From JSON subselect stringany as UNSIGNED	0
8408Warnings:
8409Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8410select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='stringint') as UNSIGNED) from t where c='stringint';
8411concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='stringint') as UNSIGNED)
8412From JSON subselect stringint as UNSIGNED	0
8413Warnings:
8414Warning	1292	Truncated incorrect INTEGER value: '"1"'
8415select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='stringdecimal';
8416concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
8417From JSON subselect stringdecimal as UNSIGNED	3
8418Warnings:
8419Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8420select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='object') as UNSIGNED) from t where c='object';
8421concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='object') as UNSIGNED)
8422From JSON subselect object as UNSIGNED	0
8423Warnings:
8424Warning	1292	Truncated incorrect INTEGER value: '{"a": 3}'
8425select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='array';
8426concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
8427From JSON subselect array as UNSIGNED	0
8428Warnings:
8429Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8430select 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';
8431concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_decimal') as UNSIGNED)
8432From JSON subselect opaque_mysql_type_decimal as UNSIGNED	3
8433Warnings:
8434Warning	1292	Truncated incorrect INTEGER value: '3.14'
8435select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_set';
8436concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
8437From JSON subselect opaque_mysql_type_set as UNSIGNED	0
8438Warnings:
8439Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8440select 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';
8441concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_enum') as UNSIGNED)
8442From JSON subselect opaque_mysql_type_enum as UNSIGNED	0
8443Warnings:
8444Warning	1292	Truncated incorrect INTEGER value: '"b"'
8445select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_date';
8446concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
8447From JSON subselect opaque_mysql_type_date as UNSIGNED	0
8448Warnings:
8449Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8450select 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';
8451concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_time') as UNSIGNED)
8452From JSON subselect opaque_mysql_type_time as UNSIGNED	0
8453Warnings:
8454Warning	1292	Truncated incorrect INTEGER value: '"23:24:25.000000"'
8455select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_datetime';
8456concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
8457From JSON subselect opaque_mysql_type_datetime as UNSIGNED	0
8458Warnings:
8459Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8460select 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';
8461concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_geom') as UNSIGNED)
8462From JSON subselect opaque_mysql_type_geom as UNSIGNED	0
8463Warnings:
8464Warning	1292	Truncated incorrect INTEGER value: '{"type": "Point", "coordinates": [1.0, 1.0]}'
8465select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_bit';
8466concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
8467From JSON subselect opaque_mysql_type_bit as UNSIGNED	0
8468Warnings:
8469Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8470select 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';
8471concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_year') as UNSIGNED)
8472From JSON subselect opaque_mysql_type_year as UNSIGNED	1992
8473select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_year';
8474concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
8475From JSON subselect opaque_mysql_type_year as UNSIGNED	1992
8476select 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';
8477concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_blob') as UNSIGNED)
8478From JSON subselect opaque_mysql_type_blob as UNSIGNED	0
8479Warnings:
8480Warning	1292	Truncated incorrect INTEGER value: '"base64:type252:yv66vg=="'
8481select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_longblob';
8482concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
8483From JSON subselect opaque_mysql_type_longblob as UNSIGNED	0
8484Warnings:
8485Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8486select 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';
8487concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_mediumblob') as UNSIGNED)
8488From JSON subselect opaque_mysql_type_mediumblob as UNSIGNED	0
8489Warnings:
8490Warning	1292	Truncated incorrect INTEGER value: '"base64:type250:yv66vg=="'
8491select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_tinyblob';
8492concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
8493From JSON subselect opaque_mysql_type_tinyblob as UNSIGNED	0
8494Warnings:
8495Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8496select 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';
8497concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_varbinary') as UNSIGNED)
8498From JSON subselect opaque_mysql_type_varbinary as UNSIGNED	NULL
8499select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_binary';
8500concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
8501From JSON subselect opaque_mysql_type_binary as UNSIGNED	NULL
8502select 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';
8503concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_varchar') as UNSIGNED)
8504From JSON subselect opaque_mysql_type_varchar as UNSIGNED	0
8505Warnings:
8506Warning	1292	Truncated incorrect INTEGER value: '"base64:type15:Zm9v"'
8507select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_string';
8508concat('From JSON subselect ',c, ' as UNSIGNED')	cast(j as UNSIGNED)
8509From JSON subselect opaque_mysql_type_string as UNSIGNED	NULL
8510select 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';
8511concat('From JSON subselect ',c, ' as UNSIGNED')	cast((select j from t where c='opaque_mysql_type_var_string') as UNSIGNED)
8512From JSON subselect opaque_mysql_type_var_string as UNSIGNED	NULL
8513select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='null') as SIGNED) from t where c='null';
8514concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='null') as SIGNED)
8515From JSON subselect null as SIGNED	0
8516Warnings:
8517Warning	1292	Truncated incorrect INTEGER value: 'null'
8518select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='bool';
8519concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
8520From JSON subselect bool as SIGNED	1
8521select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='uint') as SIGNED) from t where c='uint';
8522concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='uint') as SIGNED)
8523From JSON subselect uint as SIGNED	12
8524select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='int';
8525concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
8526From JSON subselect int as SIGNED	12
8527select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='double') as SIGNED) from t where c='double';
8528concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='double') as SIGNED)
8529From JSON subselect double as SIGNED	3
8530Warnings:
8531Warning	1292	Truncated incorrect INTEGER value: '3.14'
8532select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='stringany';
8533concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
8534From JSON subselect stringany as SIGNED	0
8535Warnings:
8536Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8537select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='stringint') as SIGNED) from t where c='stringint';
8538concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='stringint') as SIGNED)
8539From JSON subselect stringint as SIGNED	0
8540Warnings:
8541Warning	1292	Truncated incorrect INTEGER value: '"1"'
8542select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='stringdecimal';
8543concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
8544From JSON subselect stringdecimal as SIGNED	3
8545Warnings:
8546Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8547select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='object') as SIGNED) from t where c='object';
8548concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='object') as SIGNED)
8549From JSON subselect object as SIGNED	0
8550Warnings:
8551Warning	1292	Truncated incorrect INTEGER value: '{"a": 3}'
8552select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='array';
8553concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
8554From JSON subselect array as SIGNED	0
8555Warnings:
8556Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8557select 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';
8558concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_decimal') as SIGNED)
8559From JSON subselect opaque_mysql_type_decimal as SIGNED	3
8560Warnings:
8561Warning	1292	Truncated incorrect INTEGER value: '3.14'
8562select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_set';
8563concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
8564From JSON subselect opaque_mysql_type_set as SIGNED	0
8565Warnings:
8566Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8567select 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';
8568concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_enum') as SIGNED)
8569From JSON subselect opaque_mysql_type_enum as SIGNED	0
8570Warnings:
8571Warning	1292	Truncated incorrect INTEGER value: '"b"'
8572select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_date';
8573concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
8574From JSON subselect opaque_mysql_type_date as SIGNED	0
8575Warnings:
8576Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8577select 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';
8578concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_time') as SIGNED)
8579From JSON subselect opaque_mysql_type_time as SIGNED	0
8580Warnings:
8581Warning	1292	Truncated incorrect INTEGER value: '"23:24:25.000000"'
8582select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_datetime';
8583concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
8584From JSON subselect opaque_mysql_type_datetime as SIGNED	0
8585Warnings:
8586Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8587select 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';
8588concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_geom') as SIGNED)
8589From JSON subselect opaque_mysql_type_geom as SIGNED	0
8590Warnings:
8591Warning	1292	Truncated incorrect INTEGER value: '{"type": "Point", "coordinates": [1.0, 1.0]}'
8592select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_bit';
8593concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
8594From JSON subselect opaque_mysql_type_bit as SIGNED	0
8595Warnings:
8596Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8597select 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';
8598concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_year') as SIGNED)
8599From JSON subselect opaque_mysql_type_year as SIGNED	1992
8600select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_year';
8601concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
8602From JSON subselect opaque_mysql_type_year as SIGNED	1992
8603select 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';
8604concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_blob') as SIGNED)
8605From JSON subselect opaque_mysql_type_blob as SIGNED	0
8606Warnings:
8607Warning	1292	Truncated incorrect INTEGER value: '"base64:type252:yv66vg=="'
8608select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_longblob';
8609concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
8610From JSON subselect opaque_mysql_type_longblob as SIGNED	0
8611Warnings:
8612Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8613select 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';
8614concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_mediumblob') as SIGNED)
8615From JSON subselect opaque_mysql_type_mediumblob as SIGNED	0
8616Warnings:
8617Warning	1292	Truncated incorrect INTEGER value: '"base64:type250:yv66vg=="'
8618select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_tinyblob';
8619concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
8620From JSON subselect opaque_mysql_type_tinyblob as SIGNED	0
8621Warnings:
8622Warning	3156	Invalid JSON value for CAST to INTEGER from column j at row 1
8623select 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';
8624concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_varbinary') as SIGNED)
8625From JSON subselect opaque_mysql_type_varbinary as SIGNED	NULL
8626select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_binary';
8627concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
8628From JSON subselect opaque_mysql_type_binary as SIGNED	NULL
8629select 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';
8630concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_varchar') as SIGNED)
8631From JSON subselect opaque_mysql_type_varchar as SIGNED	0
8632Warnings:
8633Warning	1292	Truncated incorrect INTEGER value: '"base64:type15:Zm9v"'
8634select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_string';
8635concat('From JSON subselect ',c, ' as SIGNED')	cast(j as SIGNED)
8636From JSON subselect opaque_mysql_type_string as SIGNED	NULL
8637select 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';
8638concat('From JSON subselect ',c, ' as SIGNED')	cast((select j from t where c='opaque_mysql_type_var_string') as SIGNED)
8639From JSON subselect opaque_mysql_type_var_string as SIGNED	NULL
8640"Test for JSON vs JSON"
8641""
8642""
8643side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
8644"Comparator <"
8645"=============="
8646side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
8647"Comparator >="
8648"=============="
8649side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
8650"Comparator <="
8651"=============="
8652side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
8653"Comparator ="
8654"=============="
8655side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
8656"Comparator <>"
8657"=============="
8658side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
8659"Comparator <=>"
8660"=============="
8661side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
8662"Test for SQL vs JSON"
8663"Comparator ="
8664""
8665"Testcase for Tinyint"
8666validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
86672nd Level	1	12	INTEGER	INTEGER	2	2	0	1
86682nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
86692nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
86702nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
86712nd Level	1	3	INTEGER	INTEGER	2	2	0	1
86722nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
86732nd Level	12	1	INTEGER	INTEGER	2	2	0	1
86742nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
86752nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
86762nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
86772nd Level	12	3	INTEGER	INTEGER	2	2	0	1
86782nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
86792nd Level	3	1	INTEGER	INTEGER	2	2	0	1
86802nd Level	3	12	INTEGER	INTEGER	2	2	0	1
86812nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
86822nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
86832nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
86842nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
8685"Testcase for Boolean"
8686validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
86872nd Level	1	12	INTEGER	INTEGER	2	2	0	1
86882nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
86892nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
86902nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
86912nd Level	1	3	INTEGER	INTEGER	2	2	0	1
86922nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
86932nd Level	12	1	INTEGER	INTEGER	2	2	0	1
86942nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
86952nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
86962nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
86972nd Level	12	3	INTEGER	INTEGER	2	2	0	1
86982nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
86992nd Level	3	1	INTEGER	INTEGER	2	2	0	1
87002nd Level	3	12	INTEGER	INTEGER	2	2	0	1
87012nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
87022nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
87032nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
87042nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
8705"Testcase for small Int Signed"
8706validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
87072nd Level	1	12	INTEGER	INTEGER	2	2	0	1
87082nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
87092nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
87102nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
87112nd Level	1	3	INTEGER	INTEGER	2	2	0	1
87122nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
87132nd Level	12	1	INTEGER	INTEGER	2	2	0	1
87142nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
87152nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
87162nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
87172nd Level	12	3	INTEGER	INTEGER	2	2	0	1
87182nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
87192nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
87202nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
87212nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
87222nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
87232nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
87242nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
87252nd Level	3	1	INTEGER	INTEGER	2	2	0	1
87262nd Level	3	12	INTEGER	INTEGER	2	2	0	1
87272nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
87282nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
87292nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
87302nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
8731"Testcase for Signed Medium Int"
8732validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
87332nd Level	1	12	INTEGER	INTEGER	2	2	0	1
87342nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
87352nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
87362nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
87372nd Level	1	3	INTEGER	INTEGER	2	2	0	1
87382nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
87392nd Level	12	1	INTEGER	INTEGER	2	2	0	1
87402nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
87412nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
87422nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
87432nd Level	12	3	INTEGER	INTEGER	2	2	0	1
87442nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
87452nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
87462nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
87472nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
87482nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
87492nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
87502nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
87512nd Level	3	1	INTEGER	INTEGER	2	2	0	1
87522nd Level	3	12	INTEGER	INTEGER	2	2	0	1
87532nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
87542nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
87552nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
87562nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
8757"Testcase for unsigned Medium Int"
8758validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
87592nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
87602nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
87612nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
87622nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
87632nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
87642nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
87652nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
87662nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
87672nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
87682nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
87692nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
87702nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
87712nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
87722nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
87732nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
87742nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
87752nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
87762nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
87772nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
87782nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
87792nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
87802nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
87812nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
87822nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
8783"Testcase for signed Int"
8784validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
87852nd Level	1	12	INTEGER	INTEGER	2	2	0	1
87862nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
87872nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
87882nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
87892nd Level	1	3	INTEGER	INTEGER	2	2	0	1
87902nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
87912nd Level	12	1	INTEGER	INTEGER	2	2	0	1
87922nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
87932nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
87942nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
87952nd Level	12	3	INTEGER	INTEGER	2	2	0	1
87962nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
87972nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
87982nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
87992nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
88002nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
88012nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
88022nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
88032nd Level	3	1	INTEGER	INTEGER	2	2	0	1
88042nd Level	3	12	INTEGER	INTEGER	2	2	0	1
88052nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
88062nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
88072nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
88082nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
8809"Testcase for Unsigned Int"
8810validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
88112nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
88122nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
88132nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88142nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88152nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
88162nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
88172nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
88182nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
88192nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88202nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88212nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
88222nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
88232nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
88242nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
88252nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88262nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88272nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
88282nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
88292nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
88302nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
88312nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
88322nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88332nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88342nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
8835"Testcase for Big Int"
8836validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
88372nd Level	1	12	INTEGER	INTEGER	2	2	0	1
88382nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
88392nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
88402nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
88412nd Level	1	3	INTEGER	INTEGER	2	2	0	1
88422nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
88432nd Level	12	1	INTEGER	INTEGER	2	2	0	1
88442nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
88452nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
88462nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
88472nd Level	12	3	INTEGER	INTEGER	2	2	0	1
88482nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
88492nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
88502nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
88512nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
88522nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
88532nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
88542nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
88552nd Level	3	1	INTEGER	INTEGER	2	2	0	1
88562nd Level	3	12	INTEGER	INTEGER	2	2	0	1
88572nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
88582nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
88592nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
88602nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
8861"Testcase for Big Int Unsigned"
8862validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
88632nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
88642nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
88652nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88662nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88672nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
88682nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
88692nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
88702nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
88712nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88722nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88732nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
88742nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
88752nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
88762nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
88772nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88782nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88792nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
88802nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
88812nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
88822nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
88832nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
88842nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88852nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
88862nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
8887"Testcase for Decimal"
8888validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
88892nd Level	1.00	12	DECIMAL	INTEGER	2	2	0	1
88902nd Level	1.00	1992	DECIMAL	INTEGER	2	2	0	1
88912nd Level	1.00	2003	DECIMAL	UNSIGNED INTEGER	2	2	0	1
88922nd Level	1.00	2012	DECIMAL	UNSIGNED INTEGER	2	2	0	1
88932nd Level	1.00	3	DECIMAL	INTEGER	2	2	0	1
88942nd Level	1.00	3.14	DECIMAL	DECIMAL	2	2	0	1
88952nd Level	12.00	1	DECIMAL	INTEGER	2	2	0	1
88962nd Level	12.00	1992	DECIMAL	INTEGER	2	2	0	1
88972nd Level	12.00	2003	DECIMAL	UNSIGNED INTEGER	2	2	0	1
88982nd Level	12.00	2012	DECIMAL	UNSIGNED INTEGER	2	2	0	1
88992nd Level	12.00	3	DECIMAL	INTEGER	2	2	0	1
89002nd Level	12.00	3.14	DECIMAL	DECIMAL	2	2	0	1
89012nd Level	3.14	1	DECIMAL	INTEGER	2	2	0	1
89022nd Level	3.14	12	DECIMAL	INTEGER	2	2	0	1
89032nd Level	3.14	1992	DECIMAL	INTEGER	2	2	0	1
89042nd Level	3.14	2003	DECIMAL	UNSIGNED INTEGER	2	2	0	1
89052nd Level	3.14	2012	DECIMAL	UNSIGNED INTEGER	2	2	0	1
89062nd Level	3.14	3	DECIMAL	INTEGER	2	2	0	1
8907"Testcase for Double"
8908validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
89092nd Level	1	12	DOUBLE	INTEGER	2	2	0	1
89102nd Level	1	1992	DOUBLE	INTEGER	2	2	0	1
89112nd Level	1	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
89122nd Level	1	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
89132nd Level	1	3	DOUBLE	INTEGER	2	2	0	1
89142nd Level	1	3.14	DOUBLE	DECIMAL	2	2	0	1
89152nd Level	12	1	DOUBLE	INTEGER	2	2	0	1
89162nd Level	12	1992	DOUBLE	INTEGER	2	2	0	1
89172nd Level	12	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
89182nd Level	12	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
89192nd Level	12	3	DOUBLE	INTEGER	2	2	0	1
89202nd Level	12	3.14	DOUBLE	DECIMAL	2	2	0	1
89212nd Level	1992	1	DOUBLE	INTEGER	2	2	0	1
89222nd Level	1992	12	DOUBLE	INTEGER	2	2	0	1
89232nd Level	1992	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
89242nd Level	1992	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
89252nd Level	1992	3	DOUBLE	INTEGER	2	2	0	1
89262nd Level	1992	3.14	DOUBLE	DECIMAL	2	2	0	1
89272nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
89282nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
89292nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
89302nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
89312nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
89322nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
8933"Testcase for CHAR"
8934validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
89351st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
89362nd Level	"1"	"1"	STRING	STRING	3	3	0	1
89372nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
89382nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
89392nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
89402nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
89412nd Level	"1"	"a"	STRING	STRING	3	3	0	1
89422nd Level	"1"	"b"	STRING	STRING	3	3	0	1
89432nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
89442nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
89452nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
89462nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
89472nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
89482nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
89492nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
89502nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
89512nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
89522nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
89532nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
89542nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
89552nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
89562nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
89572nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
89582nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
89592nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
89602nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
89612nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
89622nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
89632nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
89642nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
89652nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
89662nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
89672nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
89682nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
89692nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
89702nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
89712nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
89722nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
89732nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
89742nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
89752nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
89762nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
89772nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
89782nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
89792nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
89802nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
89812nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
89822nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
89832nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
89842nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
89852nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
89862nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
89872nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
89882nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
89892nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
89902nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
89912nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
89922nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
89932nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
89942nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
89952nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
89962nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
89972nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
89982nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
89992nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
90002nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
90012nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
90022nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
90032nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
90042nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
90052nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
90062nd Level	"a"	"1"	STRING	STRING	3	3	0	1
90072nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
90082nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
90092nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
90102nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
90112nd Level	"a"	"a"	STRING	STRING	3	3	0	1
90122nd Level	"a"	"b"	STRING	STRING	3	3	0	1
90132nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
90142nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
90152nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
90162nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
90172nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
90182nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
90192nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
90202nd Level	"b"	"1"	STRING	STRING	3	3	0	1
90212nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
90222nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
90232nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
90242nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
90252nd Level	"b"	"a"	STRING	STRING	3	3	0	1
90262nd Level	"b"	"b"	STRING	STRING	3	3	0	1
90272nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
90282nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
90292nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
90302nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
90312nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
90322nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
90332nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
90342nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
90352nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
90362nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
90372nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
90382nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
90392nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
90402nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
90412nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
90422nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
90432nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
90442nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
90452nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
90462nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
90472nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
90482nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
90492nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
90502nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
90512nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
90522nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
90532nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
90542nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
90552nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
90562nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
90572nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
90582nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
90592nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
90602nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
90612nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
90622nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
90632nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
90642nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
90652nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
90662nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
90672nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
90682nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
90692nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
90702nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
90712nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
90722nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
90732nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
90742nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
90752nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
90762nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
90772nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
90782nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
90792nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
90802nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
90812nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
90822nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
90832nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
90842nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
90852nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
90862nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
90872nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
90882nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
90892nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
90902nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
90912nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
90922nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
90932nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
90942nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
90952nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
90962nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
90972nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
90982nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
90992nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
91002nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
91012nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
91022nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
91032nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
91042nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
91052nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
91062nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
91072nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
91082nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
91092nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
91102nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
91112nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
91122nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
91132nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
91142nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
91152nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
91162nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
91172nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
91182nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
91192nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
91202nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
91212nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
91222nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
91232nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
91242nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
91252nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
91262nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
91272nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
91282nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
91292nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
91302nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
91312nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
91322nd Level	12	1	INTEGER	INTEGER	2	2	0	1
91332nd Level	12	12	INTEGER	INTEGER	2	2	0	1
91342nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
91352nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
91362nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
91372nd Level	12	3	INTEGER	INTEGER	2	2	0	1
91382nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
91392nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
91402nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
91412nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
91422nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
91432nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
91442nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
91452nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
91462nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
91472nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
91482nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
91492nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
91502nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
91512nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
91522nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
91532nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
91542nd Level	null	null	NULL	NULL	1	1	0	1
91552nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
91562nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
91572nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
91582nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
91592nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
9160"Testcase for VARCHAR"
9161validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
91621st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
91632nd Level	"1"	"1"	STRING	STRING	3	3	0	1
91642nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
91652nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
91662nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
91672nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
91682nd Level	"1"	"a"	STRING	STRING	3	3	0	1
91692nd Level	"1"	"b"	STRING	STRING	3	3	0	1
91702nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
91712nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
91722nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
91732nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
91742nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
91752nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
91762nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
91772nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
91782nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
91792nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
91802nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
91812nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
91822nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
91832nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
91842nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
91852nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
91862nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
91872nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
91882nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
91892nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
91902nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
91912nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
91922nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
91932nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
91942nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
91952nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
91962nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
91972nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
91982nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
91992nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
92002nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
92012nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
92022nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
92032nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
92042nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
92052nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
92062nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
92072nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
92082nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
92092nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
92102nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
92112nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
92122nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
92132nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
92142nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
92152nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
92162nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
92172nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
92182nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
92192nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
92202nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
92212nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
92222nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
92232nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
92242nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
92252nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
92262nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
92272nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
92282nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
92292nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
92302nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
92312nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
92322nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
92332nd Level	"a"	"1"	STRING	STRING	3	3	0	1
92342nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
92352nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
92362nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
92372nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
92382nd Level	"a"	"a"	STRING	STRING	3	3	0	1
92392nd Level	"a"	"b"	STRING	STRING	3	3	0	1
92402nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
92412nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
92422nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
92432nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
92442nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
92452nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
92462nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
92472nd Level	"b"	"1"	STRING	STRING	3	3	0	1
92482nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
92492nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
92502nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
92512nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
92522nd Level	"b"	"a"	STRING	STRING	3	3	0	1
92532nd Level	"b"	"b"	STRING	STRING	3	3	0	1
92542nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
92552nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
92562nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
92572nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
92582nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
92592nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
92602nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
92612nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
92622nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
92632nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
92642nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
92652nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
92662nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
92672nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
92682nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
92692nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
92702nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
92712nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
92722nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
92732nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
92742nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
92752nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
92762nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
92772nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
92782nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
92792nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
92802nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
92812nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
92822nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
92832nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
92842nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
92852nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
92862nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
92872nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
92882nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
92892nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
92902nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
92912nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
92922nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
92932nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
92942nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
92952nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
92962nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
92972nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
92982nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
92992nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
93002nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
93012nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
93022nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
93032nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
93042nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
93052nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
93062nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
93072nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
93082nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
93092nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
93102nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
93112nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
93122nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
93132nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
93142nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
93152nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
93162nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
93172nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
93182nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
93192nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
93202nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
93212nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
93222nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
93232nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
93242nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
93252nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
93262nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
93272nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
93282nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
93292nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
93302nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
93312nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
93322nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
93332nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
93342nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
93352nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
93362nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
93372nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
93382nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
93392nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
93402nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
93412nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
93422nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
93432nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
93442nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
93452nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
93462nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
93472nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
93482nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
93492nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
93502nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
93512nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
93522nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
93532nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
93542nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
93552nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
93562nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
93572nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
93582nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
93592nd Level	12	1	INTEGER	INTEGER	2	2	0	1
93602nd Level	12	12	INTEGER	INTEGER	2	2	0	1
93612nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
93622nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
93632nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
93642nd Level	12	3	INTEGER	INTEGER	2	2	0	1
93652nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
93662nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
93672nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
93682nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
93692nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
93702nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
93712nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
93722nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
93732nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
93742nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
93752nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
93762nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
93772nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
93782nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
93792nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
93802nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
93812nd Level	null	null	NULL	NULL	1	1	0	1
93822nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
93832nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
93842nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
93852nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
93862nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
9387"Testcase for Binary(255)"
9388validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
9389"Testcase for Variable Binary"
9390validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
9391"Testcase for TinyBlob"
9392validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
9393"Testcase for TinyText"
9394validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
93951st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
93962nd Level	"1"	"1"	STRING	STRING	3	3	0	1
93972nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
93982nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
93992nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
94002nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
94012nd Level	"1"	"a"	STRING	STRING	3	3	0	1
94022nd Level	"1"	"b"	STRING	STRING	3	3	0	1
94032nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
94042nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
94052nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
94062nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
94072nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
94082nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
94092nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
94102nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
94112nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
94122nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
94132nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
94142nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
94152nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
94162nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
94172nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
94182nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
94192nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
94202nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
94212nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
94222nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
94232nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
94242nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
94252nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
94262nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
94272nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
94282nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
94292nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
94302nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
94312nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
94322nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
94332nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
94342nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
94352nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
94362nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
94372nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
94382nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
94392nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
94402nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
94412nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
94422nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
94432nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
94442nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
94452nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
94462nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
94472nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
94482nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
94492nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
94502nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
94512nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
94522nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
94532nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
94542nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
94552nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
94562nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
94572nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
94582nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
94592nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
94602nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
94612nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
94622nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
94632nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
94642nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
94652nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
94662nd Level	"a"	"1"	STRING	STRING	3	3	0	1
94672nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
94682nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
94692nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
94702nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
94712nd Level	"a"	"a"	STRING	STRING	3	3	0	1
94722nd Level	"a"	"b"	STRING	STRING	3	3	0	1
94732nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
94742nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
94752nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
94762nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
94772nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
94782nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
94792nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
94802nd Level	"b"	"1"	STRING	STRING	3	3	0	1
94812nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
94822nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
94832nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
94842nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
94852nd Level	"b"	"a"	STRING	STRING	3	3	0	1
94862nd Level	"b"	"b"	STRING	STRING	3	3	0	1
94872nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
94882nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
94892nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
94902nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
94912nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
94922nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
94932nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
94942nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
94952nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
94962nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
94972nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
94982nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
94992nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
95002nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
95012nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
95022nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
95032nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
95042nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
95052nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
95062nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
95072nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
95082nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
95092nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
95102nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
95112nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
95122nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
95132nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
95142nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
95152nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
95162nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
95172nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
95182nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
95192nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
95202nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
95212nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
95222nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
95232nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
95242nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
95252nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
95262nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
95272nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
95282nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
95292nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
95302nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
95312nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
95322nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
95332nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
95342nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
95352nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
95362nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
95372nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
95382nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
95392nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
95402nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
95412nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
95422nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
95432nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
95442nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
95452nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
95462nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
95472nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
95482nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
95492nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
95502nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
95512nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
95522nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
95532nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
95542nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
95552nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
95562nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
95572nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
95582nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
95592nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
95602nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
95612nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
95622nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
95632nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
95642nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
95652nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
95662nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
95672nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
95682nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
95692nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
95702nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
95712nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
95722nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
95732nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
95742nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
95752nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
95762nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
95772nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
95782nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
95792nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
95802nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
95812nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
95822nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
95832nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
95842nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
95852nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
95862nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
95872nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
95882nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
95892nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
95902nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
95912nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
95922nd Level	12	1	INTEGER	INTEGER	2	2	0	1
95932nd Level	12	12	INTEGER	INTEGER	2	2	0	1
95942nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
95952nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
95962nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
95972nd Level	12	3	INTEGER	INTEGER	2	2	0	1
95982nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
95992nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
96002nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
96012nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
96022nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
96032nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
96042nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
96052nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
96062nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
96072nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
96082nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
96092nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
96102nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
96112nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
96122nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
96132nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
96142nd Level	null	null	NULL	NULL	1	1	0	1
96152nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
96162nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
96172nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
96182nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
96192nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
9620"Testcase for Blob"
9621validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
9622"Testcase for Text"
9623validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
96241st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
96252nd Level	"1"	"1"	STRING	STRING	3	3	0	1
96262nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
96272nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
96282nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
96292nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
96302nd Level	"1"	"a"	STRING	STRING	3	3	0	1
96312nd Level	"1"	"b"	STRING	STRING	3	3	0	1
96322nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
96332nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
96342nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
96352nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
96362nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
96372nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
96382nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
96392nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
96402nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
96412nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
96422nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
96432nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
96442nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
96452nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
96462nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
96472nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
96482nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
96492nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
96502nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
96512nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
96522nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
96532nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
96542nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
96552nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
96562nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
96572nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
96582nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
96592nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
96602nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
96612nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
96622nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
96632nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
96642nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
96652nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
96662nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
96672nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
96682nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
96692nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
96702nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
96712nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
96722nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
96732nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
96742nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
96752nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
96762nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
96772nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
96782nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
96792nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
96802nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
96812nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
96822nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
96832nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
96842nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
96852nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
96862nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
96872nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
96882nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
96892nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
96902nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
96912nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
96922nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
96932nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
96942nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
96952nd Level	"a"	"1"	STRING	STRING	3	3	0	1
96962nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
96972nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
96982nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
96992nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
97002nd Level	"a"	"a"	STRING	STRING	3	3	0	1
97012nd Level	"a"	"b"	STRING	STRING	3	3	0	1
97022nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
97032nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
97042nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
97052nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
97062nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
97072nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
97082nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
97092nd Level	"b"	"1"	STRING	STRING	3	3	0	1
97102nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
97112nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
97122nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
97132nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
97142nd Level	"b"	"a"	STRING	STRING	3	3	0	1
97152nd Level	"b"	"b"	STRING	STRING	3	3	0	1
97162nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
97172nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
97182nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
97192nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
97202nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
97212nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
97222nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
97232nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
97242nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
97252nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
97262nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
97272nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
97282nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
97292nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
97302nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
97312nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
97322nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
97332nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
97342nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
97352nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
97362nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
97372nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
97382nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
97392nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
97402nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
97412nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
97422nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
97432nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
97442nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
97452nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
97462nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
97472nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
97482nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
97492nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
97502nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
97512nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
97522nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
97532nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
97542nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
97552nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
97562nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
97572nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
97582nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
97592nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
97602nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
97612nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
97622nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
97632nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
97642nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
97652nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
97662nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
97672nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
97682nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
97692nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
97702nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
97712nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
97722nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
97732nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
97742nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
97752nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
97762nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
97772nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
97782nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
97792nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
97802nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
97812nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
97822nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
97832nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
97842nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
97852nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
97862nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
97872nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
97882nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
97892nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
97902nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
97912nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
97922nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
97932nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
97942nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
97952nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
97962nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
97972nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
97982nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
97992nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
98002nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
98012nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
98022nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
98032nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
98042nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
98052nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
98062nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
98072nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
98082nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
98092nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
98102nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
98112nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
98122nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
98132nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
98142nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
98152nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
98162nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
98172nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
98182nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
98192nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
98202nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
98212nd Level	12	1	INTEGER	INTEGER	2	2	0	1
98222nd Level	12	12	INTEGER	INTEGER	2	2	0	1
98232nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
98242nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
98252nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
98262nd Level	12	3	INTEGER	INTEGER	2	2	0	1
98272nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
98282nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
98292nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
98302nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
98312nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
98322nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
98332nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
98342nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
98352nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
98362nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
98372nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
98382nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
98392nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
98402nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
98412nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
98422nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
98432nd Level	null	null	NULL	NULL	1	1	0	1
98442nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
98452nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
98462nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
98472nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
98482nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
9849"Testcase for Medium Blob"
9850validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
9851"Testcase for Medium Text"
9852validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
98531st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
98542nd Level	"1"	"1"	STRING	STRING	3	3	0	1
98552nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
98562nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
98572nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
98582nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
98592nd Level	"1"	"a"	STRING	STRING	3	3	0	1
98602nd Level	"1"	"b"	STRING	STRING	3	3	0	1
98612nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
98622nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
98632nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
98642nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
98652nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
98662nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
98672nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
98682nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
98692nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
98702nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
98712nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
98722nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
98732nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
98742nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
98752nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
98762nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
98772nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
98782nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
98792nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
98802nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
98812nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
98822nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
98832nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
98842nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
98852nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
98862nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
98872nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
98882nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
98892nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
98902nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
98912nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
98922nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
98932nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
98942nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
98952nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
98962nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
98972nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
98982nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
98992nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
99002nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
99012nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
99022nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
99032nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
99042nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
99052nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
99062nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
99072nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
99082nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
99092nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
99102nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
99112nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
99122nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
99132nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
99142nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
99152nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
99162nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
99172nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
99182nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
99192nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
99202nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
99212nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
99222nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
99232nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
99242nd Level	"a"	"1"	STRING	STRING	3	3	0	1
99252nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
99262nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
99272nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
99282nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
99292nd Level	"a"	"a"	STRING	STRING	3	3	0	1
99302nd Level	"a"	"b"	STRING	STRING	3	3	0	1
99312nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
99322nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
99332nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
99342nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
99352nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
99362nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
99372nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
99382nd Level	"b"	"1"	STRING	STRING	3	3	0	1
99392nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
99402nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
99412nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
99422nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
99432nd Level	"b"	"a"	STRING	STRING	3	3	0	1
99442nd Level	"b"	"b"	STRING	STRING	3	3	0	1
99452nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
99462nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
99472nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
99482nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
99492nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
99502nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
99512nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
99522nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
99532nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
99542nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
99552nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
99562nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
99572nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
99582nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
99592nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
99602nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
99612nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
99622nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
99632nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
99642nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
99652nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
99662nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
99672nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
99682nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
99692nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
99702nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
99712nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
99722nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
99732nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
99742nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
99752nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
99762nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
99772nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
99782nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
99792nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
99802nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
99812nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
99822nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
99832nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
99842nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
99852nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
99862nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
99872nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
99882nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
99892nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
99902nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
99912nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
99922nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
99932nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
99942nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
99952nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
99962nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
99972nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
99982nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
99992nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
100002nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
100012nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
100022nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
100032nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
100042nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
100052nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
100062nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
100072nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
100082nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
100092nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
100102nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
100112nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
100122nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
100132nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
100142nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
100152nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
100162nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
100172nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
100182nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
100192nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
100202nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
100212nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
100222nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
100232nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
100242nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
100252nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
100262nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
100272nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
100282nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
100292nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
100302nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
100312nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
100322nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
100332nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
100342nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
100352nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
100362nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
100372nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
100382nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
100392nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
100402nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
100412nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
100422nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
100432nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
100442nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
100452nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
100462nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
100472nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
100482nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
100492nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
100502nd Level	12	1	INTEGER	INTEGER	2	2	0	1
100512nd Level	12	12	INTEGER	INTEGER	2	2	0	1
100522nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
100532nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
100542nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
100552nd Level	12	3	INTEGER	INTEGER	2	2	0	1
100562nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
100572nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
100582nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
100592nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
100602nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
100612nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
100622nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
100632nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
100642nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
100652nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
100662nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
100672nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
100682nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
100692nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
100702nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
100712nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
100722nd Level	null	null	NULL	NULL	1	1	0	1
100732nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
100742nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
100752nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
100762nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
100772nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
10078"Testcase for Long Blob"
10079validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
10080"Testcase for Long Text"
10081validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
100821st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
100832nd Level	"1"	"1"	STRING	STRING	3	3	0	1
100842nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
100852nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
100862nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
100872nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
100882nd Level	"1"	"a"	STRING	STRING	3	3	0	1
100892nd Level	"1"	"b"	STRING	STRING	3	3	0	1
100902nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
100912nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
100922nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
100932nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
100942nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
100952nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
100962nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
100972nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
100982nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
100992nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
101002nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
101012nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
101022nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
101032nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
101042nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
101052nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
101062nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
101072nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
101082nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
101092nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
101102nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
101112nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
101122nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
101132nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
101142nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
101152nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
101162nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
101172nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
101182nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
101192nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
101202nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
101212nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
101222nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
101232nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
101242nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
101252nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
101262nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
101272nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
101282nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
101292nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
101302nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
101312nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
101322nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
101332nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
101342nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
101352nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
101362nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
101372nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
101382nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
101392nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
101402nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
101412nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
101422nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
101432nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
101442nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
101452nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
101462nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
101472nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
101482nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
101492nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
101502nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
101512nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
101522nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
101532nd Level	"a"	"1"	STRING	STRING	3	3	0	1
101542nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
101552nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
101562nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
101572nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
101582nd Level	"a"	"a"	STRING	STRING	3	3	0	1
101592nd Level	"a"	"b"	STRING	STRING	3	3	0	1
101602nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
101612nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
101622nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
101632nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
101642nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
101652nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
101662nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
101672nd Level	"b"	"1"	STRING	STRING	3	3	0	1
101682nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
101692nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
101702nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
101712nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
101722nd Level	"b"	"a"	STRING	STRING	3	3	0	1
101732nd Level	"b"	"b"	STRING	STRING	3	3	0	1
101742nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
101752nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
101762nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
101772nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
101782nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
101792nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
101802nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
101812nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
101822nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
101832nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
101842nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
101852nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
101862nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
101872nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
101882nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
101892nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
101902nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
101912nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
101922nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
101932nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
101942nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
101952nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
101962nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
101972nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
101982nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
101992nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
102002nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
102012nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
102022nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
102032nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
102042nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
102052nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
102062nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
102072nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
102082nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
102092nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
102102nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
102112nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
102122nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
102132nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
102142nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
102152nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
102162nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
102172nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
102182nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
102192nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
102202nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
102212nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
102222nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
102232nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
102242nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
102252nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
102262nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
102272nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
102282nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
102292nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
102302nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
102312nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
102322nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
102332nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
102342nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
102352nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
102362nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
102372nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
102382nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
102392nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
102402nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
102412nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
102422nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
102432nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
102442nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
102452nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
102462nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
102472nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
102482nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
102492nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
102502nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
102512nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
102522nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
102532nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
102542nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
102552nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
102562nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
102572nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
102582nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
102592nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
102602nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
102612nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
102622nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
102632nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
102642nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
102652nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
102662nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
102672nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
102682nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
102692nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
102702nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
102712nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
102722nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
102732nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
102742nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
102752nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
102762nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
102772nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
102782nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
102792nd Level	12	1	INTEGER	INTEGER	2	2	0	1
102802nd Level	12	12	INTEGER	INTEGER	2	2	0	1
102812nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
102822nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
102832nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
102842nd Level	12	3	INTEGER	INTEGER	2	2	0	1
102852nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
102862nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
102872nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
102882nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
102892nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
102902nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
102912nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
102922nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
102932nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
102942nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
102952nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
102962nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
102972nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
102982nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
102992nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
103002nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
103012nd Level	null	null	NULL	NULL	1	1	0	1
103022nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
103032nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
103042nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
103052nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
103062nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
10307"Testcase for Enum"
10308validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
10309"Testcase for Set"
10310validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
10311"Test for SQL vs JSON"
10312"Comparator <"
10313""
10314"Testcase for Tinyint"
10315validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
103162nd Level	1	12	INTEGER	INTEGER	2	2	1	0
103172nd Level	1	1992	INTEGER	INTEGER	2	2	1	0
103182nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
103192nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
103202nd Level	1	3	INTEGER	INTEGER	2	2	1	0
103212nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
103222nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
103232nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
103242nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
103252nd Level	3	12	INTEGER	INTEGER	2	2	1	0
103262nd Level	3	1992	INTEGER	INTEGER	2	2	1	0
103272nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
103282nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
103292nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
10330"Testcase for Boolean"
10331validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
103322nd Level	1	12	INTEGER	INTEGER	2	2	1	0
103332nd Level	1	1992	INTEGER	INTEGER	2	2	1	0
103342nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
103352nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
103362nd Level	1	3	INTEGER	INTEGER	2	2	1	0
103372nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
103382nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
103392nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
103402nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
103412nd Level	3	12	INTEGER	INTEGER	2	2	1	0
103422nd Level	3	1992	INTEGER	INTEGER	2	2	1	0
103432nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
103442nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
103452nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
10346"Testcase for small Int Signed"
10347validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
103482nd Level	1	12	INTEGER	INTEGER	2	2	1	0
103492nd Level	1	1992	INTEGER	INTEGER	2	2	1	0
103502nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
103512nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
103522nd Level	1	3	INTEGER	INTEGER	2	2	1	0
103532nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
103542nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
103552nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
103562nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
103572nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
103582nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
103592nd Level	3	12	INTEGER	INTEGER	2	2	1	0
103602nd Level	3	1992	INTEGER	INTEGER	2	2	1	0
103612nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
103622nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
103632nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
10364"Testcase for Signed Medium Int"
10365validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
103662nd Level	1	12	INTEGER	INTEGER	2	2	1	0
103672nd Level	1	1992	INTEGER	INTEGER	2	2	1	0
103682nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
103692nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
103702nd Level	1	3	INTEGER	INTEGER	2	2	1	0
103712nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
103722nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
103732nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
103742nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
103752nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
103762nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
103772nd Level	3	12	INTEGER	INTEGER	2	2	1	0
103782nd Level	3	1992	INTEGER	INTEGER	2	2	1	0
103792nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
103802nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
103812nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
10382"Testcase for unsigned Medium Int"
10383validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
103842nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
103852nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
103862nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
103872nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
103882nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
103892nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
103902nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
103912nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
103922nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
103932nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
103942nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
103952nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
103962nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
103972nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
103982nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
103992nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
10400"Testcase for signed Int"
10401validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
104022nd Level	1	12	INTEGER	INTEGER	2	2	1	0
104032nd Level	1	1992	INTEGER	INTEGER	2	2	1	0
104042nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
104052nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
104062nd Level	1	3	INTEGER	INTEGER	2	2	1	0
104072nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
104082nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
104092nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
104102nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
104112nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
104122nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
104132nd Level	3	12	INTEGER	INTEGER	2	2	1	0
104142nd Level	3	1992	INTEGER	INTEGER	2	2	1	0
104152nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
104162nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
104172nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
10418"Testcase for Unsigned Int"
10419validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
104202nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
104212nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
104222nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104232nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104242nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
104252nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
104262nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
104272nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104282nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104292nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104302nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104312nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
104322nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
104332nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104342nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104352nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
10436"Testcase for Big Int"
10437validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
104382nd Level	1	12	INTEGER	INTEGER	2	2	1	0
104392nd Level	1	1992	INTEGER	INTEGER	2	2	1	0
104402nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
104412nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
104422nd Level	1	3	INTEGER	INTEGER	2	2	1	0
104432nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
104442nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
104452nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
104462nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
104472nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
104482nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
104492nd Level	3	12	INTEGER	INTEGER	2	2	1	0
104502nd Level	3	1992	INTEGER	INTEGER	2	2	1	0
104512nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
104522nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
104532nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
10454"Testcase for Big Int Unsigned"
10455validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
104562nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
104572nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
104582nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104592nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104602nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
104612nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
104622nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
104632nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104642nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104652nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104662nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104672nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
104682nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
104692nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104702nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
104712nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
10472"Testcase for Decimal"
10473validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
104742nd Level	1.00	12	DECIMAL	INTEGER	2	2	1	0
104752nd Level	1.00	1992	DECIMAL	INTEGER	2	2	1	0
104762nd Level	1.00	2003	DECIMAL	UNSIGNED INTEGER	2	2	1	0
104772nd Level	1.00	2012	DECIMAL	UNSIGNED INTEGER	2	2	1	0
104782nd Level	1.00	3	DECIMAL	INTEGER	2	2	1	0
104792nd Level	1.00	3.14	DECIMAL	DECIMAL	2	2	1	0
104802nd Level	12.00	1992	DECIMAL	INTEGER	2	2	1	0
104812nd Level	12.00	2003	DECIMAL	UNSIGNED INTEGER	2	2	1	0
104822nd Level	12.00	2012	DECIMAL	UNSIGNED INTEGER	2	2	1	0
104832nd Level	3.14	12	DECIMAL	INTEGER	2	2	1	0
104842nd Level	3.14	1992	DECIMAL	INTEGER	2	2	1	0
104852nd Level	3.14	2003	DECIMAL	UNSIGNED INTEGER	2	2	1	0
104862nd Level	3.14	2012	DECIMAL	UNSIGNED INTEGER	2	2	1	0
10487"Testcase for Double"
10488validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
104892nd Level	1	12	DOUBLE	INTEGER	2	2	1	0
104902nd Level	1	1992	DOUBLE	INTEGER	2	2	1	0
104912nd Level	1	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
104922nd Level	1	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
104932nd Level	1	3	DOUBLE	INTEGER	2	2	1	0
104942nd Level	1	3.14	DOUBLE	DECIMAL	2	2	1	0
104952nd Level	12	1992	DOUBLE	INTEGER	2	2	1	0
104962nd Level	12	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
104972nd Level	12	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
104982nd Level	1992	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
104992nd Level	1992	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
105002nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
105012nd Level	3.14	1992	DOUBLE	INTEGER	2	2	1	0
105022nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
105032nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
10504"Testcase for CHAR"
10505validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
105061st Level	12	"1"	INTEGER	STRING	2	3	0	1
105071st Level	1992	"1"	INTEGER	STRING	2	3	0	1
105081st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
105091st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
105101st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
105111st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
105121st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
105131st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
105141st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
105151st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
105161st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
105171st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	1	0
105181st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
105191st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
105201st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
105211st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
105221st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
105231st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	1	0
105241st Level	null	"1"	NULL	STRING	1	3	0	1
105251st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
105261st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
105271st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
105281st Level	null	"3.14"	NULL	STRING	1	3	0	1
105291st Level	null	"a"	NULL	STRING	1	3	0	1
105301st Level	null	"b"	NULL	STRING	1	3	0	1
105311st Level	null	"b,c"	NULL	STRING	1	3	0	1
105321st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
105331st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	0	1
105341st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
105351st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
105361st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
105371st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
105381st Level	null	1	NULL	INTEGER	1	2	0	1
105391st Level	null	12	NULL	INTEGER	1	2	0	1
105401st Level	null	1992	NULL	INTEGER	1	2	0	1
105411st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	0	1
105421st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	0	1
105431st Level	null	3	NULL	INTEGER	1	2	0	1
105441st Level	null	3.14	NULL	DECIMAL	1	2	0	1
105451st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
105461st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
105471st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	1	0
105482nd Level	"1"	"1"	STRING	STRING	3	3	1	0
105492nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
105502nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
105512nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
105522nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
105532nd Level	"1"	"a"	STRING	STRING	3	3	1	0
105542nd Level	"1"	"b"	STRING	STRING	3	3	1	0
105552nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
105562nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
105572nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
105582nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
105592nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
105602nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
105612nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
105622nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
105632nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
105642nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
105652nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
105662nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
105672nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
105682nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
105692nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
105702nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
105712nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
105722nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
105732nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
105742nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
105752nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
105762nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
105772nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
105782nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
105792nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
105802nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
105812nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
105822nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
105832nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
105842nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
105852nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
105862nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
105872nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
105882nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
105892nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
105902nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
105912nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
105922nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
105932nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
105942nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
105952nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
105962nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
105972nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
105982nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
105992nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
106002nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
106012nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
106022nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
106032nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
106042nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
106052nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
106062nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
106072nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
106082nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
106092nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
106102nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
106112nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
106122nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
106132nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
106142nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
106152nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
106162nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
106172nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
106182nd Level	"a"	"1"	STRING	STRING	3	3	1	0
106192nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
106202nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
106212nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
106222nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
106232nd Level	"a"	"a"	STRING	STRING	3	3	1	0
106242nd Level	"a"	"b"	STRING	STRING	3	3	1	0
106252nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
106262nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
106272nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
106282nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
106292nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
106302nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
106312nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
106322nd Level	"b"	"1"	STRING	STRING	3	3	1	0
106332nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
106342nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
106352nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
106362nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
106372nd Level	"b"	"a"	STRING	STRING	3	3	1	0
106382nd Level	"b"	"b"	STRING	STRING	3	3	1	0
106392nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
106402nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
106412nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
106422nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
106432nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
106442nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
106452nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
106462nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
106472nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
106482nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
106492nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
106502nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
106512nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
106522nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
106532nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
106542nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
106552nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
106562nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
106572nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
106582nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
106592nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
106602nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
106612nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
106622nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
106632nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
106642nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
106652nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
106662nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
106672nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
106682nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
106692nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
106702nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
106712nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
106722nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
106732nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
106742nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	1	0
106752nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
106762nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
106772nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
106782nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	1	0
106792nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	1	0
106802nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	1	0
106812nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	1	0
106822nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
106832nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
106842nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
106852nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
106862nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
106872nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
106882nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
106892nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
106902nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
106912nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
106922nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
106932nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
106942nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
106952nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
106962nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
106972nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
106982nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
106992nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
107002nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
107012nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
107022nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
107032nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
107042nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
107052nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
107062nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
107072nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
107082nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
107092nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
107102nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
107112nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
107122nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
107132nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
107142nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
107152nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
107162nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
107172nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
107182nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
107192nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
107202nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
107212nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
107222nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
107232nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
107242nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
107252nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
107262nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
107272nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
107282nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
107292nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
107302nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
107312nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
107322nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
107332nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
107342nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
107352nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
107362nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
107372nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
107382nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
107392nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
107402nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
107412nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
107422nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
107432nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
107442nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
107452nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
107462nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
107472nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
107482nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
107492nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
10750"Testcase for VARCHAR"
10751validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
107521st Level	12	"1"	INTEGER	STRING	2	3	0	1
107531st Level	1992	"1"	INTEGER	STRING	2	3	0	1
107541st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
107551st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
107561st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
107571st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
107581st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
107591st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
107601st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
107611st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
107621st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
107631st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	1	0
107641st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
107651st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
107661st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
107671st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
107681st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
107691st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	1	0
107701st Level	null	"1"	NULL	STRING	1	3	0	1
107711st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
107721st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
107731st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
107741st Level	null	"3.14"	NULL	STRING	1	3	0	1
107751st Level	null	"a"	NULL	STRING	1	3	0	1
107761st Level	null	"b"	NULL	STRING	1	3	0	1
107771st Level	null	"b,c"	NULL	STRING	1	3	0	1
107781st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
107791st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	0	1
107801st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
107811st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
107821st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
107831st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
107841st Level	null	1	NULL	INTEGER	1	2	0	1
107851st Level	null	12	NULL	INTEGER	1	2	0	1
107861st Level	null	1992	NULL	INTEGER	1	2	0	1
107871st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	0	1
107881st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	0	1
107891st Level	null	3	NULL	INTEGER	1	2	0	1
107901st Level	null	3.14	NULL	DECIMAL	1	2	0	1
107911st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
107921st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
107931st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	1	0
107942nd Level	"1"	"1"	STRING	STRING	3	3	1	0
107952nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
107962nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
107972nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
107982nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
107992nd Level	"1"	"a"	STRING	STRING	3	3	1	0
108002nd Level	"1"	"b"	STRING	STRING	3	3	1	0
108012nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
108022nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
108032nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
108042nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
108052nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
108062nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
108072nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
108082nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
108092nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
108102nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
108112nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
108122nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
108132nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
108142nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
108152nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
108162nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
108172nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
108182nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
108192nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
108202nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
108212nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
108222nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
108232nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
108242nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
108252nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
108262nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
108272nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
108282nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
108292nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
108302nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
108312nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
108322nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
108332nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
108342nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
108352nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
108362nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
108372nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
108382nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
108392nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
108402nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
108412nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
108422nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
108432nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
108442nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
108452nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
108462nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
108472nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
108482nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
108492nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
108502nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
108512nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
108522nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
108532nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
108542nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
108552nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
108562nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
108572nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
108582nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
108592nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
108602nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
108612nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
108622nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
108632nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
108642nd Level	"a"	"1"	STRING	STRING	3	3	1	0
108652nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
108662nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
108672nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
108682nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
108692nd Level	"a"	"a"	STRING	STRING	3	3	1	0
108702nd Level	"a"	"b"	STRING	STRING	3	3	1	0
108712nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
108722nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
108732nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
108742nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
108752nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
108762nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
108772nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
108782nd Level	"b"	"1"	STRING	STRING	3	3	1	0
108792nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
108802nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
108812nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
108822nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
108832nd Level	"b"	"a"	STRING	STRING	3	3	1	0
108842nd Level	"b"	"b"	STRING	STRING	3	3	1	0
108852nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
108862nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
108872nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
108882nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
108892nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
108902nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
108912nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
108922nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
108932nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
108942nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
108952nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
108962nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
108972nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
108982nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
108992nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
109002nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
109012nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
109022nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
109032nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
109042nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
109052nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
109062nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
109072nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
109082nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
109092nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
109102nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
109112nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
109122nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
109132nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
109142nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
109152nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
109162nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
109172nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
109182nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
109192nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
109202nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	1	0
109212nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
109222nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
109232nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
109242nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	1	0
109252nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	1	0
109262nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	1	0
109272nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	1	0
109282nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
109292nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
109302nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
109312nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
109322nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
109332nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
109342nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
109352nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
109362nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
109372nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
109382nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
109392nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
109402nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
109412nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
109422nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
109432nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
109442nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
109452nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
109462nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
109472nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
109482nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
109492nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
109502nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
109512nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
109522nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
109532nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
109542nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
109552nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
109562nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
109572nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
109582nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
109592nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
109602nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
109612nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
109622nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
109632nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
109642nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
109652nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
109662nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
109672nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
109682nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
109692nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
109702nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
109712nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
109722nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
109732nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
109742nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
109752nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
109762nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
109772nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
109782nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
109792nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
109802nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
109812nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
109822nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
109832nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
109842nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
109852nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
109862nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
109872nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
109882nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
109892nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
109902nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
109912nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
109922nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
109932nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
109942nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
109952nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
10996"Testcase for Binary(255)"
10997validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
10998"Testcase for Variable Binary"
10999validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
11000"Testcase for TinyBlob"
11001validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
11002"Testcase for TinyText"
11003validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
110041st Level	12	"1"	INTEGER	STRING	2	3	0	1
110051st Level	1992	"1"	INTEGER	STRING	2	3	0	1
110061st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
110071st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
110081st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
110091st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
110101st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
110111st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
110121st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
110131st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
110141st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
110151st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	1	0
110161st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
110171st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
110181st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
110191st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
110201st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
110211st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	1	0
110221st Level	null	"1"	NULL	STRING	1	3	0	1
110231st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
110241st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
110251st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
110261st Level	null	"3.14"	NULL	STRING	1	3	0	1
110271st Level	null	"a"	NULL	STRING	1	3	0	1
110281st Level	null	"b"	NULL	STRING	1	3	0	1
110291st Level	null	"b,c"	NULL	STRING	1	3	0	1
110301st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
110311st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	0	1
110321st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
110331st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
110341st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
110351st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
110361st Level	null	1	NULL	INTEGER	1	2	0	1
110371st Level	null	12	NULL	INTEGER	1	2	0	1
110381st Level	null	1992	NULL	INTEGER	1	2	0	1
110391st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	0	1
110401st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	0	1
110411st Level	null	3	NULL	INTEGER	1	2	0	1
110421st Level	null	3.14	NULL	DECIMAL	1	2	0	1
110431st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
110441st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
110451st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	1	0
110462nd Level	"1"	"1"	STRING	STRING	3	3	1	0
110472nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
110482nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
110492nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
110502nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
110512nd Level	"1"	"a"	STRING	STRING	3	3	1	0
110522nd Level	"1"	"b"	STRING	STRING	3	3	1	0
110532nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
110542nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
110552nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
110562nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
110572nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
110582nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
110592nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
110602nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
110612nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
110622nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
110632nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
110642nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
110652nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
110662nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
110672nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
110682nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
110692nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
110702nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
110712nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
110722nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
110732nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
110742nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
110752nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
110762nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
110772nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
110782nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
110792nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
110802nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
110812nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
110822nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
110832nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
110842nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
110852nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
110862nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
110872nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
110882nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
110892nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
110902nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
110912nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
110922nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
110932nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
110942nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
110952nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
110962nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
110972nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
110982nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
110992nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
111002nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
111012nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
111022nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
111032nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
111042nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
111052nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
111062nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
111072nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
111082nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
111092nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
111102nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
111112nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
111122nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
111132nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
111142nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
111152nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
111162nd Level	"a"	"1"	STRING	STRING	3	3	1	0
111172nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
111182nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
111192nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
111202nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
111212nd Level	"a"	"a"	STRING	STRING	3	3	1	0
111222nd Level	"a"	"b"	STRING	STRING	3	3	1	0
111232nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
111242nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
111252nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
111262nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
111272nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
111282nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
111292nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
111302nd Level	"b"	"1"	STRING	STRING	3	3	1	0
111312nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
111322nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
111332nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
111342nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
111352nd Level	"b"	"a"	STRING	STRING	3	3	1	0
111362nd Level	"b"	"b"	STRING	STRING	3	3	1	0
111372nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
111382nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
111392nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
111402nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
111412nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
111422nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
111432nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
111442nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
111452nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
111462nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
111472nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
111482nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
111492nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
111502nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
111512nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
111522nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
111532nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
111542nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
111552nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
111562nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
111572nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
111582nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
111592nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
111602nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
111612nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
111622nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
111632nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
111642nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
111652nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
111662nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
111672nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
111682nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
111692nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
111702nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
111712nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
111722nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	1	0
111732nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
111742nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
111752nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
111762nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	1	0
111772nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	1	0
111782nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	1	0
111792nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	1	0
111802nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
111812nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
111822nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
111832nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
111842nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
111852nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
111862nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
111872nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
111882nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
111892nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
111902nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
111912nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
111922nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
111932nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
111942nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
111952nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
111962nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
111972nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
111982nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
111992nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
112002nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
112012nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
112022nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
112032nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
112042nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
112052nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
112062nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
112072nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
112082nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
112092nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
112102nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
112112nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
112122nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
112132nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
112142nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
112152nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
112162nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
112172nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
112182nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
112192nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
112202nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
112212nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
112222nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
112232nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
112242nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
112252nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
112262nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
112272nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
112282nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
112292nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
112302nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
112312nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
112322nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
112332nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
112342nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
112352nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
112362nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
112372nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
112382nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
112392nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
112402nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
112412nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
112422nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
112432nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
112442nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
112452nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
112462nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
112472nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
11248"Testcase for Blob"
11249validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
11250"Testcase for Text"
11251validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
112521st Level	12	"1"	INTEGER	STRING	2	3	0	1
112531st Level	1992	"1"	INTEGER	STRING	2	3	0	1
112541st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
112551st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
112561st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
112571st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
112581st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
112591st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
112601st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
112611st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
112621st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
112631st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	1	0
112641st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
112651st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
112661st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
112671st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
112681st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
112691st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	1	0
112701st Level	null	"1"	NULL	STRING	1	3	0	1
112711st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
112721st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
112731st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
112741st Level	null	"3.14"	NULL	STRING	1	3	0	1
112751st Level	null	"a"	NULL	STRING	1	3	0	1
112761st Level	null	"b"	NULL	STRING	1	3	0	1
112771st Level	null	"b,c"	NULL	STRING	1	3	0	1
112781st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
112791st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	0	1
112801st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
112811st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
112821st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
112831st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
112841st Level	null	1	NULL	INTEGER	1	2	0	1
112851st Level	null	12	NULL	INTEGER	1	2	0	1
112861st Level	null	1992	NULL	INTEGER	1	2	0	1
112871st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	0	1
112881st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	0	1
112891st Level	null	3	NULL	INTEGER	1	2	0	1
112901st Level	null	3.14	NULL	DECIMAL	1	2	0	1
112911st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
112921st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
112931st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	1	0
112942nd Level	"1"	"1"	STRING	STRING	3	3	1	0
112952nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
112962nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
112972nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
112982nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
112992nd Level	"1"	"a"	STRING	STRING	3	3	1	0
113002nd Level	"1"	"b"	STRING	STRING	3	3	1	0
113012nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
113022nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
113032nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
113042nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
113052nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
113062nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
113072nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
113082nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
113092nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
113102nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
113112nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
113122nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
113132nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
113142nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
113152nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
113162nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
113172nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
113182nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
113192nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
113202nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
113212nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
113222nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
113232nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
113242nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
113252nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
113262nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
113272nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
113282nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
113292nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
113302nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
113312nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
113322nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
113332nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
113342nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
113352nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
113362nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
113372nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
113382nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
113392nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
113402nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
113412nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
113422nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
113432nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
113442nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
113452nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
113462nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
113472nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
113482nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
113492nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
113502nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
113512nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
113522nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
113532nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
113542nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
113552nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
113562nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
113572nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
113582nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
113592nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
113602nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
113612nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
113622nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
113632nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
113642nd Level	"a"	"1"	STRING	STRING	3	3	1	0
113652nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
113662nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
113672nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
113682nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
113692nd Level	"a"	"a"	STRING	STRING	3	3	1	0
113702nd Level	"a"	"b"	STRING	STRING	3	3	1	0
113712nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
113722nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
113732nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
113742nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
113752nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
113762nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
113772nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
113782nd Level	"b"	"1"	STRING	STRING	3	3	1	0
113792nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
113802nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
113812nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
113822nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
113832nd Level	"b"	"a"	STRING	STRING	3	3	1	0
113842nd Level	"b"	"b"	STRING	STRING	3	3	1	0
113852nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
113862nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
113872nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
113882nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
113892nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
113902nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
113912nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
113922nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
113932nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
113942nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
113952nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
113962nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
113972nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
113982nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
113992nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
114002nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
114012nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
114022nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
114032nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
114042nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
114052nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
114062nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
114072nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
114082nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
114092nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
114102nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
114112nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
114122nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
114132nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
114142nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
114152nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
114162nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
114172nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
114182nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
114192nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
114202nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	1	0
114212nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
114222nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
114232nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
114242nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	1	0
114252nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	1	0
114262nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	1	0
114272nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	1	0
114282nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
114292nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
114302nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
114312nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
114322nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
114332nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
114342nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
114352nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
114362nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
114372nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
114382nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
114392nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
114402nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
114412nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
114422nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
114432nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
114442nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
114452nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
114462nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
114472nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
114482nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
114492nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
114502nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
114512nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
114522nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
114532nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
114542nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
114552nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
114562nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
114572nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
114582nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
114592nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
114602nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
114612nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
114622nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
114632nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
114642nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
114652nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
114662nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
114672nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
114682nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
114692nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
114702nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
114712nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
114722nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
114732nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
114742nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
114752nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
114762nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
114772nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
114782nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
114792nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
114802nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
114812nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
114822nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
114832nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
114842nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
114852nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
114862nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
114872nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
114882nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
114892nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
114902nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
114912nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
114922nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
114932nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
114942nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
114952nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
11496"Testcase for Medium Blob"
11497validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
11498"Testcase for Medium Text"
11499validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
115001st Level	12	"1"	INTEGER	STRING	2	3	0	1
115011st Level	1992	"1"	INTEGER	STRING	2	3	0	1
115021st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
115031st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
115041st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
115051st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
115061st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
115071st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
115081st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
115091st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
115101st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
115111st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	1	0
115121st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
115131st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
115141st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
115151st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
115161st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
115171st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	1	0
115181st Level	null	"1"	NULL	STRING	1	3	0	1
115191st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
115201st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
115211st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
115221st Level	null	"3.14"	NULL	STRING	1	3	0	1
115231st Level	null	"a"	NULL	STRING	1	3	0	1
115241st Level	null	"b"	NULL	STRING	1	3	0	1
115251st Level	null	"b,c"	NULL	STRING	1	3	0	1
115261st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
115271st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	0	1
115281st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
115291st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
115301st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
115311st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
115321st Level	null	1	NULL	INTEGER	1	2	0	1
115331st Level	null	12	NULL	INTEGER	1	2	0	1
115341st Level	null	1992	NULL	INTEGER	1	2	0	1
115351st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	0	1
115361st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	0	1
115371st Level	null	3	NULL	INTEGER	1	2	0	1
115381st Level	null	3.14	NULL	DECIMAL	1	2	0	1
115391st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
115401st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
115411st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	1	0
115422nd Level	"1"	"1"	STRING	STRING	3	3	1	0
115432nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
115442nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
115452nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
115462nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
115472nd Level	"1"	"a"	STRING	STRING	3	3	1	0
115482nd Level	"1"	"b"	STRING	STRING	3	3	1	0
115492nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
115502nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
115512nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
115522nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
115532nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
115542nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
115552nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
115562nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
115572nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
115582nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
115592nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
115602nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
115612nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
115622nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
115632nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
115642nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
115652nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
115662nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
115672nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
115682nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
115692nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
115702nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
115712nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
115722nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
115732nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
115742nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
115752nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
115762nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
115772nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
115782nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
115792nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
115802nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
115812nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
115822nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
115832nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
115842nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
115852nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
115862nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
115872nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
115882nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
115892nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
115902nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
115912nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
115922nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
115932nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
115942nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
115952nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
115962nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
115972nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
115982nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
115992nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
116002nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
116012nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
116022nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
116032nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
116042nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
116052nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
116062nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
116072nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
116082nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
116092nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
116102nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
116112nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
116122nd Level	"a"	"1"	STRING	STRING	3	3	1	0
116132nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
116142nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
116152nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
116162nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
116172nd Level	"a"	"a"	STRING	STRING	3	3	1	0
116182nd Level	"a"	"b"	STRING	STRING	3	3	1	0
116192nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
116202nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
116212nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
116222nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
116232nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
116242nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
116252nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
116262nd Level	"b"	"1"	STRING	STRING	3	3	1	0
116272nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
116282nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
116292nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
116302nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
116312nd Level	"b"	"a"	STRING	STRING	3	3	1	0
116322nd Level	"b"	"b"	STRING	STRING	3	3	1	0
116332nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
116342nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
116352nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
116362nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
116372nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
116382nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
116392nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
116402nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
116412nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
116422nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
116432nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
116442nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
116452nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
116462nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
116472nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
116482nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
116492nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
116502nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
116512nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
116522nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
116532nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
116542nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
116552nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
116562nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
116572nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
116582nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
116592nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
116602nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
116612nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
116622nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
116632nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
116642nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
116652nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
116662nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
116672nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
116682nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	1	0
116692nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
116702nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
116712nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
116722nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	1	0
116732nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	1	0
116742nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	1	0
116752nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	1	0
116762nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
116772nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
116782nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
116792nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
116802nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
116812nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
116822nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
116832nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
116842nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
116852nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
116862nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
116872nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
116882nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
116892nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
116902nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
116912nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
116922nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
116932nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
116942nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
116952nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
116962nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
116972nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
116982nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
116992nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
117002nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
117012nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
117022nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
117032nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
117042nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
117052nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
117062nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
117072nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
117082nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
117092nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
117102nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
117112nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
117122nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
117132nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
117142nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
117152nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
117162nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
117172nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
117182nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
117192nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
117202nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
117212nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
117222nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
117232nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
117242nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
117252nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
117262nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
117272nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
117282nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
117292nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
117302nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
117312nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
117322nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
117332nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
117342nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
117352nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
117362nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
117372nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
117382nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
117392nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
117402nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
117412nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
117422nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
117432nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
11744"Testcase for Long Blob"
11745validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
11746"Testcase for Long Text"
11747validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
117481st Level	12	"1"	INTEGER	STRING	2	3	0	1
117491st Level	1992	"1"	INTEGER	STRING	2	3	0	1
117501st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
117511st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
117521st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
117531st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
117541st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
117551st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
117561st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
117571st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
117581st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
117591st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	1	0
117601st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
117611st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
117621st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
117631st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
117641st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
117651st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	1	0
117661st Level	null	"1"	NULL	STRING	1	3	0	1
117671st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
117681st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
117691st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
117701st Level	null	"3.14"	NULL	STRING	1	3	0	1
117711st Level	null	"a"	NULL	STRING	1	3	0	1
117721st Level	null	"b"	NULL	STRING	1	3	0	1
117731st Level	null	"b,c"	NULL	STRING	1	3	0	1
117741st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
117751st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	0	1
117761st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
117771st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
117781st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
117791st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
117801st Level	null	1	NULL	INTEGER	1	2	0	1
117811st Level	null	12	NULL	INTEGER	1	2	0	1
117821st Level	null	1992	NULL	INTEGER	1	2	0	1
117831st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	0	1
117841st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	0	1
117851st Level	null	3	NULL	INTEGER	1	2	0	1
117861st Level	null	3.14	NULL	DECIMAL	1	2	0	1
117871st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
117881st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
117891st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	1	0
117902nd Level	"1"	"1"	STRING	STRING	3	3	1	0
117912nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
117922nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
117932nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
117942nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
117952nd Level	"1"	"a"	STRING	STRING	3	3	1	0
117962nd Level	"1"	"b"	STRING	STRING	3	3	1	0
117972nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
117982nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
117992nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
118002nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
118012nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
118022nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
118032nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
118042nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
118052nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
118062nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
118072nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
118082nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
118092nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
118102nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
118112nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
118122nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
118132nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
118142nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
118152nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
118162nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
118172nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
118182nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
118192nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
118202nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
118212nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
118222nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
118232nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
118242nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
118252nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
118262nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
118272nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
118282nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
118292nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
118302nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
118312nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
118322nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
118332nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
118342nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
118352nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
118362nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
118372nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
118382nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
118392nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
118402nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
118412nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
118422nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
118432nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
118442nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
118452nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
118462nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
118472nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
118482nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
118492nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
118502nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
118512nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
118522nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
118532nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
118542nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
118552nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
118562nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
118572nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
118582nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
118592nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
118602nd Level	"a"	"1"	STRING	STRING	3	3	1	0
118612nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
118622nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
118632nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
118642nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
118652nd Level	"a"	"a"	STRING	STRING	3	3	1	0
118662nd Level	"a"	"b"	STRING	STRING	3	3	1	0
118672nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
118682nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
118692nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
118702nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
118712nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
118722nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
118732nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
118742nd Level	"b"	"1"	STRING	STRING	3	3	1	0
118752nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
118762nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
118772nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
118782nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
118792nd Level	"b"	"a"	STRING	STRING	3	3	1	0
118802nd Level	"b"	"b"	STRING	STRING	3	3	1	0
118812nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
118822nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
118832nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
118842nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
118852nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
118862nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
118872nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
118882nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
118892nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
118902nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
118912nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
118922nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
118932nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
118942nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
118952nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
118962nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
118972nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
118982nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
118992nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
119002nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
119012nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
119022nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
119032nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
119042nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
119052nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
119062nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
119072nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
119082nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
119092nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
119102nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
119112nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
119122nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
119132nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
119142nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
119152nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
119162nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	1	0
119172nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
119182nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
119192nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
119202nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	1	0
119212nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	1	0
119222nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	1	0
119232nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	1	0
119242nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
119252nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
119262nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
119272nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
119282nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
119292nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
119302nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
119312nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
119322nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
119332nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
119342nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
119352nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
119362nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
119372nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
119382nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
119392nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
119402nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
119412nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
119422nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
119432nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
119442nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
119452nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
119462nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
119472nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
119482nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
119492nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
119502nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
119512nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
119522nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
119532nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
119542nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
119552nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
119562nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
119572nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
119582nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
119592nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
119602nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
119612nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
119622nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
119632nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
119642nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
119652nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
119662nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
119672nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
119682nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
119692nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
119702nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
119712nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
119722nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
119732nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
119742nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
119752nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
119762nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
119772nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
119782nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
119792nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
119802nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
119812nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
119822nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
119832nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
119842nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
119852nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
119862nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
119872nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
119882nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
119892nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
119902nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
119912nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
11992"Testcase for Enum"
11993validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
11994"Testcase for Set"
11995validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
11996"Test for SQL vs JSON"
11997"Comparator >"
11998""
11999"Testcase for Tinyint"
12000validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120012nd Level	12	1	INTEGER	INTEGER	2	2	1	0
120022nd Level	12	3	INTEGER	INTEGER	2	2	1	0
120032nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
120042nd Level	3	1	INTEGER	INTEGER	2	2	1	0
12005"Testcase for Boolean"
12006validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120072nd Level	12	1	INTEGER	INTEGER	2	2	1	0
120082nd Level	12	3	INTEGER	INTEGER	2	2	1	0
120092nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
120102nd Level	3	1	INTEGER	INTEGER	2	2	1	0
12011"Testcase for small Int Signed"
12012validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120132nd Level	12	1	INTEGER	INTEGER	2	2	1	0
120142nd Level	12	3	INTEGER	INTEGER	2	2	1	0
120152nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
120162nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
120172nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
120182nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
120192nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
120202nd Level	3	1	INTEGER	INTEGER	2	2	1	0
12021"Testcase for Signed Medium Int"
12022validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120232nd Level	12	1	INTEGER	INTEGER	2	2	1	0
120242nd Level	12	3	INTEGER	INTEGER	2	2	1	0
120252nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
120262nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
120272nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
120282nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
120292nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
120302nd Level	3	1	INTEGER	INTEGER	2	2	1	0
12031"Testcase for unsigned Medium Int"
12032validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120332nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
120342nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
120352nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
120362nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
120372nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
120382nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
120392nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
120402nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
12041"Testcase for signed Int"
12042validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120432nd Level	12	1	INTEGER	INTEGER	2	2	1	0
120442nd Level	12	3	INTEGER	INTEGER	2	2	1	0
120452nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
120462nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
120472nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
120482nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
120492nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
120502nd Level	3	1	INTEGER	INTEGER	2	2	1	0
12051"Testcase for Unsigned Int"
12052validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120532nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
120542nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
120552nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
120562nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
120572nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
120582nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
120592nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
120602nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
12061"Testcase for Big Int"
12062validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120632nd Level	12	1	INTEGER	INTEGER	2	2	1	0
120642nd Level	12	3	INTEGER	INTEGER	2	2	1	0
120652nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
120662nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
120672nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
120682nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
120692nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
120702nd Level	3	1	INTEGER	INTEGER	2	2	1	0
12071"Testcase for Big Int Unsigned"
12072validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120732nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
120742nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
120752nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
120762nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
120772nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
120782nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
120792nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
120802nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
12081"Testcase for Decimal"
12082validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120832nd Level	12.00	1	DECIMAL	INTEGER	2	2	1	0
120842nd Level	12.00	3	DECIMAL	INTEGER	2	2	1	0
120852nd Level	12.00	3.14	DECIMAL	DECIMAL	2	2	1	0
120862nd Level	3.14	1	DECIMAL	INTEGER	2	2	1	0
120872nd Level	3.14	3	DECIMAL	INTEGER	2	2	1	0
12088"Testcase for Double"
12089validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
120902nd Level	12	1	DOUBLE	INTEGER	2	2	1	0
120912nd Level	12	3	DOUBLE	INTEGER	2	2	1	0
120922nd Level	12	3.14	DOUBLE	DECIMAL	2	2	1	0
120932nd Level	1992	1	DOUBLE	INTEGER	2	2	1	0
120942nd Level	1992	12	DOUBLE	INTEGER	2	2	1	0
120952nd Level	1992	3	DOUBLE	INTEGER	2	2	1	0
120962nd Level	1992	3.14	DOUBLE	DECIMAL	2	2	1	0
120972nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
120982nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
12099"Testcase for CHAR"
12100validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
121011st Level	12	"1"	INTEGER	STRING	2	3	1	0
121021st Level	1992	"1"	INTEGER	STRING	2	3	1	0
121031st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
121041st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
121051st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
121061st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
121071st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
121081st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
121091st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
121101st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
121111st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	0	1
121121st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
121131st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
121141st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
121151st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
121161st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
121171st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	0	1
121181st Level	null	"1"	NULL	STRING	1	3	1	0
121191st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
121201st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
121211st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
121221st Level	null	"3.14"	NULL	STRING	1	3	1	0
121231st Level	null	"a"	NULL	STRING	1	3	1	0
121241st Level	null	"b"	NULL	STRING	1	3	1	0
121251st Level	null	"b,c"	NULL	STRING	1	3	1	0
121261st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
121271st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	1	0
121281st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
121291st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
121301st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
121311st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
121321st Level	null	1	NULL	INTEGER	1	2	1	0
121331st Level	null	12	NULL	INTEGER	1	2	1	0
121341st Level	null	1992	NULL	INTEGER	1	2	1	0
121351st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	1	0
121361st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	1	0
121371st Level	null	3	NULL	INTEGER	1	2	1	0
121381st Level	null	3.14	NULL	DECIMAL	1	2	1	0
121391st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
121401st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
121411st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	0	1
121422nd Level	12	1	INTEGER	INTEGER	2	2	1	0
121432nd Level	12	12	INTEGER	INTEGER	2	2	1	0
121442nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
121452nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
121462nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
121472nd Level	12	3	INTEGER	INTEGER	2	2	1	0
121482nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
121492nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
121502nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
121512nd Level	1992	1992	INTEGER	INTEGER	2	2	1	0
121522nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
121532nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
121542nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
121552nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
121562nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
121572nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
121582nd Level	3.14	1992	DOUBLE	INTEGER	2	2	1	0
121592nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
121602nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
121612nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
121622nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
121632nd Level	null	null	NULL	NULL	1	1	1	0
12164"Testcase for VARCHAR"
12165validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
121661st Level	12	"1"	INTEGER	STRING	2	3	1	0
121671st Level	1992	"1"	INTEGER	STRING	2	3	1	0
121681st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
121691st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
121701st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
121711st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
121721st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
121731st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
121741st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
121751st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
121761st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	0	1
121771st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
121781st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
121791st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
121801st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
121811st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
121821st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	0	1
121831st Level	null	"1"	NULL	STRING	1	3	1	0
121841st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
121851st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
121861st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
121871st Level	null	"3.14"	NULL	STRING	1	3	1	0
121881st Level	null	"a"	NULL	STRING	1	3	1	0
121891st Level	null	"b"	NULL	STRING	1	3	1	0
121901st Level	null	"b,c"	NULL	STRING	1	3	1	0
121911st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
121921st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	1	0
121931st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
121941st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
121951st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
121961st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
121971st Level	null	1	NULL	INTEGER	1	2	1	0
121981st Level	null	12	NULL	INTEGER	1	2	1	0
121991st Level	null	1992	NULL	INTEGER	1	2	1	0
122001st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	1	0
122011st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	1	0
122021st Level	null	3	NULL	INTEGER	1	2	1	0
122031st Level	null	3.14	NULL	DECIMAL	1	2	1	0
122041st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
122051st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
122061st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	0	1
122072nd Level	12	1	INTEGER	INTEGER	2	2	1	0
122082nd Level	12	12	INTEGER	INTEGER	2	2	1	0
122092nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
122102nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
122112nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
122122nd Level	12	3	INTEGER	INTEGER	2	2	1	0
122132nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
122142nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
122152nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
122162nd Level	1992	1992	INTEGER	INTEGER	2	2	1	0
122172nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
122182nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
122192nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
122202nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
122212nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
122222nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
122232nd Level	3.14	1992	DOUBLE	INTEGER	2	2	1	0
122242nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
122252nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
122262nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
122272nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
122282nd Level	null	null	NULL	NULL	1	1	1	0
12229"Testcase for Binary(255)"
12230validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12231"Testcase for Variable Binary"
12232validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12233"Testcase for TinyBlob"
12234validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12235"Testcase for TinyText"
12236validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
122371st Level	12	"1"	INTEGER	STRING	2	3	1	0
122381st Level	1992	"1"	INTEGER	STRING	2	3	1	0
122391st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
122401st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
122411st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
122421st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
122431st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
122441st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
122451st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
122461st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
122471st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	0	1
122481st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
122491st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
122501st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
122511st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
122521st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
122531st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	0	1
122541st Level	null	"1"	NULL	STRING	1	3	1	0
122551st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
122561st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
122571st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
122581st Level	null	"3.14"	NULL	STRING	1	3	1	0
122591st Level	null	"a"	NULL	STRING	1	3	1	0
122601st Level	null	"b"	NULL	STRING	1	3	1	0
122611st Level	null	"b,c"	NULL	STRING	1	3	1	0
122621st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
122631st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	1	0
122641st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
122651st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
122661st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
122671st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
122681st Level	null	1	NULL	INTEGER	1	2	1	0
122691st Level	null	12	NULL	INTEGER	1	2	1	0
122701st Level	null	1992	NULL	INTEGER	1	2	1	0
122711st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	1	0
122721st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	1	0
122731st Level	null	3	NULL	INTEGER	1	2	1	0
122741st Level	null	3.14	NULL	DECIMAL	1	2	1	0
122751st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
122761st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
122771st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	0	1
122782nd Level	12	1	INTEGER	INTEGER	2	2	1	0
122792nd Level	12	12	INTEGER	INTEGER	2	2	1	0
122802nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
122812nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
122822nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
122832nd Level	12	3	INTEGER	INTEGER	2	2	1	0
122842nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
122852nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
122862nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
122872nd Level	1992	1992	INTEGER	INTEGER	2	2	1	0
122882nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
122892nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
122902nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
122912nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
122922nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
122932nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
122942nd Level	3.14	1992	DOUBLE	INTEGER	2	2	1	0
122952nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
122962nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
122972nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
122982nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
122992nd Level	null	null	NULL	NULL	1	1	1	0
12300"Testcase for Blob"
12301validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12302"Testcase for Text"
12303validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
123041st Level	12	"1"	INTEGER	STRING	2	3	1	0
123051st Level	1992	"1"	INTEGER	STRING	2	3	1	0
123061st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
123071st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
123081st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
123091st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
123101st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
123111st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
123121st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
123131st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
123141st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	0	1
123151st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
123161st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
123171st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
123181st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
123191st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
123201st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	0	1
123211st Level	null	"1"	NULL	STRING	1	3	1	0
123221st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
123231st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
123241st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
123251st Level	null	"3.14"	NULL	STRING	1	3	1	0
123261st Level	null	"a"	NULL	STRING	1	3	1	0
123271st Level	null	"b"	NULL	STRING	1	3	1	0
123281st Level	null	"b,c"	NULL	STRING	1	3	1	0
123291st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
123301st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	1	0
123311st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
123321st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
123331st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
123341st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
123351st Level	null	1	NULL	INTEGER	1	2	1	0
123361st Level	null	12	NULL	INTEGER	1	2	1	0
123371st Level	null	1992	NULL	INTEGER	1	2	1	0
123381st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	1	0
123391st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	1	0
123401st Level	null	3	NULL	INTEGER	1	2	1	0
123411st Level	null	3.14	NULL	DECIMAL	1	2	1	0
123421st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
123431st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
123441st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	0	1
123452nd Level	12	1	INTEGER	INTEGER	2	2	1	0
123462nd Level	12	12	INTEGER	INTEGER	2	2	1	0
123472nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
123482nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
123492nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
123502nd Level	12	3	INTEGER	INTEGER	2	2	1	0
123512nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
123522nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
123532nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
123542nd Level	1992	1992	INTEGER	INTEGER	2	2	1	0
123552nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
123562nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
123572nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
123582nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
123592nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
123602nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
123612nd Level	3.14	1992	DOUBLE	INTEGER	2	2	1	0
123622nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
123632nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
123642nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
123652nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
123662nd Level	null	null	NULL	NULL	1	1	1	0
12367"Testcase for Medium Blob"
12368validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12369"Testcase for Medium Text"
12370validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
123711st Level	12	"1"	INTEGER	STRING	2	3	1	0
123721st Level	1992	"1"	INTEGER	STRING	2	3	1	0
123731st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
123741st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
123751st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
123761st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
123771st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
123781st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
123791st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
123801st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
123811st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	0	1
123821st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
123831st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
123841st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
123851st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
123861st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
123871st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	0	1
123881st Level	null	"1"	NULL	STRING	1	3	1	0
123891st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
123901st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
123911st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
123921st Level	null	"3.14"	NULL	STRING	1	3	1	0
123931st Level	null	"a"	NULL	STRING	1	3	1	0
123941st Level	null	"b"	NULL	STRING	1	3	1	0
123951st Level	null	"b,c"	NULL	STRING	1	3	1	0
123961st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
123971st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	1	0
123981st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
123991st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
124001st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
124011st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
124021st Level	null	1	NULL	INTEGER	1	2	1	0
124031st Level	null	12	NULL	INTEGER	1	2	1	0
124041st Level	null	1992	NULL	INTEGER	1	2	1	0
124051st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	1	0
124061st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	1	0
124071st Level	null	3	NULL	INTEGER	1	2	1	0
124081st Level	null	3.14	NULL	DECIMAL	1	2	1	0
124091st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
124101st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
124111st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	0	1
124122nd Level	12	1	INTEGER	INTEGER	2	2	1	0
124132nd Level	12	12	INTEGER	INTEGER	2	2	1	0
124142nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
124152nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
124162nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
124172nd Level	12	3	INTEGER	INTEGER	2	2	1	0
124182nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
124192nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
124202nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
124212nd Level	1992	1992	INTEGER	INTEGER	2	2	1	0
124222nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
124232nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
124242nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
124252nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
124262nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
124272nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
124282nd Level	3.14	1992	DOUBLE	INTEGER	2	2	1	0
124292nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
124302nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
124312nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
124322nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
124332nd Level	null	null	NULL	NULL	1	1	1	0
12434"Testcase for Long Blob"
12435validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12436"Testcase for Long Text"
12437validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
124381st Level	12	"1"	INTEGER	STRING	2	3	1	0
124391st Level	1992	"1"	INTEGER	STRING	2	3	1	0
124401st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
124411st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
124421st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
124431st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
124441st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
124451st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
124461st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
124471st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
124481st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	0	1
124491st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
124501st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
124511st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
124521st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
124531st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
124541st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	0	1
124551st Level	null	"1"	NULL	STRING	1	3	1	0
124561st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
124571st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
124581st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
124591st Level	null	"3.14"	NULL	STRING	1	3	1	0
124601st Level	null	"a"	NULL	STRING	1	3	1	0
124611st Level	null	"b"	NULL	STRING	1	3	1	0
124621st Level	null	"b,c"	NULL	STRING	1	3	1	0
124631st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
124641st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	1	0
124651st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
124661st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
124671st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
124681st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
124691st Level	null	1	NULL	INTEGER	1	2	1	0
124701st Level	null	12	NULL	INTEGER	1	2	1	0
124711st Level	null	1992	NULL	INTEGER	1	2	1	0
124721st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	1	0
124731st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	1	0
124741st Level	null	3	NULL	INTEGER	1	2	1	0
124751st Level	null	3.14	NULL	DECIMAL	1	2	1	0
124761st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
124771st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
124781st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	0	1
124792nd Level	12	1	INTEGER	INTEGER	2	2	1	0
124802nd Level	12	12	INTEGER	INTEGER	2	2	1	0
124812nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
124822nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
124832nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
124842nd Level	12	3	INTEGER	INTEGER	2	2	1	0
124852nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
124862nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
124872nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
124882nd Level	1992	1992	INTEGER	INTEGER	2	2	1	0
124892nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
124902nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
124912nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
124922nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
124932nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
124942nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
124952nd Level	3.14	1992	DOUBLE	INTEGER	2	2	1	0
124962nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
124972nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
124982nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
124992nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
125002nd Level	null	null	NULL	NULL	1	1	1	0
12501"Testcase for Enum"
12502validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12503"Testcase for Set"
12504validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12505"Test for SQL vs JSON"
12506"Comparator <="
12507""
12508"Testcase for Tinyint"
12509validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
125102nd Level	12	1	INTEGER	INTEGER	2	2	0	1
125112nd Level	12	3	INTEGER	INTEGER	2	2	0	1
125122nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
125132nd Level	3	1	INTEGER	INTEGER	2	2	0	1
12514"Testcase for Boolean"
12515validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
125162nd Level	12	1	INTEGER	INTEGER	2	2	0	1
125172nd Level	12	3	INTEGER	INTEGER	2	2	0	1
125182nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
125192nd Level	3	1	INTEGER	INTEGER	2	2	0	1
12520"Testcase for small Int Signed"
12521validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
125222nd Level	12	1	INTEGER	INTEGER	2	2	0	1
125232nd Level	12	3	INTEGER	INTEGER	2	2	0	1
125242nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
125252nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
125262nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
125272nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
125282nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
125292nd Level	3	1	INTEGER	INTEGER	2	2	0	1
12530"Testcase for Signed Medium Int"
12531validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
125322nd Level	12	1	INTEGER	INTEGER	2	2	0	1
125332nd Level	12	3	INTEGER	INTEGER	2	2	0	1
125342nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
125352nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
125362nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
125372nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
125382nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
125392nd Level	3	1	INTEGER	INTEGER	2	2	0	1
12540"Testcase for unsigned Medium Int"
12541validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
125422nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
125432nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
125442nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
125452nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
125462nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
125472nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
125482nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
125492nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
12550"Testcase for signed Int"
12551validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
125522nd Level	12	1	INTEGER	INTEGER	2	2	0	1
125532nd Level	12	3	INTEGER	INTEGER	2	2	0	1
125542nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
125552nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
125562nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
125572nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
125582nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
125592nd Level	3	1	INTEGER	INTEGER	2	2	0	1
12560"Testcase for Unsigned Int"
12561validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
125622nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
125632nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
125642nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
125652nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
125662nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
125672nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
125682nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
125692nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
12570"Testcase for Big Int"
12571validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
125722nd Level	12	1	INTEGER	INTEGER	2	2	0	1
125732nd Level	12	3	INTEGER	INTEGER	2	2	0	1
125742nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
125752nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
125762nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
125772nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
125782nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
125792nd Level	3	1	INTEGER	INTEGER	2	2	0	1
12580"Testcase for Big Int Unsigned"
12581validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
125822nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
125832nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
125842nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
125852nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
125862nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
125872nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
125882nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
125892nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
12590"Testcase for Decimal"
12591validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
125922nd Level	12.00	1	DECIMAL	INTEGER	2	2	0	1
125932nd Level	12.00	3	DECIMAL	INTEGER	2	2	0	1
125942nd Level	12.00	3.14	DECIMAL	DECIMAL	2	2	0	1
125952nd Level	3.14	1	DECIMAL	INTEGER	2	2	0	1
125962nd Level	3.14	3	DECIMAL	INTEGER	2	2	0	1
12597"Testcase for Double"
12598validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
125992nd Level	12	1	DOUBLE	INTEGER	2	2	0	1
126002nd Level	12	3	DOUBLE	INTEGER	2	2	0	1
126012nd Level	12	3.14	DOUBLE	DECIMAL	2	2	0	1
126022nd Level	1992	1	DOUBLE	INTEGER	2	2	0	1
126032nd Level	1992	12	DOUBLE	INTEGER	2	2	0	1
126042nd Level	1992	3	DOUBLE	INTEGER	2	2	0	1
126052nd Level	1992	3.14	DOUBLE	DECIMAL	2	2	0	1
126062nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
126072nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
12608"Testcase for CHAR"
12609validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
126101st Level	12	"1"	INTEGER	STRING	2	3	0	1
126111st Level	1992	"1"	INTEGER	STRING	2	3	0	1
126121st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
126131st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
126141st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
126151st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
126161st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
126171st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
126181st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
126191st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
126201st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	1	0
126211st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
126221st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
126231st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
126241st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
126251st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
126261st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	1	0
126271st Level	null	"1"	NULL	STRING	1	3	0	1
126281st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
126291st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
126301st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
126311st Level	null	"3.14"	NULL	STRING	1	3	0	1
126321st Level	null	"a"	NULL	STRING	1	3	0	1
126331st Level	null	"b"	NULL	STRING	1	3	0	1
126341st Level	null	"b,c"	NULL	STRING	1	3	0	1
126351st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
126361st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	0	1
126371st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
126381st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
126391st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
126401st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
126411st Level	null	1	NULL	INTEGER	1	2	0	1
126421st Level	null	12	NULL	INTEGER	1	2	0	1
126431st Level	null	1992	NULL	INTEGER	1	2	0	1
126441st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	0	1
126451st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	0	1
126461st Level	null	3	NULL	INTEGER	1	2	0	1
126471st Level	null	3.14	NULL	DECIMAL	1	2	0	1
126481st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
126491st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
126501st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	1	0
126512nd Level	12	1	INTEGER	INTEGER	2	2	0	1
126522nd Level	12	12	INTEGER	INTEGER	2	2	0	1
126532nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
126542nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
126552nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
126562nd Level	12	3	INTEGER	INTEGER	2	2	0	1
126572nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
126582nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
126592nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
126602nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
126612nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
126622nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
126632nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
126642nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
126652nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
126662nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
126672nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
126682nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
126692nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
126702nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
126712nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
126722nd Level	null	null	NULL	NULL	1	1	0	1
12673"Testcase for VARCHAR"
12674validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
126751st Level	12	"1"	INTEGER	STRING	2	3	0	1
126761st Level	1992	"1"	INTEGER	STRING	2	3	0	1
126771st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
126781st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
126791st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
126801st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
126811st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
126821st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
126831st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
126841st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
126851st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	1	0
126861st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
126871st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
126881st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
126891st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
126901st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
126911st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	1	0
126921st Level	null	"1"	NULL	STRING	1	3	0	1
126931st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
126941st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
126951st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
126961st Level	null	"3.14"	NULL	STRING	1	3	0	1
126971st Level	null	"a"	NULL	STRING	1	3	0	1
126981st Level	null	"b"	NULL	STRING	1	3	0	1
126991st Level	null	"b,c"	NULL	STRING	1	3	0	1
127001st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
127011st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	0	1
127021st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
127031st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
127041st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
127051st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
127061st Level	null	1	NULL	INTEGER	1	2	0	1
127071st Level	null	12	NULL	INTEGER	1	2	0	1
127081st Level	null	1992	NULL	INTEGER	1	2	0	1
127091st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	0	1
127101st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	0	1
127111st Level	null	3	NULL	INTEGER	1	2	0	1
127121st Level	null	3.14	NULL	DECIMAL	1	2	0	1
127131st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
127141st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
127151st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	1	0
127162nd Level	12	1	INTEGER	INTEGER	2	2	0	1
127172nd Level	12	12	INTEGER	INTEGER	2	2	0	1
127182nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
127192nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
127202nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
127212nd Level	12	3	INTEGER	INTEGER	2	2	0	1
127222nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
127232nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
127242nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
127252nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
127262nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
127272nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
127282nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
127292nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
127302nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
127312nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
127322nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
127332nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
127342nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
127352nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
127362nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
127372nd Level	null	null	NULL	NULL	1	1	0	1
12738"Testcase for Binary(255)"
12739validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12740"Testcase for Variable Binary"
12741validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12742"Testcase for TinyBlob"
12743validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12744"Testcase for TinyText"
12745validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
127461st Level	12	"1"	INTEGER	STRING	2	3	0	1
127471st Level	1992	"1"	INTEGER	STRING	2	3	0	1
127481st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
127491st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
127501st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
127511st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
127521st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
127531st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
127541st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
127551st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
127561st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	1	0
127571st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
127581st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
127591st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
127601st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
127611st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
127621st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	1	0
127631st Level	null	"1"	NULL	STRING	1	3	0	1
127641st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
127651st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
127661st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
127671st Level	null	"3.14"	NULL	STRING	1	3	0	1
127681st Level	null	"a"	NULL	STRING	1	3	0	1
127691st Level	null	"b"	NULL	STRING	1	3	0	1
127701st Level	null	"b,c"	NULL	STRING	1	3	0	1
127711st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
127721st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	0	1
127731st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
127741st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
127751st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
127761st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
127771st Level	null	1	NULL	INTEGER	1	2	0	1
127781st Level	null	12	NULL	INTEGER	1	2	0	1
127791st Level	null	1992	NULL	INTEGER	1	2	0	1
127801st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	0	1
127811st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	0	1
127821st Level	null	3	NULL	INTEGER	1	2	0	1
127831st Level	null	3.14	NULL	DECIMAL	1	2	0	1
127841st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
127851st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
127861st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	1	0
127872nd Level	12	1	INTEGER	INTEGER	2	2	0	1
127882nd Level	12	12	INTEGER	INTEGER	2	2	0	1
127892nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
127902nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
127912nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
127922nd Level	12	3	INTEGER	INTEGER	2	2	0	1
127932nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
127942nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
127952nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
127962nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
127972nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
127982nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
127992nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
128002nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
128012nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
128022nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
128032nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
128042nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
128052nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
128062nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
128072nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
128082nd Level	null	null	NULL	NULL	1	1	0	1
12809"Testcase for Blob"
12810validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12811"Testcase for Text"
12812validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
128131st Level	12	"1"	INTEGER	STRING	2	3	0	1
128141st Level	1992	"1"	INTEGER	STRING	2	3	0	1
128151st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
128161st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
128171st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
128181st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
128191st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
128201st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
128211st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
128221st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
128231st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	1	0
128241st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
128251st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
128261st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
128271st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
128281st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
128291st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	1	0
128301st Level	null	"1"	NULL	STRING	1	3	0	1
128311st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
128321st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
128331st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
128341st Level	null	"3.14"	NULL	STRING	1	3	0	1
128351st Level	null	"a"	NULL	STRING	1	3	0	1
128361st Level	null	"b"	NULL	STRING	1	3	0	1
128371st Level	null	"b,c"	NULL	STRING	1	3	0	1
128381st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
128391st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	0	1
128401st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
128411st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
128421st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
128431st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
128441st Level	null	1	NULL	INTEGER	1	2	0	1
128451st Level	null	12	NULL	INTEGER	1	2	0	1
128461st Level	null	1992	NULL	INTEGER	1	2	0	1
128471st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	0	1
128481st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	0	1
128491st Level	null	3	NULL	INTEGER	1	2	0	1
128501st Level	null	3.14	NULL	DECIMAL	1	2	0	1
128511st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
128521st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
128531st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	1	0
128542nd Level	12	1	INTEGER	INTEGER	2	2	0	1
128552nd Level	12	12	INTEGER	INTEGER	2	2	0	1
128562nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
128572nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
128582nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
128592nd Level	12	3	INTEGER	INTEGER	2	2	0	1
128602nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
128612nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
128622nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
128632nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
128642nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
128652nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
128662nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
128672nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
128682nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
128692nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
128702nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
128712nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
128722nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
128732nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
128742nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
128752nd Level	null	null	NULL	NULL	1	1	0	1
12876"Testcase for Medium Blob"
12877validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12878"Testcase for Medium Text"
12879validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
128801st Level	12	"1"	INTEGER	STRING	2	3	0	1
128811st Level	1992	"1"	INTEGER	STRING	2	3	0	1
128821st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
128831st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
128841st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
128851st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
128861st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
128871st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
128881st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
128891st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
128901st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	1	0
128911st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
128921st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
128931st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
128941st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
128951st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
128961st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	1	0
128971st Level	null	"1"	NULL	STRING	1	3	0	1
128981st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
128991st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
129001st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
129011st Level	null	"3.14"	NULL	STRING	1	3	0	1
129021st Level	null	"a"	NULL	STRING	1	3	0	1
129031st Level	null	"b"	NULL	STRING	1	3	0	1
129041st Level	null	"b,c"	NULL	STRING	1	3	0	1
129051st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
129061st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	0	1
129071st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
129081st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
129091st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
129101st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
129111st Level	null	1	NULL	INTEGER	1	2	0	1
129121st Level	null	12	NULL	INTEGER	1	2	0	1
129131st Level	null	1992	NULL	INTEGER	1	2	0	1
129141st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	0	1
129151st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	0	1
129161st Level	null	3	NULL	INTEGER	1	2	0	1
129171st Level	null	3.14	NULL	DECIMAL	1	2	0	1
129181st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
129191st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
129201st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	1	0
129212nd Level	12	1	INTEGER	INTEGER	2	2	0	1
129222nd Level	12	12	INTEGER	INTEGER	2	2	0	1
129232nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
129242nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
129252nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
129262nd Level	12	3	INTEGER	INTEGER	2	2	0	1
129272nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
129282nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
129292nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
129302nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
129312nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
129322nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
129332nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
129342nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
129352nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
129362nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
129372nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
129382nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
129392nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
129402nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
129412nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
129422nd Level	null	null	NULL	NULL	1	1	0	1
12943"Testcase for Long Blob"
12944validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
12945"Testcase for Long Text"
12946validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
129471st Level	12	"1"	INTEGER	STRING	2	3	0	1
129481st Level	1992	"1"	INTEGER	STRING	2	3	0	1
129491st Level	3.14	"1"	DOUBLE	STRING	2	3	0	1
129501st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	0	1
129511st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	0	1
129521st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	0	1
129531st Level	[1, 2]	"a"	ARRAY	STRING	5	3	1	0
129541st Level	[1, 2]	"b"	ARRAY	STRING	5	3	1	0
129551st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	1	0
129561st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	1	0
129571st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	1	0
129581st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	1	0
129591st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	1	0
129601st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	1	0
129611st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	1	0
129621st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	1	0
129631st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	1	0
129641st Level	null	"1"	NULL	STRING	1	3	0	1
129651st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	0	1
129661st Level	null	"2015-01-15"	NULL	STRING	1	3	0	1
129671st Level	null	"23:24:25.000000"	NULL	STRING	1	3	0	1
129681st Level	null	"3.14"	NULL	STRING	1	3	0	1
129691st Level	null	"a"	NULL	STRING	1	3	0	1
129701st Level	null	"b"	NULL	STRING	1	3	0	1
129711st Level	null	"b,c"	NULL	STRING	1	3	0	1
129721st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	0	1
129731st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	0	1
129741st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	0	1
129751st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	0	1
129761st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	0	1
129771st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	0	1
129781st Level	null	1	NULL	INTEGER	1	2	0	1
129791st Level	null	12	NULL	INTEGER	1	2	0	1
129801st Level	null	1992	NULL	INTEGER	1	2	0	1
129811st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	0	1
129821st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	0	1
129831st Level	null	3	NULL	INTEGER	1	2	0	1
129841st Level	null	3.14	NULL	DECIMAL	1	2	0	1
129851st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	1	0
129861st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	1	0
129871st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	1	0
129882nd Level	12	1	INTEGER	INTEGER	2	2	0	1
129892nd Level	12	12	INTEGER	INTEGER	2	2	0	1
129902nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
129912nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
129922nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
129932nd Level	12	3	INTEGER	INTEGER	2	2	0	1
129942nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
129952nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
129962nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
129972nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
129982nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
129992nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130002nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
130012nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
130022nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
130032nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
130042nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
130052nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
130062nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
130072nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
130082nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
130092nd Level	null	null	NULL	NULL	1	1	0	1
13010"Testcase for Enum"
13011validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
13012"Testcase for Set"
13013validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
13014"Test for SQL vs JSON"
13015"Comparator >="
13016""
13017"Testcase for Tinyint"
13018validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
130192nd Level	1	12	INTEGER	INTEGER	2	2	0	1
130202nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
130212nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
130222nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130232nd Level	1	3	INTEGER	INTEGER	2	2	0	1
130242nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
130252nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
130262nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
130272nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130282nd Level	3	12	INTEGER	INTEGER	2	2	0	1
130292nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
130302nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
130312nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130322nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
13033"Testcase for Boolean"
13034validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
130352nd Level	1	12	INTEGER	INTEGER	2	2	0	1
130362nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
130372nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
130382nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130392nd Level	1	3	INTEGER	INTEGER	2	2	0	1
130402nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
130412nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
130422nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
130432nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130442nd Level	3	12	INTEGER	INTEGER	2	2	0	1
130452nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
130462nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
130472nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130482nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
13049"Testcase for small Int Signed"
13050validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
130512nd Level	1	12	INTEGER	INTEGER	2	2	0	1
130522nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
130532nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
130542nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130552nd Level	1	3	INTEGER	INTEGER	2	2	0	1
130562nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
130572nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
130582nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
130592nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130602nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
130612nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130622nd Level	3	12	INTEGER	INTEGER	2	2	0	1
130632nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
130642nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
130652nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130662nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
13067"Testcase for Signed Medium Int"
13068validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
130692nd Level	1	12	INTEGER	INTEGER	2	2	0	1
130702nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
130712nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
130722nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130732nd Level	1	3	INTEGER	INTEGER	2	2	0	1
130742nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
130752nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
130762nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
130772nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130782nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
130792nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130802nd Level	3	12	INTEGER	INTEGER	2	2	0	1
130812nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
130822nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
130832nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
130842nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
13085"Testcase for unsigned Medium Int"
13086validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
130872nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
130882nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
130892nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
130902nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
130912nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
130922nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
130932nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
130942nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
130952nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
130962nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
130972nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
130982nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
130992nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
131002nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131012nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131022nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
13103"Testcase for signed Int"
13104validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
131052nd Level	1	12	INTEGER	INTEGER	2	2	0	1
131062nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
131072nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
131082nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
131092nd Level	1	3	INTEGER	INTEGER	2	2	0	1
131102nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
131112nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
131122nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
131132nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
131142nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
131152nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
131162nd Level	3	12	INTEGER	INTEGER	2	2	0	1
131172nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
131182nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
131192nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
131202nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
13121"Testcase for Unsigned Int"
13122validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
131232nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
131242nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
131252nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131262nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131272nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
131282nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
131292nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
131302nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131312nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131322nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131332nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131342nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
131352nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
131362nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131372nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131382nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
13139"Testcase for Big Int"
13140validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
131412nd Level	1	12	INTEGER	INTEGER	2	2	0	1
131422nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
131432nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
131442nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
131452nd Level	1	3	INTEGER	INTEGER	2	2	0	1
131462nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
131472nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
131482nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
131492nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
131502nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
131512nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
131522nd Level	3	12	INTEGER	INTEGER	2	2	0	1
131532nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
131542nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
131552nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
131562nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
13157"Testcase for Big Int Unsigned"
13158validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
131592nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
131602nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
131612nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131622nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131632nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
131642nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
131652nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
131662nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131672nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131682nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131692nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131702nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
131712nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
131722nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131732nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
131742nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
13175"Testcase for Decimal"
13176validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
131772nd Level	1.00	12	DECIMAL	INTEGER	2	2	0	1
131782nd Level	1.00	1992	DECIMAL	INTEGER	2	2	0	1
131792nd Level	1.00	2003	DECIMAL	UNSIGNED INTEGER	2	2	0	1
131802nd Level	1.00	2012	DECIMAL	UNSIGNED INTEGER	2	2	0	1
131812nd Level	1.00	3	DECIMAL	INTEGER	2	2	0	1
131822nd Level	1.00	3.14	DECIMAL	DECIMAL	2	2	0	1
131832nd Level	12.00	1992	DECIMAL	INTEGER	2	2	0	1
131842nd Level	12.00	2003	DECIMAL	UNSIGNED INTEGER	2	2	0	1
131852nd Level	12.00	2012	DECIMAL	UNSIGNED INTEGER	2	2	0	1
131862nd Level	3.14	12	DECIMAL	INTEGER	2	2	0	1
131872nd Level	3.14	1992	DECIMAL	INTEGER	2	2	0	1
131882nd Level	3.14	2003	DECIMAL	UNSIGNED INTEGER	2	2	0	1
131892nd Level	3.14	2012	DECIMAL	UNSIGNED INTEGER	2	2	0	1
13190"Testcase for Double"
13191validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
131922nd Level	1	12	DOUBLE	INTEGER	2	2	0	1
131932nd Level	1	1992	DOUBLE	INTEGER	2	2	0	1
131942nd Level	1	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
131952nd Level	1	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
131962nd Level	1	3	DOUBLE	INTEGER	2	2	0	1
131972nd Level	1	3.14	DOUBLE	DECIMAL	2	2	0	1
131982nd Level	12	1992	DOUBLE	INTEGER	2	2	0	1
131992nd Level	12	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
132002nd Level	12	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
132012nd Level	1992	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
132022nd Level	1992	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
132032nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
132042nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
132052nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
132062nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
13207"Testcase for CHAR"
13208validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
132091st Level	12	"1"	INTEGER	STRING	2	3	1	0
132101st Level	1992	"1"	INTEGER	STRING	2	3	1	0
132111st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
132121st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
132131st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
132141st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
132151st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
132161st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
132171st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
132181st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
132191st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
132201st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	0	1
132211st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
132221st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
132231st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
132241st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
132251st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
132261st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	0	1
132271st Level	null	"1"	NULL	STRING	1	3	1	0
132281st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
132291st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
132301st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
132311st Level	null	"3.14"	NULL	STRING	1	3	1	0
132321st Level	null	"a"	NULL	STRING	1	3	1	0
132331st Level	null	"b"	NULL	STRING	1	3	1	0
132341st Level	null	"b,c"	NULL	STRING	1	3	1	0
132351st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
132361st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	1	0
132371st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
132381st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
132391st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
132401st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
132411st Level	null	1	NULL	INTEGER	1	2	1	0
132421st Level	null	12	NULL	INTEGER	1	2	1	0
132431st Level	null	1992	NULL	INTEGER	1	2	1	0
132441st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	1	0
132451st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	1	0
132461st Level	null	3	NULL	INTEGER	1	2	1	0
132471st Level	null	3.14	NULL	DECIMAL	1	2	1	0
132481st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
132491st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
132501st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	0	1
132512nd Level	"1"	"1"	STRING	STRING	3	3	0	1
132522nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132532nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
132542nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
132552nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
132562nd Level	"1"	"a"	STRING	STRING	3	3	0	1
132572nd Level	"1"	"b"	STRING	STRING	3	3	0	1
132582nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
132592nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
132602nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
132612nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
132622nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
132632nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
132642nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
132652nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
132662nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132672nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
132682nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
132692nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
132702nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
132712nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
132722nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
132732nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
132742nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
132752nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
132762nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
132772nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
132782nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
132792nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
132802nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132812nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
132822nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
132832nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
132842nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
132852nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
132862nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
132872nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
132882nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
132892nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
132902nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
132912nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
132922nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
132932nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
132942nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
132952nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
132962nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
132972nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
132982nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
132992nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
133002nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
133012nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133022nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
133032nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133042nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133052nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133062nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133072nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
133082nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
133092nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
133102nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
133112nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
133122nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
133132nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
133142nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
133152nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133162nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
133172nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133182nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133192nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133202nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133212nd Level	"a"	"1"	STRING	STRING	3	3	0	1
133222nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
133232nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
133242nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
133252nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
133262nd Level	"a"	"a"	STRING	STRING	3	3	0	1
133272nd Level	"a"	"b"	STRING	STRING	3	3	0	1
133282nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
133292nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133302nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
133312nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133322nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133332nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133342nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133352nd Level	"b"	"1"	STRING	STRING	3	3	0	1
133362nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
133372nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
133382nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
133392nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
133402nd Level	"b"	"a"	STRING	STRING	3	3	0	1
133412nd Level	"b"	"b"	STRING	STRING	3	3	0	1
133422nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
133432nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133442nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
133452nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133462nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133472nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133482nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133492nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
133502nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
133512nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
133522nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
133532nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
133542nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
133552nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
133562nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
133572nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133582nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
133592nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133602nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133612nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133622nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133632nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
133642nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
133652nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
133662nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
133672nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
133682nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
133692nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
133702nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
133712nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133722nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
133732nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133742nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133752nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133762nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133772nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
133782nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
133792nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
133802nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
133812nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
133822nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
133832nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
133842nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
133852nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
133862nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
133872nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
133882nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
133892nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
133902nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
133912nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
133922nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
133932nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
133942nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
133952nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
133962nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
133972nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
133982nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
133992nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
134002nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
134012nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
134022nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
134032nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
134042nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
134052nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
134062nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
134072nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
134082nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
134092nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
134102nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
134112nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
134122nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
134132nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
134142nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
134152nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
134162nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
134172nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
134182nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
134192nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
134202nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
134212nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
134222nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
134232nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
134242nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
134252nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
134262nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
134272nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
134282nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
134292nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
134302nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
134312nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
134322nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
134332nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
134342nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
134352nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
134362nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
134372nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
134382nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
134392nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
134402nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
134412nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
134422nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
134432nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
134442nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
134452nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
134462nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
134472nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
134482nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
134492nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
134502nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
134512nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
134522nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
13453"Testcase for VARCHAR"
13454validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
134551st Level	12	"1"	INTEGER	STRING	2	3	1	0
134561st Level	1992	"1"	INTEGER	STRING	2	3	1	0
134571st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
134581st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
134591st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
134601st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
134611st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
134621st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
134631st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
134641st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
134651st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
134661st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	0	1
134671st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
134681st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
134691st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
134701st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
134711st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
134721st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	0	1
134731st Level	null	"1"	NULL	STRING	1	3	1	0
134741st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
134751st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
134761st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
134771st Level	null	"3.14"	NULL	STRING	1	3	1	0
134781st Level	null	"a"	NULL	STRING	1	3	1	0
134791st Level	null	"b"	NULL	STRING	1	3	1	0
134801st Level	null	"b,c"	NULL	STRING	1	3	1	0
134811st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
134821st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	1	0
134831st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
134841st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
134851st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
134861st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
134871st Level	null	1	NULL	INTEGER	1	2	1	0
134881st Level	null	12	NULL	INTEGER	1	2	1	0
134891st Level	null	1992	NULL	INTEGER	1	2	1	0
134901st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	1	0
134911st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	1	0
134921st Level	null	3	NULL	INTEGER	1	2	1	0
134931st Level	null	3.14	NULL	DECIMAL	1	2	1	0
134941st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
134951st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
134961st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	0	1
134972nd Level	"1"	"1"	STRING	STRING	3	3	0	1
134982nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
134992nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
135002nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
135012nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
135022nd Level	"1"	"a"	STRING	STRING	3	3	0	1
135032nd Level	"1"	"b"	STRING	STRING	3	3	0	1
135042nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
135052nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
135062nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
135072nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135082nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135092nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135102nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135112nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
135122nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135132nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
135142nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
135152nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
135162nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
135172nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
135182nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
135192nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
135202nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
135212nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135222nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135232nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135242nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135252nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
135262nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135272nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
135282nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
135292nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
135302nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
135312nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
135322nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
135332nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
135342nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
135352nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135362nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135372nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135382nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135392nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
135402nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135412nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
135422nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
135432nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
135442nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
135452nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
135462nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
135472nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
135482nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
135492nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135502nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135512nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135522nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135532nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
135542nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135552nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
135562nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
135572nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
135582nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
135592nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
135602nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
135612nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
135622nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
135632nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135642nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135652nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135662nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135672nd Level	"a"	"1"	STRING	STRING	3	3	0	1
135682nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135692nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
135702nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
135712nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
135722nd Level	"a"	"a"	STRING	STRING	3	3	0	1
135732nd Level	"a"	"b"	STRING	STRING	3	3	0	1
135742nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
135752nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
135762nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
135772nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135782nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135792nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135802nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135812nd Level	"b"	"1"	STRING	STRING	3	3	0	1
135822nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135832nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
135842nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
135852nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
135862nd Level	"b"	"a"	STRING	STRING	3	3	0	1
135872nd Level	"b"	"b"	STRING	STRING	3	3	0	1
135882nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
135892nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
135902nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
135912nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
135922nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
135932nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
135942nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
135952nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
135962nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
135972nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
135982nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
135992nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
136002nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
136012nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
136022nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
136032nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136042nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
136052nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
136062nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
136072nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
136082nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
136092nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
136102nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
136112nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
136122nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
136132nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
136142nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
136152nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
136162nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
136172nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136182nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
136192nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
136202nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
136212nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
136222nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
136232nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
136242nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
136252nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
136262nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
136272nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
136282nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
136292nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
136302nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
136312nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136322nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
136332nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
136342nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
136352nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
136362nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
136372nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
136382nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
136392nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
136402nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
136412nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
136422nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
136432nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
136442nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
136452nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136462nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
136472nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
136482nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
136492nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
136502nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
136512nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
136522nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
136532nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
136542nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
136552nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
136562nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
136572nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
136582nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
136592nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136602nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
136612nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
136622nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
136632nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
136642nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
136652nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
136662nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
136672nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
136682nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
136692nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
136702nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
136712nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
136722nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
136732nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136742nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
136752nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
136762nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
136772nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
136782nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
136792nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
136802nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
136812nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
136822nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
136832nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
136842nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
136852nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
136862nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
136872nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
136882nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
136892nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
136902nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
136912nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
136922nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
136932nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
136942nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
136952nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
136962nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
136972nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
136982nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
13699"Testcase for Binary(255)"
13700validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
13701"Testcase for Variable Binary"
13702validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
13703"Testcase for TinyBlob"
13704validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
13705"Testcase for TinyText"
13706validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
137071st Level	12	"1"	INTEGER	STRING	2	3	1	0
137081st Level	1992	"1"	INTEGER	STRING	2	3	1	0
137091st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
137101st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
137111st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
137121st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
137131st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
137141st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
137151st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
137161st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
137171st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
137181st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	0	1
137191st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
137201st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
137211st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
137221st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
137231st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
137241st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	0	1
137251st Level	null	"1"	NULL	STRING	1	3	1	0
137261st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
137271st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
137281st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
137291st Level	null	"3.14"	NULL	STRING	1	3	1	0
137301st Level	null	"a"	NULL	STRING	1	3	1	0
137311st Level	null	"b"	NULL	STRING	1	3	1	0
137321st Level	null	"b,c"	NULL	STRING	1	3	1	0
137331st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
137341st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	1	0
137351st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
137361st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
137371st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
137381st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
137391st Level	null	1	NULL	INTEGER	1	2	1	0
137401st Level	null	12	NULL	INTEGER	1	2	1	0
137411st Level	null	1992	NULL	INTEGER	1	2	1	0
137421st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	1	0
137431st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	1	0
137441st Level	null	3	NULL	INTEGER	1	2	1	0
137451st Level	null	3.14	NULL	DECIMAL	1	2	1	0
137461st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
137471st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
137481st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	0	1
137492nd Level	"1"	"1"	STRING	STRING	3	3	0	1
137502nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
137512nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
137522nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
137532nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
137542nd Level	"1"	"a"	STRING	STRING	3	3	0	1
137552nd Level	"1"	"b"	STRING	STRING	3	3	0	1
137562nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
137572nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
137582nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
137592nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
137602nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
137612nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
137622nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
137632nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
137642nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
137652nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
137662nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
137672nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
137682nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
137692nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
137702nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
137712nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
137722nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
137732nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
137742nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
137752nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
137762nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
137772nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
137782nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
137792nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
137802nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
137812nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
137822nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
137832nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
137842nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
137852nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
137862nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
137872nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
137882nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
137892nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
137902nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
137912nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
137922nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
137932nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
137942nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
137952nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
137962nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
137972nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
137982nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
137992nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
138002nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
138012nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
138022nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
138032nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
138042nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
138052nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
138062nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
138072nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
138082nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
138092nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
138102nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
138112nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
138122nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
138132nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
138142nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
138152nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
138162nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
138172nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
138182nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
138192nd Level	"a"	"1"	STRING	STRING	3	3	0	1
138202nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
138212nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
138222nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
138232nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
138242nd Level	"a"	"a"	STRING	STRING	3	3	0	1
138252nd Level	"a"	"b"	STRING	STRING	3	3	0	1
138262nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
138272nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
138282nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
138292nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
138302nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
138312nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
138322nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
138332nd Level	"b"	"1"	STRING	STRING	3	3	0	1
138342nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
138352nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
138362nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
138372nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
138382nd Level	"b"	"a"	STRING	STRING	3	3	0	1
138392nd Level	"b"	"b"	STRING	STRING	3	3	0	1
138402nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
138412nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
138422nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
138432nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
138442nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
138452nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
138462nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
138472nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
138482nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
138492nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
138502nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
138512nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
138522nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
138532nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
138542nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
138552nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
138562nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
138572nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
138582nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
138592nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
138602nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
138612nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
138622nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
138632nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
138642nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
138652nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
138662nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
138672nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
138682nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
138692nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
138702nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
138712nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
138722nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
138732nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
138742nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
138752nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
138762nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
138772nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
138782nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
138792nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
138802nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
138812nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
138822nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
138832nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
138842nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
138852nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
138862nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
138872nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
138882nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
138892nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
138902nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
138912nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
138922nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
138932nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
138942nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
138952nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
138962nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
138972nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
138982nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
138992nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
139002nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
139012nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
139022nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
139032nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
139042nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
139052nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
139062nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
139072nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
139082nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
139092nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
139102nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
139112nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
139122nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
139132nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
139142nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
139152nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
139162nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
139172nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
139182nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
139192nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
139202nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
139212nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
139222nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
139232nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
139242nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
139252nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
139262nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
139272nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
139282nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
139292nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
139302nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
139312nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
139322nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
139332nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
139342nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
139352nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
139362nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
139372nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
139382nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
139392nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
139402nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
139412nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
139422nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
139432nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
139442nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
139452nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
139462nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
139472nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
139482nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
139492nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
139502nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
13951"Testcase for Blob"
13952validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
13953"Testcase for Text"
13954validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
139551st Level	12	"1"	INTEGER	STRING	2	3	1	0
139561st Level	1992	"1"	INTEGER	STRING	2	3	1	0
139571st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
139581st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
139591st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
139601st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
139611st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
139621st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
139631st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
139641st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
139651st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
139661st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	0	1
139671st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
139681st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
139691st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
139701st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
139711st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
139721st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	0	1
139731st Level	null	"1"	NULL	STRING	1	3	1	0
139741st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
139751st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
139761st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
139771st Level	null	"3.14"	NULL	STRING	1	3	1	0
139781st Level	null	"a"	NULL	STRING	1	3	1	0
139791st Level	null	"b"	NULL	STRING	1	3	1	0
139801st Level	null	"b,c"	NULL	STRING	1	3	1	0
139811st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
139821st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	1	0
139831st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
139841st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
139851st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
139861st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
139871st Level	null	1	NULL	INTEGER	1	2	1	0
139881st Level	null	12	NULL	INTEGER	1	2	1	0
139891st Level	null	1992	NULL	INTEGER	1	2	1	0
139901st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	1	0
139911st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	1	0
139921st Level	null	3	NULL	INTEGER	1	2	1	0
139931st Level	null	3.14	NULL	DECIMAL	1	2	1	0
139941st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
139951st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
139961st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	0	1
139972nd Level	"1"	"1"	STRING	STRING	3	3	0	1
139982nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
139992nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
140002nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
140012nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
140022nd Level	"1"	"a"	STRING	STRING	3	3	0	1
140032nd Level	"1"	"b"	STRING	STRING	3	3	0	1
140042nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
140052nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
140062nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
140072nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
140082nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
140092nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
140102nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
140112nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
140122nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
140132nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
140142nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
140152nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
140162nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
140172nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
140182nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
140192nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
140202nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
140212nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
140222nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
140232nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
140242nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
140252nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
140262nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
140272nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
140282nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
140292nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
140302nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
140312nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
140322nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
140332nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
140342nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
140352nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
140362nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
140372nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
140382nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
140392nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
140402nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
140412nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
140422nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
140432nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
140442nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
140452nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
140462nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
140472nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
140482nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
140492nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
140502nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
140512nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
140522nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
140532nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
140542nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
140552nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
140562nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
140572nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
140582nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
140592nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
140602nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
140612nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
140622nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
140632nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
140642nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
140652nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
140662nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
140672nd Level	"a"	"1"	STRING	STRING	3	3	0	1
140682nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
140692nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
140702nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
140712nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
140722nd Level	"a"	"a"	STRING	STRING	3	3	0	1
140732nd Level	"a"	"b"	STRING	STRING	3	3	0	1
140742nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
140752nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
140762nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
140772nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
140782nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
140792nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
140802nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
140812nd Level	"b"	"1"	STRING	STRING	3	3	0	1
140822nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
140832nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
140842nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
140852nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
140862nd Level	"b"	"a"	STRING	STRING	3	3	0	1
140872nd Level	"b"	"b"	STRING	STRING	3	3	0	1
140882nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
140892nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
140902nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
140912nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
140922nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
140932nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
140942nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
140952nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
140962nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
140972nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
140982nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
140992nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
141002nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
141012nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
141022nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
141032nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
141042nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
141052nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
141062nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
141072nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
141082nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
141092nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
141102nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
141112nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
141122nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
141132nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
141142nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
141152nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
141162nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
141172nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
141182nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
141192nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
141202nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
141212nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
141222nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
141232nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
141242nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
141252nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
141262nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
141272nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
141282nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
141292nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
141302nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
141312nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
141322nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
141332nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
141342nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
141352nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
141362nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
141372nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
141382nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
141392nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
141402nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
141412nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
141422nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
141432nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
141442nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
141452nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
141462nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
141472nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
141482nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
141492nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
141502nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
141512nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
141522nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
141532nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
141542nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
141552nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
141562nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
141572nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
141582nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
141592nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
141602nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
141612nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
141622nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
141632nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
141642nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
141652nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
141662nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
141672nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
141682nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
141692nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
141702nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
141712nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
141722nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
141732nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
141742nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
141752nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
141762nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
141772nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
141782nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
141792nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
141802nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
141812nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
141822nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
141832nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
141842nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
141852nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
141862nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
141872nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
141882nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
141892nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
141902nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
141912nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
141922nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
141932nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
141942nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
141952nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
141962nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
141972nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
141982nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
14199"Testcase for Medium Blob"
14200validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
14201"Testcase for Medium Text"
14202validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
142031st Level	12	"1"	INTEGER	STRING	2	3	1	0
142041st Level	1992	"1"	INTEGER	STRING	2	3	1	0
142051st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
142061st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
142071st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
142081st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
142091st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
142101st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
142111st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
142121st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
142131st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
142141st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	0	1
142151st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
142161st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
142171st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
142181st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
142191st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
142201st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	0	1
142211st Level	null	"1"	NULL	STRING	1	3	1	0
142221st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
142231st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
142241st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
142251st Level	null	"3.14"	NULL	STRING	1	3	1	0
142261st Level	null	"a"	NULL	STRING	1	3	1	0
142271st Level	null	"b"	NULL	STRING	1	3	1	0
142281st Level	null	"b,c"	NULL	STRING	1	3	1	0
142291st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
142301st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	1	0
142311st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
142321st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
142331st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
142341st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
142351st Level	null	1	NULL	INTEGER	1	2	1	0
142361st Level	null	12	NULL	INTEGER	1	2	1	0
142371st Level	null	1992	NULL	INTEGER	1	2	1	0
142381st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	1	0
142391st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	1	0
142401st Level	null	3	NULL	INTEGER	1	2	1	0
142411st Level	null	3.14	NULL	DECIMAL	1	2	1	0
142421st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
142431st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
142441st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	0	1
142452nd Level	"1"	"1"	STRING	STRING	3	3	0	1
142462nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
142472nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
142482nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
142492nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
142502nd Level	"1"	"a"	STRING	STRING	3	3	0	1
142512nd Level	"1"	"b"	STRING	STRING	3	3	0	1
142522nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
142532nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
142542nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
142552nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
142562nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
142572nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
142582nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
142592nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
142602nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
142612nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
142622nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
142632nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
142642nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
142652nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
142662nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
142672nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
142682nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
142692nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
142702nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
142712nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
142722nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
142732nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
142742nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
142752nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
142762nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
142772nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
142782nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
142792nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
142802nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
142812nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
142822nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
142832nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
142842nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
142852nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
142862nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
142872nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
142882nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
142892nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
142902nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
142912nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
142922nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
142932nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
142942nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
142952nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
142962nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
142972nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
142982nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
142992nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
143002nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
143012nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
143022nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
143032nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
143042nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
143052nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
143062nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
143072nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
143082nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
143092nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
143102nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
143112nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
143122nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
143132nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
143142nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
143152nd Level	"a"	"1"	STRING	STRING	3	3	0	1
143162nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
143172nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
143182nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
143192nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
143202nd Level	"a"	"a"	STRING	STRING	3	3	0	1
143212nd Level	"a"	"b"	STRING	STRING	3	3	0	1
143222nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
143232nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
143242nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
143252nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
143262nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
143272nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
143282nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
143292nd Level	"b"	"1"	STRING	STRING	3	3	0	1
143302nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
143312nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
143322nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
143332nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
143342nd Level	"b"	"a"	STRING	STRING	3	3	0	1
143352nd Level	"b"	"b"	STRING	STRING	3	3	0	1
143362nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
143372nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
143382nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
143392nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
143402nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
143412nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
143422nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
143432nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
143442nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
143452nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
143462nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
143472nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
143482nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
143492nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
143502nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
143512nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
143522nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
143532nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
143542nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
143552nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
143562nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
143572nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
143582nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
143592nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
143602nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
143612nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
143622nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
143632nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
143642nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
143652nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
143662nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
143672nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
143682nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
143692nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
143702nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
143712nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
143722nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
143732nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
143742nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
143752nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
143762nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
143772nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
143782nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
143792nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
143802nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
143812nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
143822nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
143832nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
143842nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
143852nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
143862nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
143872nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
143882nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
143892nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
143902nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
143912nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
143922nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
143932nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
143942nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
143952nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
143962nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
143972nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
143982nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
143992nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
144002nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
144012nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
144022nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
144032nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
144042nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
144052nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
144062nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
144072nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
144082nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
144092nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
144102nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
144112nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
144122nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
144132nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
144142nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
144152nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
144162nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
144172nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
144182nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
144192nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
144202nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
144212nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
144222nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
144232nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
144242nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
144252nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
144262nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
144272nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
144282nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
144292nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
144302nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
144312nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
144322nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
144332nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
144342nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
144352nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
144362nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
144372nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
144382nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
144392nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
144402nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
144412nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
144422nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
144432nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
144442nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
144452nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
144462nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
14447"Testcase for Long Blob"
14448validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
14449"Testcase for Long Text"
14450validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
144511st Level	12	"1"	INTEGER	STRING	2	3	1	0
144521st Level	1992	"1"	INTEGER	STRING	2	3	1	0
144531st Level	3.14	"1"	DOUBLE	STRING	2	3	1	0
144541st Level	3.14	"2015-01-15 23:24:25.000000"	DOUBLE	STRING	2	3	1	0
144551st Level	3.14	"2015-01-15"	DOUBLE	STRING	2	3	1	0
144561st Level	3.14	"23:24:25.000000"	DOUBLE	STRING	2	3	1	0
144571st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
144581st Level	[1, 2]	"a"	ARRAY	STRING	5	3	0	1
144591st Level	[1, 2]	"b"	ARRAY	STRING	5	3	0	1
144601st Level	[1, 2]	"b,c"	ARRAY	STRING	5	3	0	1
144611st Level	[1, 2]	"base64:type15:Zm9v"	ARRAY	STRING	5	3	0	1
144621st Level	[1, 2]	"base64:type15:yv4="	ARRAY	STRING	5	3	0	1
144631st Level	[1, 2]	"base64:type249:yv66vg=="	ARRAY	STRING	5	3	0	1
144641st Level	[1, 2]	"base64:type250:yv66vg=="	ARRAY	STRING	5	3	0	1
144651st Level	[1, 2]	"base64:type251:yv66vg=="	ARRAY	STRING	5	3	0	1
144661st Level	[1, 2]	"base64:type252:yv66vg=="	ARRAY	STRING	5	3	0	1
144671st Level	[1, 2]	{"a": 3}	ARRAY	OBJECT	5	4	0	1
144681st Level	[1, 2]	{"type": "Point", "coordinates": [1.0, 1.0]}	ARRAY	OBJECT	5	4	0	1
144691st Level	null	"1"	NULL	STRING	1	3	1	0
144701st Level	null	"2015-01-15 23:24:25.000000"	NULL	STRING	1	3	1	0
144711st Level	null	"2015-01-15"	NULL	STRING	1	3	1	0
144721st Level	null	"23:24:25.000000"	NULL	STRING	1	3	1	0
144731st Level	null	"3.14"	NULL	STRING	1	3	1	0
144741st Level	null	"a"	NULL	STRING	1	3	1	0
144751st Level	null	"b"	NULL	STRING	1	3	1	0
144761st Level	null	"b,c"	NULL	STRING	1	3	1	0
144771st Level	null	"base64:type15:Zm9v"	NULL	STRING	1	3	1	0
144781st Level	null	"base64:type15:yv4="	NULL	STRING	1	3	1	0
144791st Level	null	"base64:type249:yv66vg=="	NULL	STRING	1	3	1	0
144801st Level	null	"base64:type250:yv66vg=="	NULL	STRING	1	3	1	0
144811st Level	null	"base64:type251:yv66vg=="	NULL	STRING	1	3	1	0
144821st Level	null	"base64:type252:yv66vg=="	NULL	STRING	1	3	1	0
144831st Level	null	1	NULL	INTEGER	1	2	1	0
144841st Level	null	12	NULL	INTEGER	1	2	1	0
144851st Level	null	1992	NULL	INTEGER	1	2	1	0
144861st Level	null	2003	NULL	UNSIGNED INTEGER	1	2	1	0
144871st Level	null	2012	NULL	UNSIGNED INTEGER	1	2	1	0
144881st Level	null	3	NULL	INTEGER	1	2	1	0
144891st Level	null	3.14	NULL	DECIMAL	1	2	1	0
144901st Level	true	[1, 2]	BOOLEAN	ARRAY	6	5	0	1
144911st Level	true	{"a": 3}	BOOLEAN	OBJECT	6	4	0	1
144921st Level	true	{"type": "Point", "coordinates": [1.0, 1.0]}	BOOLEAN	OBJECT	6	4	0	1
144932nd Level	"1"	"1"	STRING	STRING	3	3	0	1
144942nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
144952nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
144962nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
144972nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
144982nd Level	"1"	"a"	STRING	STRING	3	3	0	1
144992nd Level	"1"	"b"	STRING	STRING	3	3	0	1
145002nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
145012nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
145022nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
145032nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
145042nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
145052nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
145062nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
145072nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
145082nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
145092nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
145102nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
145112nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
145122nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
145132nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
145142nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
145152nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
145162nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
145172nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
145182nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
145192nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
145202nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
145212nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
145222nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
145232nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
145242nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
145252nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
145262nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
145272nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
145282nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
145292nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
145302nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
145312nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
145322nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
145332nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
145342nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
145352nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
145362nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
145372nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
145382nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
145392nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
145402nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
145412nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
145422nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
145432nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
145442nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
145452nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
145462nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
145472nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
145482nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
145492nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
145502nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
145512nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
145522nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
145532nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
145542nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
145552nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
145562nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
145572nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
145582nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
145592nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
145602nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
145612nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
145622nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
145632nd Level	"a"	"1"	STRING	STRING	3	3	0	1
145642nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
145652nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
145662nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
145672nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
145682nd Level	"a"	"a"	STRING	STRING	3	3	0	1
145692nd Level	"a"	"b"	STRING	STRING	3	3	0	1
145702nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
145712nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
145722nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
145732nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
145742nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
145752nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
145762nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
145772nd Level	"b"	"1"	STRING	STRING	3	3	0	1
145782nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
145792nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
145802nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
145812nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
145822nd Level	"b"	"a"	STRING	STRING	3	3	0	1
145832nd Level	"b"	"b"	STRING	STRING	3	3	0	1
145842nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
145852nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
145862nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
145872nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
145882nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
145892nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
145902nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
145912nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
145922nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
145932nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
145942nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
145952nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
145962nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
145972nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
145982nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
145992nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
146002nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
146012nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
146022nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
146032nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
146042nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
146052nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
146062nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
146072nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
146082nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
146092nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
146102nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
146112nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
146122nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
146132nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
146142nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
146152nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
146162nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
146172nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
146182nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
146192nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
146202nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
146212nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
146222nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
146232nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
146242nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
146252nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
146262nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
146272nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
146282nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
146292nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
146302nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
146312nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
146322nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
146332nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
146342nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
146352nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
146362nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
146372nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
146382nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
146392nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
146402nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
146412nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
146422nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
146432nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
146442nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
146452nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
146462nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
146472nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
146482nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
146492nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
146502nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
146512nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
146522nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
146532nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
146542nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
146552nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
146562nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
146572nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
146582nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
146592nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
146602nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
146612nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
146622nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
146632nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
146642nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
146652nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
146662nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
146672nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
146682nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
146692nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
146702nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
146712nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
146722nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
146732nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
146742nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
146752nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
146762nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
146772nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
146782nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
146792nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
146802nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
146812nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
146822nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
146832nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
146842nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
146852nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
146862nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
146872nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
146882nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
146892nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
146902nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
146912nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
146922nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
146932nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
146942nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
14695"Testcase for Enum"
14696validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
14697"Testcase for Set"
14698validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
14699"Test for SQL vs JSON"
14700"Comparator <>"
14701""
14702"Testcase for Tinyint"
14703validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
147042nd Level	1	12	INTEGER	INTEGER	2	2	1	0
147052nd Level	1	1992	INTEGER	INTEGER	2	2	1	0
147062nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
147072nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
147082nd Level	1	3	INTEGER	INTEGER	2	2	1	0
147092nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
147102nd Level	12	1	INTEGER	INTEGER	2	2	1	0
147112nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
147122nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
147132nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
147142nd Level	12	3	INTEGER	INTEGER	2	2	1	0
147152nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
147162nd Level	3	1	INTEGER	INTEGER	2	2	1	0
147172nd Level	3	12	INTEGER	INTEGER	2	2	1	0
147182nd Level	3	1992	INTEGER	INTEGER	2	2	1	0
147192nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
147202nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
147212nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
14722"Testcase for Boolean"
14723validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
147242nd Level	1	12	INTEGER	INTEGER	2	2	1	0
147252nd Level	1	1992	INTEGER	INTEGER	2	2	1	0
147262nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
147272nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
147282nd Level	1	3	INTEGER	INTEGER	2	2	1	0
147292nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
147302nd Level	12	1	INTEGER	INTEGER	2	2	1	0
147312nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
147322nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
147332nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
147342nd Level	12	3	INTEGER	INTEGER	2	2	1	0
147352nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
147362nd Level	3	1	INTEGER	INTEGER	2	2	1	0
147372nd Level	3	12	INTEGER	INTEGER	2	2	1	0
147382nd Level	3	1992	INTEGER	INTEGER	2	2	1	0
147392nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
147402nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
147412nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
14742"Testcase for small Int Signed"
14743validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
147442nd Level	1	12	INTEGER	INTEGER	2	2	1	0
147452nd Level	1	1992	INTEGER	INTEGER	2	2	1	0
147462nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
147472nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
147482nd Level	1	3	INTEGER	INTEGER	2	2	1	0
147492nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
147502nd Level	12	1	INTEGER	INTEGER	2	2	1	0
147512nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
147522nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
147532nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
147542nd Level	12	3	INTEGER	INTEGER	2	2	1	0
147552nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
147562nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
147572nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
147582nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
147592nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
147602nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
147612nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
147622nd Level	3	1	INTEGER	INTEGER	2	2	1	0
147632nd Level	3	12	INTEGER	INTEGER	2	2	1	0
147642nd Level	3	1992	INTEGER	INTEGER	2	2	1	0
147652nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
147662nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
147672nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
14768"Testcase for Signed Medium Int"
14769validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
147702nd Level	1	12	INTEGER	INTEGER	2	2	1	0
147712nd Level	1	1992	INTEGER	INTEGER	2	2	1	0
147722nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
147732nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
147742nd Level	1	3	INTEGER	INTEGER	2	2	1	0
147752nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
147762nd Level	12	1	INTEGER	INTEGER	2	2	1	0
147772nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
147782nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
147792nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
147802nd Level	12	3	INTEGER	INTEGER	2	2	1	0
147812nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
147822nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
147832nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
147842nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
147852nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
147862nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
147872nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
147882nd Level	3	1	INTEGER	INTEGER	2	2	1	0
147892nd Level	3	12	INTEGER	INTEGER	2	2	1	0
147902nd Level	3	1992	INTEGER	INTEGER	2	2	1	0
147912nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
147922nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
147932nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
14794"Testcase for unsigned Medium Int"
14795validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
147962nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
147972nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
147982nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
147992nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148002nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
148012nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
148022nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
148032nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
148042nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148052nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148062nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
148072nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
148082nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
148092nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
148102nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148112nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148122nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
148132nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
148142nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
148152nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
148162nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
148172nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148182nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148192nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
14820"Testcase for signed Int"
14821validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
148222nd Level	1	12	INTEGER	INTEGER	2	2	1	0
148232nd Level	1	1992	INTEGER	INTEGER	2	2	1	0
148242nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
148252nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
148262nd Level	1	3	INTEGER	INTEGER	2	2	1	0
148272nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
148282nd Level	12	1	INTEGER	INTEGER	2	2	1	0
148292nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
148302nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
148312nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
148322nd Level	12	3	INTEGER	INTEGER	2	2	1	0
148332nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
148342nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
148352nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
148362nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
148372nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
148382nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
148392nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
148402nd Level	3	1	INTEGER	INTEGER	2	2	1	0
148412nd Level	3	12	INTEGER	INTEGER	2	2	1	0
148422nd Level	3	1992	INTEGER	INTEGER	2	2	1	0
148432nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
148442nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
148452nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
14846"Testcase for Unsigned Int"
14847validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
148482nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
148492nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
148502nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148512nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148522nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
148532nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
148542nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
148552nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
148562nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148572nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148582nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
148592nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
148602nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
148612nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
148622nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148632nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148642nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
148652nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
148662nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
148672nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
148682nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
148692nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148702nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
148712nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
14872"Testcase for Big Int"
14873validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
148742nd Level	1	12	INTEGER	INTEGER	2	2	1	0
148752nd Level	1	1992	INTEGER	INTEGER	2	2	1	0
148762nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
148772nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
148782nd Level	1	3	INTEGER	INTEGER	2	2	1	0
148792nd Level	1	3.14	INTEGER	DECIMAL	2	2	1	0
148802nd Level	12	1	INTEGER	INTEGER	2	2	1	0
148812nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
148822nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
148832nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
148842nd Level	12	3	INTEGER	INTEGER	2	2	1	0
148852nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
148862nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
148872nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
148882nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
148892nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
148902nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
148912nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
148922nd Level	3	1	INTEGER	INTEGER	2	2	1	0
148932nd Level	3	12	INTEGER	INTEGER	2	2	1	0
148942nd Level	3	1992	INTEGER	INTEGER	2	2	1	0
148952nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
148962nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
148972nd Level	3	3.14	INTEGER	DECIMAL	2	2	1	0
14898"Testcase for Big Int Unsigned"
14899validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
149002nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
149012nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
149022nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
149032nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
149042nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
149052nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
149062nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
149072nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
149082nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
149092nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
149102nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
149112nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
149122nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
149132nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
149142nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
149152nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
149162nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	1	0
149172nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
149182nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	1	0
149192nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	1	0
149202nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	1	0
149212nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
149222nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	1	0
149232nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	1	0
14924"Testcase for Decimal"
14925validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
149262nd Level	1.00	12	DECIMAL	INTEGER	2	2	1	0
149272nd Level	1.00	1992	DECIMAL	INTEGER	2	2	1	0
149282nd Level	1.00	2003	DECIMAL	UNSIGNED INTEGER	2	2	1	0
149292nd Level	1.00	2012	DECIMAL	UNSIGNED INTEGER	2	2	1	0
149302nd Level	1.00	3	DECIMAL	INTEGER	2	2	1	0
149312nd Level	1.00	3.14	DECIMAL	DECIMAL	2	2	1	0
149322nd Level	12.00	1	DECIMAL	INTEGER	2	2	1	0
149332nd Level	12.00	1992	DECIMAL	INTEGER	2	2	1	0
149342nd Level	12.00	2003	DECIMAL	UNSIGNED INTEGER	2	2	1	0
149352nd Level	12.00	2012	DECIMAL	UNSIGNED INTEGER	2	2	1	0
149362nd Level	12.00	3	DECIMAL	INTEGER	2	2	1	0
149372nd Level	12.00	3.14	DECIMAL	DECIMAL	2	2	1	0
149382nd Level	3.14	1	DECIMAL	INTEGER	2	2	1	0
149392nd Level	3.14	12	DECIMAL	INTEGER	2	2	1	0
149402nd Level	3.14	1992	DECIMAL	INTEGER	2	2	1	0
149412nd Level	3.14	2003	DECIMAL	UNSIGNED INTEGER	2	2	1	0
149422nd Level	3.14	2012	DECIMAL	UNSIGNED INTEGER	2	2	1	0
149432nd Level	3.14	3	DECIMAL	INTEGER	2	2	1	0
14944"Testcase for Double"
14945validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
149462nd Level	1	12	DOUBLE	INTEGER	2	2	1	0
149472nd Level	1	1992	DOUBLE	INTEGER	2	2	1	0
149482nd Level	1	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
149492nd Level	1	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
149502nd Level	1	3	DOUBLE	INTEGER	2	2	1	0
149512nd Level	1	3.14	DOUBLE	DECIMAL	2	2	1	0
149522nd Level	12	1	DOUBLE	INTEGER	2	2	1	0
149532nd Level	12	1992	DOUBLE	INTEGER	2	2	1	0
149542nd Level	12	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
149552nd Level	12	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
149562nd Level	12	3	DOUBLE	INTEGER	2	2	1	0
149572nd Level	12	3.14	DOUBLE	DECIMAL	2	2	1	0
149582nd Level	1992	1	DOUBLE	INTEGER	2	2	1	0
149592nd Level	1992	12	DOUBLE	INTEGER	2	2	1	0
149602nd Level	1992	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
149612nd Level	1992	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
149622nd Level	1992	3	DOUBLE	INTEGER	2	2	1	0
149632nd Level	1992	3.14	DOUBLE	DECIMAL	2	2	1	0
149642nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
149652nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
149662nd Level	3.14	1992	DOUBLE	INTEGER	2	2	1	0
149672nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
149682nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
149692nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
14970"Testcase for CHAR"
14971validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
149721st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
149732nd Level	"1"	"1"	STRING	STRING	3	3	1	0
149742nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149752nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
149762nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
149772nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
149782nd Level	"1"	"a"	STRING	STRING	3	3	1	0
149792nd Level	"1"	"b"	STRING	STRING	3	3	1	0
149802nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
149812nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
149822nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
149832nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
149842nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
149852nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
149862nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
149872nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
149882nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
149892nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
149902nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
149912nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
149922nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
149932nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
149942nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
149952nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
149962nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
149972nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
149982nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
149992nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150002nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
150012nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
150022nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
150032nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
150042nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
150052nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
150062nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
150072nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
150082nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
150092nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150102nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
150112nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150122nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150132nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150142nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
150152nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
150162nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
150172nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
150182nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
150192nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
150202nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
150212nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
150222nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
150232nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150242nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
150252nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150262nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150272nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150282nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
150292nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
150302nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
150312nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
150322nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
150332nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
150342nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
150352nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
150362nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
150372nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150382nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
150392nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150402nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150412nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150422nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
150432nd Level	"a"	"1"	STRING	STRING	3	3	1	0
150442nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
150452nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
150462nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
150472nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
150482nd Level	"a"	"a"	STRING	STRING	3	3	1	0
150492nd Level	"a"	"b"	STRING	STRING	3	3	1	0
150502nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
150512nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150522nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
150532nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150542nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150552nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150562nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
150572nd Level	"b"	"1"	STRING	STRING	3	3	1	0
150582nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
150592nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
150602nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
150612nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
150622nd Level	"b"	"a"	STRING	STRING	3	3	1	0
150632nd Level	"b"	"b"	STRING	STRING	3	3	1	0
150642nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
150652nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150662nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
150672nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150682nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150692nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150702nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
150712nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
150722nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
150732nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
150742nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
150752nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
150762nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
150772nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
150782nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
150792nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150802nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
150812nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150822nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150832nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150842nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
150852nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
150862nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
150872nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
150882nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
150892nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
150902nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
150912nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
150922nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
150932nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
150942nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
150952nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
150962nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
150972nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
150982nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
150992nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	1	0
151002nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
151012nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
151022nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
151032nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	1	0
151042nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	1	0
151052nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	1	0
151062nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	1	0
151072nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
151082nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
151092nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
151102nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
151112nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
151122nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
151132nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
151142nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
151152nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
151162nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
151172nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
151182nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
151192nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
151202nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
151212nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
151222nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
151232nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
151242nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
151252nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
151262nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
151272nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
151282nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
151292nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
151302nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
151312nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
151322nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
151332nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
151342nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
151352nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
151362nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
151372nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
151382nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
151392nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
151402nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
151412nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
151422nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
151432nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
151442nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
151452nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
151462nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
151472nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
151482nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
151492nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
151502nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
151512nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
151522nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
151532nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
151542nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
151552nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
151562nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
151572nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
151582nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
151592nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
151602nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
151612nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
151622nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
151632nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
151642nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
151652nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
151662nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
151672nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
151682nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
151692nd Level	12	1	INTEGER	INTEGER	2	2	1	0
151702nd Level	12	12	INTEGER	INTEGER	2	2	1	0
151712nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
151722nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
151732nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
151742nd Level	12	3	INTEGER	INTEGER	2	2	1	0
151752nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
151762nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
151772nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
151782nd Level	1992	1992	INTEGER	INTEGER	2	2	1	0
151792nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
151802nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
151812nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
151822nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
151832nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
151842nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
151852nd Level	3.14	1992	DOUBLE	INTEGER	2	2	1	0
151862nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
151872nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
151882nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
151892nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
151902nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
151912nd Level	null	null	NULL	NULL	1	1	1	0
151922nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
151932nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
151942nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
151952nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
151962nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
15197"Testcase for VARCHAR"
15198validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
151991st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
152002nd Level	"1"	"1"	STRING	STRING	3	3	1	0
152012nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152022nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
152032nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
152042nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
152052nd Level	"1"	"a"	STRING	STRING	3	3	1	0
152062nd Level	"1"	"b"	STRING	STRING	3	3	1	0
152072nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
152082nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
152092nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
152102nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
152112nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
152122nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152132nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152142nd Level	"2015-01-15 23:24:25.000000"	"1"	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	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
152172nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
152182nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
152192nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
152202nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
152212nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
152222nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
152232nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
152242nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
152252nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
152262nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152272nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152282nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
152292nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152302nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
152312nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
152322nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
152332nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
152342nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
152352nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
152362nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
152372nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
152382nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
152392nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
152402nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152412nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152422nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
152432nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152442nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
152452nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
152462nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
152472nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
152482nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
152492nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
152502nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
152512nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
152522nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
152532nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
152542nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152552nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152562nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
152572nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152582nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
152592nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
152602nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
152612nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
152622nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
152632nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
152642nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
152652nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
152662nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
152672nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
152682nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152692nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152702nd Level	"a"	"1"	STRING	STRING	3	3	1	0
152712nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152722nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
152732nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
152742nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
152752nd Level	"a"	"a"	STRING	STRING	3	3	1	0
152762nd Level	"a"	"b"	STRING	STRING	3	3	1	0
152772nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
152782nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
152792nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
152802nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
152812nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
152822nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152832nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152842nd Level	"b"	"1"	STRING	STRING	3	3	1	0
152852nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
152862nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
152872nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
152882nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
152892nd Level	"b"	"a"	STRING	STRING	3	3	1	0
152902nd Level	"b"	"b"	STRING	STRING	3	3	1	0
152912nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
152922nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
152932nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
152942nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
152952nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
152962nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
152972nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
152982nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
152992nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
153002nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
153012nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
153022nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
153032nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
153042nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
153052nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
153062nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153072nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
153082nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153092nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153102nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
153112nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
153122nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
153132nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
153142nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
153152nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
153162nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
153172nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
153182nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
153192nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
153202nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153212nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
153222nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153232nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153242nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
153252nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
153262nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	1	0
153272nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
153282nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
153292nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
153302nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	1	0
153312nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	1	0
153322nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	1	0
153332nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	1	0
153342nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153352nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
153362nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153372nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153382nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
153392nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
153402nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
153412nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
153422nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
153432nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
153442nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
153452nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
153462nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
153472nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
153482nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153492nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
153502nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153512nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153522nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
153532nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
153542nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
153552nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
153562nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
153572nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
153582nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
153592nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
153602nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
153612nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
153622nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153632nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
153642nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153652nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153662nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
153672nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
153682nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
153692nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
153702nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
153712nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
153722nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
153732nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
153742nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
153752nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
153762nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153772nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
153782nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153792nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153802nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
153812nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
153822nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
153832nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
153842nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
153852nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
153862nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
153872nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
153882nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
153892nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
153902nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
153912nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
153922nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
153932nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
153942nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
153952nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
153962nd Level	12	1	INTEGER	INTEGER	2	2	1	0
153972nd Level	12	12	INTEGER	INTEGER	2	2	1	0
153982nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
153992nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
154002nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
154012nd Level	12	3	INTEGER	INTEGER	2	2	1	0
154022nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
154032nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
154042nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
154052nd Level	1992	1992	INTEGER	INTEGER	2	2	1	0
154062nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
154072nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
154082nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
154092nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
154102nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
154112nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
154122nd Level	3.14	1992	DOUBLE	INTEGER	2	2	1	0
154132nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
154142nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
154152nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
154162nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
154172nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
154182nd Level	null	null	NULL	NULL	1	1	1	0
154192nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
154202nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
154212nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
154222nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
154232nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
15424"Testcase for Binary(255)"
15425validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15426"Testcase for Variable Binary"
15427validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15428"Testcase for TinyBlob"
15429validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15430"Testcase for TinyText"
15431validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
154321st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
154332nd Level	"1"	"1"	STRING	STRING	3	3	1	0
154342nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
154352nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
154362nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
154372nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
154382nd Level	"1"	"a"	STRING	STRING	3	3	1	0
154392nd Level	"1"	"b"	STRING	STRING	3	3	1	0
154402nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
154412nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
154422nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
154432nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
154442nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
154452nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
154462nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
154472nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
154482nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
154492nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
154502nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
154512nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
154522nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
154532nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
154542nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
154552nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
154562nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
154572nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
154582nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
154592nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
154602nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
154612nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
154622nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
154632nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
154642nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
154652nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
154662nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
154672nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
154682nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
154692nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
154702nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
154712nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
154722nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
154732nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
154742nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
154752nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
154762nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
154772nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
154782nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
154792nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
154802nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
154812nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
154822nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
154832nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
154842nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
154852nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
154862nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
154872nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
154882nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
154892nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
154902nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
154912nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
154922nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
154932nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
154942nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
154952nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
154962nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
154972nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
154982nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
154992nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
155002nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
155012nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
155022nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
155032nd Level	"a"	"1"	STRING	STRING	3	3	1	0
155042nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
155052nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
155062nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
155072nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
155082nd Level	"a"	"a"	STRING	STRING	3	3	1	0
155092nd Level	"a"	"b"	STRING	STRING	3	3	1	0
155102nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
155112nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
155122nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
155132nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
155142nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
155152nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
155162nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
155172nd Level	"b"	"1"	STRING	STRING	3	3	1	0
155182nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
155192nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
155202nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
155212nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
155222nd Level	"b"	"a"	STRING	STRING	3	3	1	0
155232nd Level	"b"	"b"	STRING	STRING	3	3	1	0
155242nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
155252nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
155262nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
155272nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
155282nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
155292nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
155302nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
155312nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
155322nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
155332nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
155342nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
155352nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
155362nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
155372nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
155382nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
155392nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
155402nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
155412nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
155422nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
155432nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
155442nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
155452nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
155462nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
155472nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
155482nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
155492nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
155502nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
155512nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
155522nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
155532nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
155542nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
155552nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
155562nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
155572nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
155582nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
155592nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	1	0
155602nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
155612nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
155622nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
155632nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	1	0
155642nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	1	0
155652nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	1	0
155662nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	1	0
155672nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
155682nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
155692nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
155702nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
155712nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
155722nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
155732nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
155742nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
155752nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
155762nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
155772nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
155782nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
155792nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
155802nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
155812nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
155822nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
155832nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
155842nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
155852nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
155862nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
155872nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
155882nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
155892nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
155902nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
155912nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
155922nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
155932nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
155942nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
155952nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
155962nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
155972nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
155982nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
155992nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
156002nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
156012nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
156022nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
156032nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
156042nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
156052nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
156062nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
156072nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
156082nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
156092nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
156102nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
156112nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
156122nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
156132nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
156142nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
156152nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
156162nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
156172nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
156182nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
156192nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
156202nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
156212nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
156222nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
156232nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
156242nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
156252nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
156262nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
156272nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
156282nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
156292nd Level	12	1	INTEGER	INTEGER	2	2	1	0
156302nd Level	12	12	INTEGER	INTEGER	2	2	1	0
156312nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
156322nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
156332nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
156342nd Level	12	3	INTEGER	INTEGER	2	2	1	0
156352nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
156362nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
156372nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
156382nd Level	1992	1992	INTEGER	INTEGER	2	2	1	0
156392nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
156402nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
156412nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
156422nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
156432nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
156442nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
156452nd Level	3.14	1992	DOUBLE	INTEGER	2	2	1	0
156462nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
156472nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
156482nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
156492nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
156502nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
156512nd Level	null	null	NULL	NULL	1	1	1	0
156522nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
156532nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
156542nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
156552nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
156562nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
15657"Testcase for Blob"
15658validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15659"Testcase for Text"
15660validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
156611st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
156622nd Level	"1"	"1"	STRING	STRING	3	3	1	0
156632nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
156642nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
156652nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
156662nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
156672nd Level	"1"	"a"	STRING	STRING	3	3	1	0
156682nd Level	"1"	"b"	STRING	STRING	3	3	1	0
156692nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
156702nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
156712nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
156722nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
156732nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
156742nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
156752nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
156762nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
156772nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
156782nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
156792nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
156802nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
156812nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
156822nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
156832nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
156842nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
156852nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
156862nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
156872nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
156882nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
156892nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
156902nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
156912nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
156922nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
156932nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
156942nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
156952nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
156962nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
156972nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
156982nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
156992nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
157002nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
157012nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
157022nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
157032nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
157042nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
157052nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
157062nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
157072nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
157082nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
157092nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
157102nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
157112nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
157122nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
157132nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
157142nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
157152nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
157162nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
157172nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
157182nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
157192nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
157202nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
157212nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
157222nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
157232nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
157242nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
157252nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
157262nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
157272nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
157282nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
157292nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
157302nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
157312nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
157322nd Level	"a"	"1"	STRING	STRING	3	3	1	0
157332nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
157342nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
157352nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
157362nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
157372nd Level	"a"	"a"	STRING	STRING	3	3	1	0
157382nd Level	"a"	"b"	STRING	STRING	3	3	1	0
157392nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
157402nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
157412nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
157422nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
157432nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
157442nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
157452nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
157462nd Level	"b"	"1"	STRING	STRING	3	3	1	0
157472nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
157482nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
157492nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
157502nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
157512nd Level	"b"	"a"	STRING	STRING	3	3	1	0
157522nd Level	"b"	"b"	STRING	STRING	3	3	1	0
157532nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
157542nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
157552nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
157562nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
157572nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
157582nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
157592nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
157602nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
157612nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
157622nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
157632nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
157642nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
157652nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
157662nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
157672nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
157682nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
157692nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
157702nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
157712nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
157722nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
157732nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
157742nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
157752nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
157762nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
157772nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
157782nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
157792nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
157802nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
157812nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
157822nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
157832nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
157842nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
157852nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
157862nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
157872nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
157882nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	1	0
157892nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
157902nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
157912nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
157922nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	1	0
157932nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	1	0
157942nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	1	0
157952nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	1	0
157962nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
157972nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
157982nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
157992nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
158002nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
158012nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
158022nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
158032nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
158042nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
158052nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
158062nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
158072nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
158082nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
158092nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
158102nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
158112nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
158122nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
158132nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
158142nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
158152nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
158162nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
158172nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
158182nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
158192nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
158202nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
158212nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
158222nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
158232nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
158242nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
158252nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
158262nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
158272nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
158282nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
158292nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
158302nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
158312nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
158322nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
158332nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
158342nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
158352nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
158362nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
158372nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
158382nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
158392nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
158402nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
158412nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
158422nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
158432nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
158442nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
158452nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
158462nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
158472nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
158482nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
158492nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
158502nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
158512nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
158522nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
158532nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
158542nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
158552nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
158562nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
158572nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
158582nd Level	12	1	INTEGER	INTEGER	2	2	1	0
158592nd Level	12	12	INTEGER	INTEGER	2	2	1	0
158602nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
158612nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
158622nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
158632nd Level	12	3	INTEGER	INTEGER	2	2	1	0
158642nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
158652nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
158662nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
158672nd Level	1992	1992	INTEGER	INTEGER	2	2	1	0
158682nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
158692nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
158702nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
158712nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
158722nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
158732nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
158742nd Level	3.14	1992	DOUBLE	INTEGER	2	2	1	0
158752nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
158762nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
158772nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
158782nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
158792nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
158802nd Level	null	null	NULL	NULL	1	1	1	0
158812nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
158822nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
158832nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
158842nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
158852nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
15886"Testcase for Medium Blob"
15887validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
15888"Testcase for Medium Text"
15889validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
158901st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
158912nd Level	"1"	"1"	STRING	STRING	3	3	1	0
158922nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
158932nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
158942nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
158952nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
158962nd Level	"1"	"a"	STRING	STRING	3	3	1	0
158972nd Level	"1"	"b"	STRING	STRING	3	3	1	0
158982nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
158992nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
159002nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
159012nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
159022nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
159032nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
159042nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
159052nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
159062nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
159072nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
159082nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
159092nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
159102nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
159112nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
159122nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
159132nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
159142nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
159152nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
159162nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
159172nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
159182nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
159192nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
159202nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
159212nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
159222nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
159232nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
159242nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
159252nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
159262nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
159272nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
159282nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
159292nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
159302nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
159312nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
159322nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
159332nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
159342nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
159352nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
159362nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
159372nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
159382nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
159392nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
159402nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
159412nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
159422nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
159432nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
159442nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
159452nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
159462nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
159472nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
159482nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
159492nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
159502nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
159512nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
159522nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
159532nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
159542nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
159552nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
159562nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
159572nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
159582nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
159592nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
159602nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
159612nd Level	"a"	"1"	STRING	STRING	3	3	1	0
159622nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
159632nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
159642nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
159652nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
159662nd Level	"a"	"a"	STRING	STRING	3	3	1	0
159672nd Level	"a"	"b"	STRING	STRING	3	3	1	0
159682nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
159692nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
159702nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
159712nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
159722nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
159732nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
159742nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
159752nd Level	"b"	"1"	STRING	STRING	3	3	1	0
159762nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
159772nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
159782nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
159792nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
159802nd Level	"b"	"a"	STRING	STRING	3	3	1	0
159812nd Level	"b"	"b"	STRING	STRING	3	3	1	0
159822nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
159832nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
159842nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
159852nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
159862nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
159872nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
159882nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
159892nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
159902nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
159912nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
159922nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
159932nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
159942nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
159952nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
159962nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
159972nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
159982nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
159992nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
160002nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
160012nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
160022nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
160032nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
160042nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
160052nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
160062nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
160072nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
160082nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
160092nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
160102nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
160112nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
160122nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
160132nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
160142nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
160152nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
160162nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
160172nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	1	0
160182nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
160192nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
160202nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
160212nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	1	0
160222nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	1	0
160232nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	1	0
160242nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	1	0
160252nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
160262nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
160272nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
160282nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
160292nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
160302nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
160312nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
160322nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
160332nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
160342nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
160352nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
160362nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
160372nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
160382nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
160392nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
160402nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
160412nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
160422nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
160432nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
160442nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
160452nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
160462nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
160472nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
160482nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
160492nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
160502nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
160512nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
160522nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
160532nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
160542nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
160552nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
160562nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
160572nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
160582nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
160592nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
160602nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
160612nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
160622nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
160632nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
160642nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
160652nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
160662nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
160672nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
160682nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
160692nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
160702nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
160712nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
160722nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
160732nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
160742nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
160752nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
160762nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
160772nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
160782nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
160792nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
160802nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
160812nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
160822nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
160832nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
160842nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
160852nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
160862nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
160872nd Level	12	1	INTEGER	INTEGER	2	2	1	0
160882nd Level	12	12	INTEGER	INTEGER	2	2	1	0
160892nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
160902nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
160912nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
160922nd Level	12	3	INTEGER	INTEGER	2	2	1	0
160932nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
160942nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
160952nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
160962nd Level	1992	1992	INTEGER	INTEGER	2	2	1	0
160972nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
160982nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
160992nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
161002nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
161012nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
161022nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
161032nd Level	3.14	1992	DOUBLE	INTEGER	2	2	1	0
161042nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
161052nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
161062nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
161072nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
161082nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
161092nd Level	null	null	NULL	NULL	1	1	1	0
161102nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
161112nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
161122nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
161132nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
161142nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
16115"Testcase for Long Blob"
16116validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
16117"Testcase for Long Text"
16118validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
161191st Level	3.14	"3.14"	DOUBLE	STRING	2	3	0	1
161202nd Level	"1"	"1"	STRING	STRING	3	3	1	0
161212nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
161222nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	1	0
161232nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	1	0
161242nd Level	"1"	"3.14"	STRING	STRING	3	3	1	0
161252nd Level	"1"	"a"	STRING	STRING	3	3	1	0
161262nd Level	"1"	"b"	STRING	STRING	3	3	1	0
161272nd Level	"1"	"b,c"	STRING	STRING	3	3	1	0
161282nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
161292nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
161302nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
161312nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
161322nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
161332nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
161342nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
161352nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
161362nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
161372nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
161382nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
161392nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
161402nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
161412nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
161422nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
161432nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
161442nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
161452nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
161462nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
161472nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
161482nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	1	0
161492nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
161502nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	1	0
161512nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	1	0
161522nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	1	0
161532nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	1	0
161542nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	1	0
161552nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	1	0
161562nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
161572nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
161582nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
161592nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
161602nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
161612nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
161622nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	1	0
161632nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
161642nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	1	0
161652nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	1	0
161662nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	1	0
161672nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	1	0
161682nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	1	0
161692nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	1	0
161702nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
161712nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
161722nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
161732nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
161742nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
161752nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
161762nd Level	"3.14"	"1"	STRING	STRING	3	3	1	0
161772nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
161782nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	1	0
161792nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	1	0
161802nd Level	"3.14"	"3.14"	STRING	STRING	3	3	1	0
161812nd Level	"3.14"	"a"	STRING	STRING	3	3	1	0
161822nd Level	"3.14"	"b"	STRING	STRING	3	3	1	0
161832nd Level	"3.14"	"b,c"	STRING	STRING	3	3	1	0
161842nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
161852nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
161862nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
161872nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
161882nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
161892nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
161902nd Level	"a"	"1"	STRING	STRING	3	3	1	0
161912nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
161922nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	1	0
161932nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	1	0
161942nd Level	"a"	"3.14"	STRING	STRING	3	3	1	0
161952nd Level	"a"	"a"	STRING	STRING	3	3	1	0
161962nd Level	"a"	"b"	STRING	STRING	3	3	1	0
161972nd Level	"a"	"b,c"	STRING	STRING	3	3	1	0
161982nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
161992nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
162002nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
162012nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
162022nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
162032nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
162042nd Level	"b"	"1"	STRING	STRING	3	3	1	0
162052nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
162062nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	1	0
162072nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	1	0
162082nd Level	"b"	"3.14"	STRING	STRING	3	3	1	0
162092nd Level	"b"	"a"	STRING	STRING	3	3	1	0
162102nd Level	"b"	"b"	STRING	STRING	3	3	1	0
162112nd Level	"b"	"b,c"	STRING	STRING	3	3	1	0
162122nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
162132nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
162142nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
162152nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
162162nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
162172nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
162182nd Level	"b,c"	"1"	STRING	STRING	3	3	1	0
162192nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
162202nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	1	0
162212nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	1	0
162222nd Level	"b,c"	"3.14"	STRING	STRING	3	3	1	0
162232nd Level	"b,c"	"a"	STRING	STRING	3	3	1	0
162242nd Level	"b,c"	"b"	STRING	STRING	3	3	1	0
162252nd Level	"b,c"	"b,c"	STRING	STRING	3	3	1	0
162262nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
162272nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
162282nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
162292nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
162302nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
162312nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
162322nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	1	0
162332nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
162342nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	1	0
162352nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	1	0
162362nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	1	0
162372nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	1	0
162382nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	1	0
162392nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	1	0
162402nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
162412nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	1	0
162422nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
162432nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
162442nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
162452nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
162462nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	1	0
162472nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
162482nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	1	0
162492nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	1	0
162502nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	1	0
162512nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	1	0
162522nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	1	0
162532nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	1	0
162542nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
162552nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
162562nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
162572nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
162582nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
162592nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
162602nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	1	0
162612nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
162622nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
162632nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
162642nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
162652nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	1	0
162662nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	1	0
162672nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
162682nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
162692nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
162702nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
162712nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
162722nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
162732nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
162742nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	1	0
162752nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
162762nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
162772nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
162782nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
162792nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	1	0
162802nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	1	0
162812nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
162822nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
162832nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
162842nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
162852nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
162862nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
162872nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
162882nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	1	0
162892nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
162902nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
162912nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
162922nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
162932nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	1	0
162942nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	1	0
162952nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
162962nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
162972nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
162982nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
162992nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
163002nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
163012nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
163022nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	1	0
163032nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	1	0
163042nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	1	0
163052nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	1	0
163062nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	1	0
163072nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	1	0
163082nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	1	0
163092nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	1	0
163102nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	1	0
163112nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	1	0
163122nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	1	0
163132nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	1	0
163142nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	1	0
163152nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	1	0
163162nd Level	12	1	INTEGER	INTEGER	2	2	1	0
163172nd Level	12	12	INTEGER	INTEGER	2	2	1	0
163182nd Level	12	1992	INTEGER	INTEGER	2	2	1	0
163192nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
163202nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
163212nd Level	12	3	INTEGER	INTEGER	2	2	1	0
163222nd Level	12	3.14	INTEGER	DECIMAL	2	2	1	0
163232nd Level	1992	1	INTEGER	INTEGER	2	2	1	0
163242nd Level	1992	12	INTEGER	INTEGER	2	2	1	0
163252nd Level	1992	1992	INTEGER	INTEGER	2	2	1	0
163262nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	1	0
163272nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	1	0
163282nd Level	1992	3	INTEGER	INTEGER	2	2	1	0
163292nd Level	1992	3.14	INTEGER	DECIMAL	2	2	1	0
163302nd Level	3.14	1	DOUBLE	INTEGER	2	2	1	0
163312nd Level	3.14	12	DOUBLE	INTEGER	2	2	1	0
163322nd Level	3.14	1992	DOUBLE	INTEGER	2	2	1	0
163332nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	1	0
163342nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	1	0
163352nd Level	3.14	3	DOUBLE	INTEGER	2	2	1	0
163362nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	1	0
163372nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	1	0
163382nd Level	null	null	NULL	NULL	1	1	1	0
163392nd Level	true	true	BOOLEAN	BOOLEAN	6	6	1	0
163402nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
163412nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
163422nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	1	0
163432nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	1	0
16344"Testcase for Enum"
16345validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
16346"Testcase for Set"
16347validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
16348"Test for SQL vs JSON"
16349"Comparator <=>"
16350""
16351"Testcase for Tinyint"
16352validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
163532nd Level	1	12	INTEGER	INTEGER	2	2	0	1
163542nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
163552nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
163562nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
163572nd Level	1	3	INTEGER	INTEGER	2	2	0	1
163582nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
163592nd Level	12	1	INTEGER	INTEGER	2	2	0	1
163602nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
163612nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
163622nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
163632nd Level	12	3	INTEGER	INTEGER	2	2	0	1
163642nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
163652nd Level	3	1	INTEGER	INTEGER	2	2	0	1
163662nd Level	3	12	INTEGER	INTEGER	2	2	0	1
163672nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
163682nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
163692nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
163702nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
16371"Testcase for Boolean"
16372validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
163732nd Level	1	12	INTEGER	INTEGER	2	2	0	1
163742nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
163752nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
163762nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
163772nd Level	1	3	INTEGER	INTEGER	2	2	0	1
163782nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
163792nd Level	12	1	INTEGER	INTEGER	2	2	0	1
163802nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
163812nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
163822nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
163832nd Level	12	3	INTEGER	INTEGER	2	2	0	1
163842nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
163852nd Level	3	1	INTEGER	INTEGER	2	2	0	1
163862nd Level	3	12	INTEGER	INTEGER	2	2	0	1
163872nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
163882nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
163892nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
163902nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
16391"Testcase for small Int Signed"
16392validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
163932nd Level	1	12	INTEGER	INTEGER	2	2	0	1
163942nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
163952nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
163962nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
163972nd Level	1	3	INTEGER	INTEGER	2	2	0	1
163982nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
163992nd Level	12	1	INTEGER	INTEGER	2	2	0	1
164002nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
164012nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
164022nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
164032nd Level	12	3	INTEGER	INTEGER	2	2	0	1
164042nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
164052nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
164062nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
164072nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
164082nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
164092nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
164102nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
164112nd Level	3	1	INTEGER	INTEGER	2	2	0	1
164122nd Level	3	12	INTEGER	INTEGER	2	2	0	1
164132nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
164142nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
164152nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
164162nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
16417"Testcase for Signed Medium Int"
16418validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
164192nd Level	1	12	INTEGER	INTEGER	2	2	0	1
164202nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
164212nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
164222nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
164232nd Level	1	3	INTEGER	INTEGER	2	2	0	1
164242nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
164252nd Level	12	1	INTEGER	INTEGER	2	2	0	1
164262nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
164272nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
164282nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
164292nd Level	12	3	INTEGER	INTEGER	2	2	0	1
164302nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
164312nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
164322nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
164332nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
164342nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
164352nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
164362nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
164372nd Level	3	1	INTEGER	INTEGER	2	2	0	1
164382nd Level	3	12	INTEGER	INTEGER	2	2	0	1
164392nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
164402nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
164412nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
164422nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
16443"Testcase for unsigned Medium Int"
16444validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
164452nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
164462nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
164472nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
164482nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
164492nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
164502nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
164512nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
164522nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
164532nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
164542nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
164552nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
164562nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
164572nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
164582nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
164592nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
164602nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
164612nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
164622nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
164632nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
164642nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
164652nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
164662nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
164672nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
164682nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
16469"Testcase for signed Int"
16470validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
164712nd Level	1	12	INTEGER	INTEGER	2	2	0	1
164722nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
164732nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
164742nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
164752nd Level	1	3	INTEGER	INTEGER	2	2	0	1
164762nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
164772nd Level	12	1	INTEGER	INTEGER	2	2	0	1
164782nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
164792nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
164802nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
164812nd Level	12	3	INTEGER	INTEGER	2	2	0	1
164822nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
164832nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
164842nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
164852nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
164862nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
164872nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
164882nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
164892nd Level	3	1	INTEGER	INTEGER	2	2	0	1
164902nd Level	3	12	INTEGER	INTEGER	2	2	0	1
164912nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
164922nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
164932nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
164942nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
16495"Testcase for Unsigned Int"
16496validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
164972nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
164982nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
164992nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165002nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165012nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
165022nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
165032nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
165042nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
165052nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165062nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165072nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
165082nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
165092nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
165102nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
165112nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165122nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165132nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
165142nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
165152nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
165162nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
165172nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
165182nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165192nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165202nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
16521"Testcase for Big Int"
16522validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
165232nd Level	1	12	INTEGER	INTEGER	2	2	0	1
165242nd Level	1	1992	INTEGER	INTEGER	2	2	0	1
165252nd Level	1	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
165262nd Level	1	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
165272nd Level	1	3	INTEGER	INTEGER	2	2	0	1
165282nd Level	1	3.14	INTEGER	DECIMAL	2	2	0	1
165292nd Level	12	1	INTEGER	INTEGER	2	2	0	1
165302nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
165312nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
165322nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
165332nd Level	12	3	INTEGER	INTEGER	2	2	0	1
165342nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
165352nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
165362nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
165372nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
165382nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
165392nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
165402nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
165412nd Level	3	1	INTEGER	INTEGER	2	2	0	1
165422nd Level	3	12	INTEGER	INTEGER	2	2	0	1
165432nd Level	3	1992	INTEGER	INTEGER	2	2	0	1
165442nd Level	3	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
165452nd Level	3	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
165462nd Level	3	3.14	INTEGER	DECIMAL	2	2	0	1
16547"Testcase for Big Int Unsigned"
16548validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
165492nd Level	1	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
165502nd Level	1	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
165512nd Level	1	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165522nd Level	1	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165532nd Level	1	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
165542nd Level	1	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
165552nd Level	12	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
165562nd Level	12	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
165572nd Level	12	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165582nd Level	12	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165592nd Level	12	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
165602nd Level	12	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
165612nd Level	1992	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
165622nd Level	1992	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
165632nd Level	1992	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165642nd Level	1992	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165652nd Level	1992	3	UNSIGNED INTEGER	INTEGER	2	2	0	1
165662nd Level	1992	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
165672nd Level	3	1	UNSIGNED INTEGER	INTEGER	2	2	0	1
165682nd Level	3	12	UNSIGNED INTEGER	INTEGER	2	2	0	1
165692nd Level	3	1992	UNSIGNED INTEGER	INTEGER	2	2	0	1
165702nd Level	3	2003	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165712nd Level	3	2012	UNSIGNED INTEGER	UNSIGNED INTEGER	2	2	0	1
165722nd Level	3	3.14	UNSIGNED INTEGER	DECIMAL	2	2	0	1
16573"Testcase for Decimal"
16574validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
165752nd Level	1.00	12	DECIMAL	INTEGER	2	2	0	1
165762nd Level	1.00	1992	DECIMAL	INTEGER	2	2	0	1
165772nd Level	1.00	2003	DECIMAL	UNSIGNED INTEGER	2	2	0	1
165782nd Level	1.00	2012	DECIMAL	UNSIGNED INTEGER	2	2	0	1
165792nd Level	1.00	3	DECIMAL	INTEGER	2	2	0	1
165802nd Level	1.00	3.14	DECIMAL	DECIMAL	2	2	0	1
165812nd Level	12.00	1	DECIMAL	INTEGER	2	2	0	1
165822nd Level	12.00	1992	DECIMAL	INTEGER	2	2	0	1
165832nd Level	12.00	2003	DECIMAL	UNSIGNED INTEGER	2	2	0	1
165842nd Level	12.00	2012	DECIMAL	UNSIGNED INTEGER	2	2	0	1
165852nd Level	12.00	3	DECIMAL	INTEGER	2	2	0	1
165862nd Level	12.00	3.14	DECIMAL	DECIMAL	2	2	0	1
165872nd Level	3.14	1	DECIMAL	INTEGER	2	2	0	1
165882nd Level	3.14	12	DECIMAL	INTEGER	2	2	0	1
165892nd Level	3.14	1992	DECIMAL	INTEGER	2	2	0	1
165902nd Level	3.14	2003	DECIMAL	UNSIGNED INTEGER	2	2	0	1
165912nd Level	3.14	2012	DECIMAL	UNSIGNED INTEGER	2	2	0	1
165922nd Level	3.14	3	DECIMAL	INTEGER	2	2	0	1
16593"Testcase for Double"
16594validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
165952nd Level	1	12	DOUBLE	INTEGER	2	2	0	1
165962nd Level	1	1992	DOUBLE	INTEGER	2	2	0	1
165972nd Level	1	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
165982nd Level	1	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
165992nd Level	1	3	DOUBLE	INTEGER	2	2	0	1
166002nd Level	1	3.14	DOUBLE	DECIMAL	2	2	0	1
166012nd Level	12	1	DOUBLE	INTEGER	2	2	0	1
166022nd Level	12	1992	DOUBLE	INTEGER	2	2	0	1
166032nd Level	12	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
166042nd Level	12	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
166052nd Level	12	3	DOUBLE	INTEGER	2	2	0	1
166062nd Level	12	3.14	DOUBLE	DECIMAL	2	2	0	1
166072nd Level	1992	1	DOUBLE	INTEGER	2	2	0	1
166082nd Level	1992	12	DOUBLE	INTEGER	2	2	0	1
166092nd Level	1992	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
166102nd Level	1992	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
166112nd Level	1992	3	DOUBLE	INTEGER	2	2	0	1
166122nd Level	1992	3.14	DOUBLE	DECIMAL	2	2	0	1
166132nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
166142nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
166152nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
166162nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
166172nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
166182nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
16619"Testcase for CHAR"
16620validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
166211st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
166222nd Level	"1"	"1"	STRING	STRING	3	3	0	1
166232nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166242nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
166252nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
166262nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
166272nd Level	"1"	"a"	STRING	STRING	3	3	0	1
166282nd Level	"1"	"b"	STRING	STRING	3	3	0	1
166292nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
166302nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
166312nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
166322nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
166332nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
166342nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166352nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166362nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
166372nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166382nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
166392nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
166402nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
166412nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
166422nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
166432nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
166442nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
166452nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
166462nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
166472nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
166482nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166492nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166502nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
166512nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166522nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
166532nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
166542nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
166552nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
166562nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
166572nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
166582nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
166592nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
166602nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
166612nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
166622nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166632nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166642nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
166652nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166662nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
166672nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
166682nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
166692nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
166702nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
166712nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
166722nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
166732nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
166742nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
166752nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
166762nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166772nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166782nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
166792nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166802nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
166812nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
166822nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
166832nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
166842nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
166852nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
166862nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
166872nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
166882nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
166892nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
166902nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
166912nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
166922nd Level	"a"	"1"	STRING	STRING	3	3	0	1
166932nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
166942nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
166952nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
166962nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
166972nd Level	"a"	"a"	STRING	STRING	3	3	0	1
166982nd Level	"a"	"b"	STRING	STRING	3	3	0	1
166992nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
167002nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167012nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
167022nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167032nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167042nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
167052nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
167062nd Level	"b"	"1"	STRING	STRING	3	3	0	1
167072nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
167082nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
167092nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
167102nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
167112nd Level	"b"	"a"	STRING	STRING	3	3	0	1
167122nd Level	"b"	"b"	STRING	STRING	3	3	0	1
167132nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
167142nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167152nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
167162nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167172nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167182nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
167192nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
167202nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
167212nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
167222nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
167232nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
167242nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
167252nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
167262nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
167272nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
167282nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167292nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
167302nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167312nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167322nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
167332nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
167342nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
167352nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
167362nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
167372nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
167382nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
167392nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
167402nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
167412nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
167422nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167432nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
167442nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167452nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167462nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
167472nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
167482nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
167492nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
167502nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
167512nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
167522nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
167532nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
167542nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
167552nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
167562nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167572nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
167582nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167592nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167602nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
167612nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
167622nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
167632nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
167642nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
167652nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
167662nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
167672nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
167682nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
167692nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
167702nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167712nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
167722nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167732nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167742nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
167752nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
167762nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
167772nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
167782nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
167792nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
167802nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
167812nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
167822nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
167832nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
167842nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167852nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
167862nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
167872nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
167882nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
167892nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
167902nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
167912nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
167922nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
167932nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
167942nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
167952nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
167962nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
167972nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
167982nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
167992nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
168002nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
168012nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
168022nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
168032nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
168042nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
168052nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168062nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
168072nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
168082nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
168092nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
168102nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
168112nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
168122nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
168132nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
168142nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
168152nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
168162nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
168172nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
168182nd Level	12	1	INTEGER	INTEGER	2	2	0	1
168192nd Level	12	12	INTEGER	INTEGER	2	2	0	1
168202nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
168212nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
168222nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
168232nd Level	12	3	INTEGER	INTEGER	2	2	0	1
168242nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
168252nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
168262nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
168272nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
168282nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
168292nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
168302nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
168312nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
168322nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
168332nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
168342nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
168352nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
168362nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
168372nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
168382nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
168392nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
168402nd Level	null	null	NULL	NULL	1	1	0	1
168412nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
168422nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
168432nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
168442nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
168452nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
16846"Testcase for VARCHAR"
16847validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
168481st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
168492nd Level	"1"	"1"	STRING	STRING	3	3	0	1
168502nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168512nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
168522nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
168532nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
168542nd Level	"1"	"a"	STRING	STRING	3	3	0	1
168552nd Level	"1"	"b"	STRING	STRING	3	3	0	1
168562nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
168572nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
168582nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
168592nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
168602nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
168612nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
168622nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
168632nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
168642nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168652nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
168662nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
168672nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
168682nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
168692nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
168702nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
168712nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
168722nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
168732nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
168742nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
168752nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
168762nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
168772nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
168782nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168792nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
168802nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
168812nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
168822nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
168832nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
168842nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
168852nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
168862nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
168872nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
168882nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
168892nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
168902nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
168912nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
168922nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
168932nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
168942nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
168952nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
168962nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
168972nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
168982nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
168992nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
169002nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
169012nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
169022nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169032nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169042nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169052nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
169062nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
169072nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
169082nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
169092nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
169102nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
169112nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
169122nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
169132nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
169142nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
169152nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
169162nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169172nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169182nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169192nd Level	"a"	"1"	STRING	STRING	3	3	0	1
169202nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
169212nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
169222nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
169232nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
169242nd Level	"a"	"a"	STRING	STRING	3	3	0	1
169252nd Level	"a"	"b"	STRING	STRING	3	3	0	1
169262nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
169272nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
169282nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
169292nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
169302nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169312nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169322nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169332nd Level	"b"	"1"	STRING	STRING	3	3	0	1
169342nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
169352nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
169362nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
169372nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
169382nd Level	"b"	"a"	STRING	STRING	3	3	0	1
169392nd Level	"b"	"b"	STRING	STRING	3	3	0	1
169402nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
169412nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
169422nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
169432nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
169442nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169452nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169462nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169472nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
169482nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
169492nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
169502nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
169512nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
169522nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
169532nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
169542nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
169552nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
169562nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
169572nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
169582nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169592nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169602nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169612nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
169622nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
169632nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
169642nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
169652nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
169662nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
169672nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
169682nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
169692nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
169702nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
169712nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
169722nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169732nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169742nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169752nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
169762nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
169772nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
169782nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
169792nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
169802nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
169812nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
169822nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
169832nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
169842nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
169852nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
169862nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
169872nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
169882nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
169892nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
169902nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
169912nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
169922nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
169932nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
169942nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
169952nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
169962nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
169972nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
169982nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
169992nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170002nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
170012nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
170022nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
170032nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
170042nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
170052nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
170062nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
170072nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
170082nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
170092nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
170102nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
170112nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170122nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
170132nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170142nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
170152nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
170162nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
170172nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
170182nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
170192nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
170202nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
170212nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
170222nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
170232nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
170242nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
170252nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170262nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
170272nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170282nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
170292nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
170302nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
170312nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
170322nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
170332nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
170342nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
170352nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
170362nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
170372nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
170382nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
170392nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170402nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
170412nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170422nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
170432nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
170442nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
170452nd Level	12	1	INTEGER	INTEGER	2	2	0	1
170462nd Level	12	12	INTEGER	INTEGER	2	2	0	1
170472nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
170482nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
170492nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
170502nd Level	12	3	INTEGER	INTEGER	2	2	0	1
170512nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
170522nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
170532nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
170542nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
170552nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
170562nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
170572nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
170582nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
170592nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
170602nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
170612nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
170622nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
170632nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
170642nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
170652nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
170662nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
170672nd Level	null	null	NULL	NULL	1	1	0	1
170682nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
170692nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
170702nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
170712nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
170722nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
17073"Testcase for Binary(255)"
17074validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
17075"Testcase for Variable Binary"
17076validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
17077"Testcase for TinyBlob"
17078validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
17079"Testcase for TinyText"
17080validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
170811st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
170822nd Level	"1"	"1"	STRING	STRING	3	3	0	1
170832nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
170842nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
170852nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
170862nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
170872nd Level	"1"	"a"	STRING	STRING	3	3	0	1
170882nd Level	"1"	"b"	STRING	STRING	3	3	0	1
170892nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
170902nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
170912nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
170922nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
170932nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
170942nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
170952nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
170962nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
170972nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
170982nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
170992nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171002nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
171012nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
171022nd Level	"2015-01-15 23:24:25.000000"	"b"	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	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
171052nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
171062nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
171072nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
171082nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
171092nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
171102nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
171112nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171122nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
171132nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171142nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
171152nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
171162nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
171172nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
171182nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
171192nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
171202nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
171212nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
171222nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
171232nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
171242nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
171252nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171262nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
171272nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171282nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
171292nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
171302nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
171312nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
171322nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
171332nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
171342nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
171352nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
171362nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
171372nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
171382nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
171392nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171402nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
171412nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171422nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
171432nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
171442nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
171452nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
171462nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
171472nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
171482nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
171492nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
171502nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
171512nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
171522nd Level	"a"	"1"	STRING	STRING	3	3	0	1
171532nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171542nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
171552nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171562nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
171572nd Level	"a"	"a"	STRING	STRING	3	3	0	1
171582nd Level	"a"	"b"	STRING	STRING	3	3	0	1
171592nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
171602nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
171612nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
171622nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
171632nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
171642nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
171652nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
171662nd Level	"b"	"1"	STRING	STRING	3	3	0	1
171672nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171682nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
171692nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171702nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
171712nd Level	"b"	"a"	STRING	STRING	3	3	0	1
171722nd Level	"b"	"b"	STRING	STRING	3	3	0	1
171732nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
171742nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
171752nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
171762nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
171772nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
171782nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
171792nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
171802nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
171812nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171822nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
171832nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171842nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
171852nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
171862nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
171872nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
171882nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
171892nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
171902nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
171912nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
171922nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
171932nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
171942nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
171952nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
171962nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
171972nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
171982nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
171992nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
172002nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
172012nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
172022nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172032nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
172042nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172052nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172062nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172072nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172082nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
172092nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
172102nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
172112nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
172122nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
172132nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
172142nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
172152nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
172162nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172172nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
172182nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172192nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172202nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172212nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172222nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
172232nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
172242nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
172252nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
172262nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
172272nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
172282nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
172292nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
172302nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172312nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
172322nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172332nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172342nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172352nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172362nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
172372nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
172382nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
172392nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
172402nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
172412nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
172422nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
172432nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
172442nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172452nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
172462nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172472nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172482nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172492nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172502nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
172512nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
172522nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
172532nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
172542nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
172552nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
172562nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
172572nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
172582nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172592nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
172602nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172612nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172622nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172632nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172642nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
172652nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
172662nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
172672nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
172682nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
172692nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
172702nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
172712nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
172722nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
172732nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
172742nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
172752nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
172762nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
172772nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
172782nd Level	12	1	INTEGER	INTEGER	2	2	0	1
172792nd Level	12	12	INTEGER	INTEGER	2	2	0	1
172802nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
172812nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
172822nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
172832nd Level	12	3	INTEGER	INTEGER	2	2	0	1
172842nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
172852nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
172862nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
172872nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
172882nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
172892nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
172902nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
172912nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
172922nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
172932nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
172942nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
172952nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
172962nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
172972nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
172982nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
172992nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
173002nd Level	null	null	NULL	NULL	1	1	0	1
173012nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
173022nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
173032nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
173042nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
173052nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
17306"Testcase for Blob"
17307validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
17308"Testcase for Text"
17309validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
173101st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
173112nd Level	"1"	"1"	STRING	STRING	3	3	0	1
173122nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
173132nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
173142nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
173152nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
173162nd Level	"1"	"a"	STRING	STRING	3	3	0	1
173172nd Level	"1"	"b"	STRING	STRING	3	3	0	1
173182nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
173192nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
173202nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
173212nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
173222nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
173232nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
173242nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
173252nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
173262nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
173272nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
173282nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
173292nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
173302nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
173312nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
173322nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
173332nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
173342nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
173352nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
173362nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
173372nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
173382nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
173392nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
173402nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
173412nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
173422nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
173432nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
173442nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
173452nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
173462nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
173472nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
173482nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
173492nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
173502nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
173512nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
173522nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
173532nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
173542nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
173552nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
173562nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
173572nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
173582nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
173592nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
173602nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
173612nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
173622nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
173632nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
173642nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
173652nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
173662nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
173672nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
173682nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
173692nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
173702nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
173712nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
173722nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
173732nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
173742nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
173752nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
173762nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
173772nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
173782nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
173792nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
173802nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
173812nd Level	"a"	"1"	STRING	STRING	3	3	0	1
173822nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
173832nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
173842nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
173852nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
173862nd Level	"a"	"a"	STRING	STRING	3	3	0	1
173872nd Level	"a"	"b"	STRING	STRING	3	3	0	1
173882nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
173892nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
173902nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
173912nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
173922nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
173932nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
173942nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
173952nd Level	"b"	"1"	STRING	STRING	3	3	0	1
173962nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
173972nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
173982nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
173992nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
174002nd Level	"b"	"a"	STRING	STRING	3	3	0	1
174012nd Level	"b"	"b"	STRING	STRING	3	3	0	1
174022nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
174032nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
174042nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
174052nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
174062nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
174072nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
174082nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
174092nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
174102nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174112nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
174122nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
174132nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
174142nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
174152nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
174162nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
174172nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
174182nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
174192nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
174202nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
174212nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
174222nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
174232nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
174242nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174252nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
174262nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
174272nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
174282nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
174292nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
174302nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
174312nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
174322nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
174332nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
174342nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
174352nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
174362nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
174372nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
174382nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174392nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
174402nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
174412nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
174422nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
174432nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
174442nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
174452nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
174462nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
174472nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
174482nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
174492nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
174502nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
174512nd Level	"base64:type249:yv66vg=="	"1"	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:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
174542nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
174552nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
174562nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
174572nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
174582nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
174592nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
174602nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
174612nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
174622nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
174632nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
174642nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
174652nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
174662nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174672nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
174682nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
174692nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
174702nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
174712nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
174722nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
174732nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
174742nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
174752nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
174762nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
174772nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
174782nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
174792nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
174802nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174812nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
174822nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
174832nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
174842nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
174852nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
174862nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
174872nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
174882nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
174892nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
174902nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
174912nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
174922nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
174932nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
174942nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
174952nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
174962nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
174972nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
174982nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
174992nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
175002nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
175012nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175022nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
175032nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175042nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175052nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175062nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175072nd Level	12	1	INTEGER	INTEGER	2	2	0	1
175082nd Level	12	12	INTEGER	INTEGER	2	2	0	1
175092nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
175102nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
175112nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
175122nd Level	12	3	INTEGER	INTEGER	2	2	0	1
175132nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
175142nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
175152nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
175162nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
175172nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
175182nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
175192nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
175202nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
175212nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
175222nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
175232nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
175242nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
175252nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
175262nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
175272nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
175282nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
175292nd Level	null	null	NULL	NULL	1	1	0	1
175302nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
175312nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
175322nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
175332nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
175342nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
17535"Testcase for Medium Blob"
17536validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
17537"Testcase for Medium Text"
17538validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
175391st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
175402nd Level	"1"	"1"	STRING	STRING	3	3	0	1
175412nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
175422nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
175432nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
175442nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
175452nd Level	"1"	"a"	STRING	STRING	3	3	0	1
175462nd Level	"1"	"b"	STRING	STRING	3	3	0	1
175472nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
175482nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175492nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
175502nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175512nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175522nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175532nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175542nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
175552nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
175562nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
175572nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
175582nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
175592nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
175602nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
175612nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
175622nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175632nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
175642nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175652nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175662nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175672nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175682nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
175692nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
175702nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
175712nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
175722nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
175732nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
175742nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
175752nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
175762nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175772nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
175782nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175792nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175802nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175812nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175822nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
175832nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
175842nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
175852nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
175862nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
175872nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
175882nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
175892nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
175902nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
175912nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
175922nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
175932nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
175942nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
175952nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
175962nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
175972nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
175982nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
175992nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
176002nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
176012nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
176022nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
176032nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
176042nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
176052nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
176062nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
176072nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
176082nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
176092nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
176102nd Level	"a"	"1"	STRING	STRING	3	3	0	1
176112nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
176122nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
176132nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
176142nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
176152nd Level	"a"	"a"	STRING	STRING	3	3	0	1
176162nd Level	"a"	"b"	STRING	STRING	3	3	0	1
176172nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
176182nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
176192nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
176202nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
176212nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
176222nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
176232nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
176242nd Level	"b"	"1"	STRING	STRING	3	3	0	1
176252nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
176262nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
176272nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
176282nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
176292nd Level	"b"	"a"	STRING	STRING	3	3	0	1
176302nd Level	"b"	"b"	STRING	STRING	3	3	0	1
176312nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
176322nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
176332nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
176342nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
176352nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
176362nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
176372nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
176382nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
176392nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
176402nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
176412nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
176422nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
176432nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
176442nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
176452nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
176462nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
176472nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
176482nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
176492nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
176502nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
176512nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
176522nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
176532nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
176542nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
176552nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
176562nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
176572nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
176582nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
176592nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
176602nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
176612nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
176622nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
176632nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
176642nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
176652nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
176662nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
176672nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
176682nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
176692nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
176702nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
176712nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
176722nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
176732nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
176742nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
176752nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
176762nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
176772nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
176782nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
176792nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
176802nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
176812nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
176822nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
176832nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
176842nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
176852nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
176862nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
176872nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
176882nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
176892nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
176902nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
176912nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
176922nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
176932nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
176942nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
176952nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
176962nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
176972nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
176982nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
176992nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
177002nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
177012nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
177022nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
177032nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
177042nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
177052nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
177062nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177072nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177082nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
177092nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177102nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
177112nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
177122nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
177132nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
177142nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
177152nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
177162nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
177172nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
177182nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
177192nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
177202nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177212nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177222nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
177232nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177242nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
177252nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
177262nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
177272nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
177282nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
177292nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
177302nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
177312nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
177322nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
177332nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
177342nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177352nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177362nd Level	12	1	INTEGER	INTEGER	2	2	0	1
177372nd Level	12	12	INTEGER	INTEGER	2	2	0	1
177382nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
177392nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
177402nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
177412nd Level	12	3	INTEGER	INTEGER	2	2	0	1
177422nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
177432nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
177442nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
177452nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
177462nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
177472nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
177482nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
177492nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
177502nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
177512nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
177522nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
177532nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
177542nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
177552nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
177562nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
177572nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
177582nd Level	null	null	NULL	NULL	1	1	0	1
177592nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
177602nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
177612nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
177622nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
177632nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
17764"Testcase for Long Blob"
17765validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
17766"Testcase for Long Text"
17767validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
177681st Level	3.14	"3.14"	DOUBLE	STRING	2	3	1	0
177692nd Level	"1"	"1"	STRING	STRING	3	3	0	1
177702nd Level	"1"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177712nd Level	"1"	"2015-01-15"	STRING	STRING	3	3	0	1
177722nd Level	"1"	"23:24:25.000000"	STRING	STRING	3	3	0	1
177732nd Level	"1"	"3.14"	STRING	STRING	3	3	0	1
177742nd Level	"1"	"a"	STRING	STRING	3	3	0	1
177752nd Level	"1"	"b"	STRING	STRING	3	3	0	1
177762nd Level	"1"	"b,c"	STRING	STRING	3	3	0	1
177772nd Level	"1"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
177782nd Level	"1"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
177792nd Level	"1"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
177802nd Level	"1"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
177812nd Level	"1"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177822nd Level	"1"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177832nd Level	"2015-01-15 23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
177842nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177852nd Level	"2015-01-15 23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
177862nd Level	"2015-01-15 23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
177872nd Level	"2015-01-15 23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
177882nd Level	"2015-01-15 23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
177892nd Level	"2015-01-15 23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
177902nd Level	"2015-01-15 23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
177912nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
177922nd Level	"2015-01-15 23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
177932nd Level	"2015-01-15 23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
177942nd Level	"2015-01-15 23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
177952nd Level	"2015-01-15 23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
177962nd Level	"2015-01-15 23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
177972nd Level	"2015-01-15"	"1"	STRING	STRING	3	3	0	1
177982nd Level	"2015-01-15"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
177992nd Level	"2015-01-15"	"2015-01-15"	STRING	STRING	3	3	0	1
178002nd Level	"2015-01-15"	"23:24:25.000000"	STRING	STRING	3	3	0	1
178012nd Level	"2015-01-15"	"3.14"	STRING	STRING	3	3	0	1
178022nd Level	"2015-01-15"	"a"	STRING	STRING	3	3	0	1
178032nd Level	"2015-01-15"	"b"	STRING	STRING	3	3	0	1
178042nd Level	"2015-01-15"	"b,c"	STRING	STRING	3	3	0	1
178052nd Level	"2015-01-15"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178062nd Level	"2015-01-15"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
178072nd Level	"2015-01-15"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178082nd Level	"2015-01-15"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178092nd Level	"2015-01-15"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
178102nd Level	"2015-01-15"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
178112nd Level	"23:24:25.000000"	"1"	STRING	STRING	3	3	0	1
178122nd Level	"23:24:25.000000"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
178132nd Level	"23:24:25.000000"	"2015-01-15"	STRING	STRING	3	3	0	1
178142nd Level	"23:24:25.000000"	"23:24:25.000000"	STRING	STRING	3	3	0	1
178152nd Level	"23:24:25.000000"	"3.14"	STRING	STRING	3	3	0	1
178162nd Level	"23:24:25.000000"	"a"	STRING	STRING	3	3	0	1
178172nd Level	"23:24:25.000000"	"b"	STRING	STRING	3	3	0	1
178182nd Level	"23:24:25.000000"	"b,c"	STRING	STRING	3	3	0	1
178192nd Level	"23:24:25.000000"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178202nd Level	"23:24:25.000000"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
178212nd Level	"23:24:25.000000"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178222nd Level	"23:24:25.000000"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178232nd Level	"23:24:25.000000"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
178242nd Level	"23:24:25.000000"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
178252nd Level	"3.14"	"1"	STRING	STRING	3	3	0	1
178262nd Level	"3.14"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
178272nd Level	"3.14"	"2015-01-15"	STRING	STRING	3	3	0	1
178282nd Level	"3.14"	"23:24:25.000000"	STRING	STRING	3	3	0	1
178292nd Level	"3.14"	"3.14"	STRING	STRING	3	3	0	1
178302nd Level	"3.14"	"a"	STRING	STRING	3	3	0	1
178312nd Level	"3.14"	"b"	STRING	STRING	3	3	0	1
178322nd Level	"3.14"	"b,c"	STRING	STRING	3	3	0	1
178332nd Level	"3.14"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178342nd Level	"3.14"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
178352nd Level	"3.14"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178362nd Level	"3.14"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178372nd Level	"3.14"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
178382nd Level	"3.14"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
178392nd Level	"a"	"1"	STRING	STRING	3	3	0	1
178402nd Level	"a"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
178412nd Level	"a"	"2015-01-15"	STRING	STRING	3	3	0	1
178422nd Level	"a"	"23:24:25.000000"	STRING	STRING	3	3	0	1
178432nd Level	"a"	"3.14"	STRING	STRING	3	3	0	1
178442nd Level	"a"	"a"	STRING	STRING	3	3	0	1
178452nd Level	"a"	"b"	STRING	STRING	3	3	0	1
178462nd Level	"a"	"b,c"	STRING	STRING	3	3	0	1
178472nd Level	"a"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178482nd Level	"a"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
178492nd Level	"a"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178502nd Level	"a"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178512nd Level	"a"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
178522nd Level	"a"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
178532nd Level	"b"	"1"	STRING	STRING	3	3	0	1
178542nd Level	"b"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
178552nd Level	"b"	"2015-01-15"	STRING	STRING	3	3	0	1
178562nd Level	"b"	"23:24:25.000000"	STRING	STRING	3	3	0	1
178572nd Level	"b"	"3.14"	STRING	STRING	3	3	0	1
178582nd Level	"b"	"a"	STRING	STRING	3	3	0	1
178592nd Level	"b"	"b"	STRING	STRING	3	3	0	1
178602nd Level	"b"	"b,c"	STRING	STRING	3	3	0	1
178612nd Level	"b"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178622nd Level	"b"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
178632nd Level	"b"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178642nd Level	"b"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178652nd Level	"b"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
178662nd Level	"b"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
178672nd Level	"b,c"	"1"	STRING	STRING	3	3	0	1
178682nd Level	"b,c"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
178692nd Level	"b,c"	"2015-01-15"	STRING	STRING	3	3	0	1
178702nd Level	"b,c"	"23:24:25.000000"	STRING	STRING	3	3	0	1
178712nd Level	"b,c"	"3.14"	STRING	STRING	3	3	0	1
178722nd Level	"b,c"	"a"	STRING	STRING	3	3	0	1
178732nd Level	"b,c"	"b"	STRING	STRING	3	3	0	1
178742nd Level	"b,c"	"b,c"	STRING	STRING	3	3	0	1
178752nd Level	"b,c"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178762nd Level	"b,c"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
178772nd Level	"b,c"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178782nd Level	"b,c"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178792nd Level	"b,c"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
178802nd Level	"b,c"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
178812nd Level	"base64:type15:Zm9v"	"1"	STRING	STRING	3	3	0	1
178822nd Level	"base64:type15:Zm9v"	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
178832nd Level	"base64:type15:Zm9v"	"2015-01-15"	STRING	STRING	3	3	0	1
178842nd Level	"base64:type15:Zm9v"	"23:24:25.000000"	STRING	STRING	3	3	0	1
178852nd Level	"base64:type15:Zm9v"	"3.14"	STRING	STRING	3	3	0	1
178862nd Level	"base64:type15:Zm9v"	"a"	STRING	STRING	3	3	0	1
178872nd Level	"base64:type15:Zm9v"	"b"	STRING	STRING	3	3	0	1
178882nd Level	"base64:type15:Zm9v"	"b,c"	STRING	STRING	3	3	0	1
178892nd Level	"base64:type15:Zm9v"	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
178902nd Level	"base64:type15:Zm9v"	"base64:type15:yv4="	STRING	STRING	3	3	0	1
178912nd Level	"base64:type15:Zm9v"	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
178922nd Level	"base64:type15:Zm9v"	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
178932nd Level	"base64:type15:Zm9v"	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
178942nd Level	"base64:type15:Zm9v"	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
178952nd Level	"base64:type15:yv4="	"1"	STRING	STRING	3	3	0	1
178962nd Level	"base64:type15:yv4="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
178972nd Level	"base64:type15:yv4="	"2015-01-15"	STRING	STRING	3	3	0	1
178982nd Level	"base64:type15:yv4="	"23:24:25.000000"	STRING	STRING	3	3	0	1
178992nd Level	"base64:type15:yv4="	"3.14"	STRING	STRING	3	3	0	1
179002nd Level	"base64:type15:yv4="	"a"	STRING	STRING	3	3	0	1
179012nd Level	"base64:type15:yv4="	"b"	STRING	STRING	3	3	0	1
179022nd Level	"base64:type15:yv4="	"b,c"	STRING	STRING	3	3	0	1
179032nd Level	"base64:type15:yv4="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
179042nd Level	"base64:type15:yv4="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
179052nd Level	"base64:type15:yv4="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
179062nd Level	"base64:type15:yv4="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
179072nd Level	"base64:type15:yv4="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
179082nd Level	"base64:type15:yv4="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
179092nd Level	"base64:type249:yv66vg=="	"1"	STRING	STRING	3	3	0	1
179102nd Level	"base64:type249:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
179112nd Level	"base64:type249:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
179122nd Level	"base64:type249:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
179132nd Level	"base64:type249:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
179142nd Level	"base64:type249:yv66vg=="	"a"	STRING	STRING	3	3	0	1
179152nd Level	"base64:type249:yv66vg=="	"b"	STRING	STRING	3	3	0	1
179162nd Level	"base64:type249:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
179172nd Level	"base64:type249:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
179182nd Level	"base64:type249:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
179192nd Level	"base64:type249:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
179202nd Level	"base64:type249:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
179212nd Level	"base64:type249:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
179222nd Level	"base64:type249:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
179232nd Level	"base64:type250:yv66vg=="	"1"	STRING	STRING	3	3	0	1
179242nd Level	"base64:type250:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
179252nd Level	"base64:type250:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
179262nd Level	"base64:type250:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
179272nd Level	"base64:type250:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
179282nd Level	"base64:type250:yv66vg=="	"a"	STRING	STRING	3	3	0	1
179292nd Level	"base64:type250:yv66vg=="	"b"	STRING	STRING	3	3	0	1
179302nd Level	"base64:type250:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
179312nd Level	"base64:type250:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
179322nd Level	"base64:type250:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
179332nd Level	"base64:type250:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
179342nd Level	"base64:type250:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
179352nd Level	"base64:type250:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
179362nd Level	"base64:type250:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
179372nd Level	"base64:type251:yv66vg=="	"1"	STRING	STRING	3	3	0	1
179382nd Level	"base64:type251:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
179392nd Level	"base64:type251:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
179402nd Level	"base64:type251:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
179412nd Level	"base64:type251:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
179422nd Level	"base64:type251:yv66vg=="	"a"	STRING	STRING	3	3	0	1
179432nd Level	"base64:type251:yv66vg=="	"b"	STRING	STRING	3	3	0	1
179442nd Level	"base64:type251:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
179452nd Level	"base64:type251:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
179462nd Level	"base64:type251:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
179472nd Level	"base64:type251:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
179482nd Level	"base64:type251:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
179492nd Level	"base64:type251:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
179502nd Level	"base64:type251:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
179512nd Level	"base64:type252:yv66vg=="	"1"	STRING	STRING	3	3	0	1
179522nd Level	"base64:type252:yv66vg=="	"2015-01-15 23:24:25.000000"	STRING	STRING	3	3	0	1
179532nd Level	"base64:type252:yv66vg=="	"2015-01-15"	STRING	STRING	3	3	0	1
179542nd Level	"base64:type252:yv66vg=="	"23:24:25.000000"	STRING	STRING	3	3	0	1
179552nd Level	"base64:type252:yv66vg=="	"3.14"	STRING	STRING	3	3	0	1
179562nd Level	"base64:type252:yv66vg=="	"a"	STRING	STRING	3	3	0	1
179572nd Level	"base64:type252:yv66vg=="	"b"	STRING	STRING	3	3	0	1
179582nd Level	"base64:type252:yv66vg=="	"b,c"	STRING	STRING	3	3	0	1
179592nd Level	"base64:type252:yv66vg=="	"base64:type15:Zm9v"	STRING	STRING	3	3	0	1
179602nd Level	"base64:type252:yv66vg=="	"base64:type15:yv4="	STRING	STRING	3	3	0	1
179612nd Level	"base64:type252:yv66vg=="	"base64:type249:yv66vg=="	STRING	STRING	3	3	0	1
179622nd Level	"base64:type252:yv66vg=="	"base64:type250:yv66vg=="	STRING	STRING	3	3	0	1
179632nd Level	"base64:type252:yv66vg=="	"base64:type251:yv66vg=="	STRING	STRING	3	3	0	1
179642nd Level	"base64:type252:yv66vg=="	"base64:type252:yv66vg=="	STRING	STRING	3	3	0	1
179652nd Level	12	1	INTEGER	INTEGER	2	2	0	1
179662nd Level	12	12	INTEGER	INTEGER	2	2	0	1
179672nd Level	12	1992	INTEGER	INTEGER	2	2	0	1
179682nd Level	12	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
179692nd Level	12	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
179702nd Level	12	3	INTEGER	INTEGER	2	2	0	1
179712nd Level	12	3.14	INTEGER	DECIMAL	2	2	0	1
179722nd Level	1992	1	INTEGER	INTEGER	2	2	0	1
179732nd Level	1992	12	INTEGER	INTEGER	2	2	0	1
179742nd Level	1992	1992	INTEGER	INTEGER	2	2	0	1
179752nd Level	1992	2003	INTEGER	UNSIGNED INTEGER	2	2	0	1
179762nd Level	1992	2012	INTEGER	UNSIGNED INTEGER	2	2	0	1
179772nd Level	1992	3	INTEGER	INTEGER	2	2	0	1
179782nd Level	1992	3.14	INTEGER	DECIMAL	2	2	0	1
179792nd Level	3.14	1	DOUBLE	INTEGER	2	2	0	1
179802nd Level	3.14	12	DOUBLE	INTEGER	2	2	0	1
179812nd Level	3.14	1992	DOUBLE	INTEGER	2	2	0	1
179822nd Level	3.14	2003	DOUBLE	UNSIGNED INTEGER	2	2	0	1
179832nd Level	3.14	2012	DOUBLE	UNSIGNED INTEGER	2	2	0	1
179842nd Level	3.14	3	DOUBLE	INTEGER	2	2	0	1
179852nd Level	3.14	3.14	DOUBLE	DECIMAL	2	2	0	1
179862nd Level	[1, 2]	[1, 2]	ARRAY	ARRAY	5	5	0	1
179872nd Level	null	null	NULL	NULL	1	1	0	1
179882nd Level	true	true	BOOLEAN	BOOLEAN	6	6	0	1
179892nd Level	{"a": 3}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
179902nd Level	{"a": 3}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
179912nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"a": 3}	OBJECT	OBJECT	4	4	0	1
179922nd Level	{"type": "Point", "coordinates": [1.0, 1.0]}	{"type": "Point", "coordinates": [1.0, 1.0]}	OBJECT	OBJECT	4	4	0	1
17993"Testcase for Enum"
17994validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
17995"Testcase for Set"
17996validation_stage	side1	side2	side1_json_type	side2_json_type	side1_json_weightage	side2_json_weightage	json_compare	first_level_validation
17997