Current Path : /home/usr.opt/mysql57/mysql-test/suite/json/r/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : /home/usr.opt/mysql57/mysql-test/suite/json/r/json_conversions.result |
# Test of the conversion from JSON data type to MySQL types # ---------------------------------------------------------------------- SET NAMES utf8; # Set up auxiliary table with possible JSON values. The idea here is to # enumerate all possible types of JSON values, including the different # opaque values we could possibly end up with. A difficulty here is that # it is hard create scenarios that will actually employ all possible # MYSQL_TYPE_* types inside opaque: partly because some are used as # native scalars, e.g. signed int -> JSON (signed) INTEGER, partly # because not all MYSQL_TYPE_* values can actually label a column, but # are seemingly only used in intermediate steps, e.g. BINARY and # VARBINARY which end up as column with CHAR and VARCHAR with binary # character set internally. create table t(c varchar(30), j json); create table blobs(b blob); insert into blobs values(x'cafebabe'); create table tinyblobs(b tinyblob); insert into tinyblobs values(x'cafebabe'); create table mediumblobs(b mediumblob); insert into mediumblobs values(x'cafebabe'); create table longblobs(b longblob); insert into longblobs values(x'cafebabe'); create table year(y year); insert into year values('1992'); create table varbin(b varbinary(40)); insert into varbin values(x'cafebabe'); create table bin(b binary(40)); insert into varbin values(x'cafebabe'); create table enum(e enum('a', 'b', 'c')); insert into enum values ('b'); create table sett(e set('a', 'b', 'c')); insert into sett values ('b,c'); create table varchar_binary(c varchar(30) character set 'binary'); insert into varchar_binary values ('foo'); insert into t values ('null' ,'null'); insert into t values ('bool' ,'true'); insert into t values ('uint' ,cast(cast(12 as unsigned) as json)); insert into t values ('int' ,'12'); insert into t values ('double' ,cast(3.14E0 as json)); insert into t values ('stringany' ,'"a"'); insert into t values ('stringint' ,'"1"'); insert into t values ('stringdecimal' ,'"3.14"'); insert into t values ('object' ,'{"a": 3}'); insert into t values ('array' ,'[1,2]'); insert into t values ('opaque_mysql_type_decimal' ,cast(3.14 as json)); insert into t(c,j) (select 'opaque_mysql_type_set' ,cast(e as json) from sett); insert into t(c,j) (select 'opaque_mysql_type_enum' ,cast(e as json) from enum); insert into t values ('opaque_mysql_type_date' ,cast(cast('2015-01-15' as date) as json)); insert into t values ('opaque_mysql_type_time' ,cast(cast('23:24:25' as time) as json)); insert into t values ('opaque_mysql_type_datetime' ,cast(cast('2015-01-15 23:24:25' as datetime) as json)); insert into t values ('opaque_mysql_type_geom' ,cast(st_geomfromtext('point(1 1)') as json)); insert into t(c,j) (select 'opaque_mysql_type_bit' ,cast(x'cafe' as json)); insert into t(c,j) (select 'opaque_mysql_type_year' ,cast(y as json) from year); insert into t(c,j) (select 'opaque_mysql_type_blob' ,cast(b as json) from blobs); insert into t(c,j) (select 'opaque_mysql_type_longblob' ,cast(b as json) from longblobs); insert into t(c,j) (select 'opaque_mysql_type_mediumblob' ,cast(b as json) from mediumblobs); insert into t(c,j) (select 'opaque_mysql_type_tinyblob' ,cast(b as json) from tinyblobs); insert into t(c,j) (select 'opaque_mysql_type_varbinary' ,NULL); insert into t(c,j) (select 'opaque_mysql_type_binary' ,NULL); insert into t(c,j) (select 'opaque_mysql_type_varchar' ,cast(c as json) from varchar_binary); insert into t(c,j) (select 'opaque_mysql_type_string' ,NULL); insert into t values ('opaque_mysql_type_var_string' ,NULL); drop table blobs; drop table tinyblobs; drop table mediumblobs; drop table longblobs; drop table year; drop table varbin; drop table bin; drop table enum; drop table sett; drop table varchar_binary; select c, json_type(j), j from t; c json_type(j) j null NULL null bool BOOLEAN true uint UNSIGNED INTEGER 12 int INTEGER 12 double DOUBLE 3.14 stringany STRING "a" stringint STRING "1" stringdecimal STRING "3.14" object OBJECT {"a": 3} array ARRAY [1, 2] opaque_mysql_type_decimal DECIMAL 3.14 opaque_mysql_type_set STRING "b,c" opaque_mysql_type_enum STRING "b" opaque_mysql_type_date DATE "2015-01-15" opaque_mysql_type_time TIME "23:24:25.000000" opaque_mysql_type_datetime DATETIME "2015-01-15 23:24:25.000000" opaque_mysql_type_geom OBJECT {"type": "Point", "coordinates": [1, 1]} opaque_mysql_type_bit BIT "base64:type16:yv4=" opaque_mysql_type_year OPAQUE "base64:type13:MTk5Mg==" opaque_mysql_type_blob BLOB "base64:type252:yv66vg==" opaque_mysql_type_longblob BLOB "base64:type251:yv66vg==" opaque_mysql_type_mediumblob BLOB "base64:type250:yv66vg==" opaque_mysql_type_tinyblob BLOB "base64:type249:yv66vg==" opaque_mysql_type_varbinary NULL NULL opaque_mysql_type_binary NULL NULL opaque_mysql_type_varchar BLOB "base64:type15:Zm9v" opaque_mysql_type_string NULL NULL opaque_mysql_type_var_string NULL NULL # Auxiliary table containing columns of MySQL types create table at(c varchar(36), _bit bit(64), _tin tinyint(8), _boo bool, _sms smallint signed, _smu smallint unsigned, _mes mediumint signed, _meu mediumint unsigned, _ins int signed, _inu int unsigned, _bis bigint signed, _biu bigint unsigned, _dec decimal (5,2), _flo float, _dou double, _dat date default '2000-01-01', _dtt datetime default '2000-01-01 00:00:00', _smp timestamp default '2000-01-01 00:00:00', _tim time default' 00:00:00', _yea year, _jsn json, _chr char(255), _vch varchar(255), _bin binary(255), _vbn varbinary(255), _tbl tinyblob, _ttx tinytext, _blb blob, _txt text, _mbb mediumblob, _mtx mediumtext, _lbb longblob, _ltx longtext, _enu enum('a', 'b', 'c'), _set set('a', 'b', 'c'), _geo geometry, _pnt point, _lst linestring, _pol polygon, _mpt multipoint, _mls multilinestring, _mpy multipolygon, _gco geometrycollection); # ---------------------------------------------------------------------- # I N S E R T F R O M J S O N C O L U M N # ---------------------------------------------------------------------- insert into at(c,_bit) select concat('_bit: ',c),j from t where c='null'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='bool'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='uint'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='int'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='double'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='stringany'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='stringint'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='stringdecimal'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='object'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='array'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_set'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_enum'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22001: Data too long for column '_bit' at row 14 insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22001: Data too long for column '_bit' at row 15 insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22001: Data too long for column '_bit' at row 16 insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22001: Data too long for column '_bit' at row 17 insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22001: Data too long for column '_bit' at row 18 insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22001: Data too long for column '_bit' at row 19 insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22001: Data too long for column '_bit' at row 19 insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22001: Data too long for column '_bit' at row 20 insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22001: Data too long for column '_bit' at row 21 insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22001: Data too long for column '_bit' at row 22 insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22001: Data too long for column '_bit' at row 23 insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22001: Data too long for column '_bit' at row 26 insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_bit) select concat('_bit: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_tin) select concat('_tin: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='bool'; insert into at(c,_tin) select concat('_tin: ',c),j from t where c='uint'; insert into at(c,_tin) select concat('_tin: ',c),j from t where c='int'; insert into at(c,_tin) select concat('_tin: ',c),j from t where c='double'; insert into at(c,_tin) select concat('_tin: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='stringint'; insert into at(c,_tin) select concat('_tin: ',c),j from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26 insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_tin) select concat('_tin: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_boo) select concat('_boo: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='bool'; insert into at(c,_boo) select concat('_boo: ',c),j from t where c='uint'; insert into at(c,_boo) select concat('_boo: ',c),j from t where c='int'; insert into at(c,_boo) select concat('_boo: ',c),j from t where c='double'; insert into at(c,_boo) select concat('_boo: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='stringint'; insert into at(c,_boo) select concat('_boo: ',c),j from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26 insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_boo) select concat('_boo: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_sms) select concat('_sms: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='bool'; insert into at(c,_sms) select concat('_sms: ',c),j from t where c='uint'; insert into at(c,_sms) select concat('_sms: ',c),j from t where c='int'; insert into at(c,_sms) select concat('_sms: ',c),j from t where c='double'; insert into at(c,_sms) select concat('_sms: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='stringint'; insert into at(c,_sms) select concat('_sms: ',c),j from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26 insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_sms) select concat('_sms: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_smu) select concat('_smu: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='bool'; insert into at(c,_smu) select concat('_smu: ',c),j from t where c='uint'; insert into at(c,_smu) select concat('_smu: ',c),j from t where c='int'; insert into at(c,_smu) select concat('_smu: ',c),j from t where c='double'; insert into at(c,_smu) select concat('_smu: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='stringint'; insert into at(c,_smu) select concat('_smu: ',c),j from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26 insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_smu) select concat('_smu: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_mes) select concat('_mes: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='bool'; insert into at(c,_mes) select concat('_mes: ',c),j from t where c='uint'; insert into at(c,_mes) select concat('_mes: ',c),j from t where c='int'; insert into at(c,_mes) select concat('_mes: ',c),j from t where c='double'; insert into at(c,_mes) select concat('_mes: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='stringint'; insert into at(c,_mes) select concat('_mes: ',c),j from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26 insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_mes) select concat('_mes: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_meu) select concat('_meu: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='bool'; insert into at(c,_meu) select concat('_meu: ',c),j from t where c='uint'; insert into at(c,_meu) select concat('_meu: ',c),j from t where c='int'; insert into at(c,_meu) select concat('_meu: ',c),j from t where c='double'; insert into at(c,_meu) select concat('_meu: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='stringint'; insert into at(c,_meu) select concat('_meu: ',c),j from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26 insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_meu) select concat('_meu: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_ins) select concat('_ins: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='bool'; insert into at(c,_ins) select concat('_ins: ',c),j from t where c='uint'; insert into at(c,_ins) select concat('_ins: ',c),j from t where c='int'; insert into at(c,_ins) select concat('_ins: ',c),j from t where c='double'; insert into at(c,_ins) select concat('_ins: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='stringint'; insert into at(c,_ins) select concat('_ins: ',c),j from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26 insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_ins) select concat('_ins: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_inu) select concat('_inu: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='bool'; insert into at(c,_inu) select concat('_inu: ',c),j from t where c='uint'; insert into at(c,_inu) select concat('_inu: ',c),j from t where c='int'; insert into at(c,_inu) select concat('_inu: ',c),j from t where c='double'; insert into at(c,_inu) select concat('_inu: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='stringint'; insert into at(c,_inu) select concat('_inu: ',c),j from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26 insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_inu) select concat('_inu: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_bis) select concat('_bis: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='bool'; insert into at(c,_bis) select concat('_bis: ',c),j from t where c='uint'; insert into at(c,_bis) select concat('_bis: ',c),j from t where c='int'; insert into at(c,_bis) select concat('_bis: ',c),j from t where c='double'; insert into at(c,_bis) select concat('_bis: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='stringint'; insert into at(c,_bis) select concat('_bis: ',c),j from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26 insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_bis) select concat('_bis: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_biu) select concat('_biu: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 1 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='bool'; insert into at(c,_biu) select concat('_biu: ',c),j from t where c='uint'; insert into at(c,_biu) select concat('_biu: ',c),j from t where c='int'; insert into at(c,_biu) select concat('_biu: ',c),j from t where c='double'; insert into at(c,_biu) select concat('_biu: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 6 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='stringint'; insert into at(c,_biu) select concat('_biu: ',c),j from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 8 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 9 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 10 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 12 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 13 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 14 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 15 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 16 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 17 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 18 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 19 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 20 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 21 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 22 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 23 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 26 insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_biu) select concat('_biu: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_dec) select concat('_dec: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 1 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='bool'; insert into at(c,_dec) select concat('_dec: ',c),j from t where c='uint'; insert into at(c,_dec) select concat('_dec: ',c),j from t where c='int'; insert into at(c,_dec) select concat('_dec: ',c),j from t where c='double'; insert into at(c,_dec) select concat('_dec: ',c),j from t where c='stringany'; ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='stringint'; insert into at(c,_dec) select concat('_dec: ',c),j from t where c='stringdecimal'; insert into at(c,_dec) select concat('_dec: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 9 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 10 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_set'; ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_enum'; ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 14 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 15 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 16 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 17 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 18 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 19 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 20 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 21 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 22 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 23 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 26 insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_dec) select concat('_dec: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_flo) select concat('_flo: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='bool'; insert into at(c,_flo) select concat('_flo: ',c),j from t where c='uint'; insert into at(c,_flo) select concat('_flo: ',c),j from t where c='int'; insert into at(c,_flo) select concat('_flo: ',c),j from t where c='double'; insert into at(c,_flo) select concat('_flo: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 6 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='stringint'; insert into at(c,_flo) select concat('_flo: ',c),j from t where c='stringdecimal'; insert into at(c,_flo) select concat('_flo: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 9 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 10 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 12 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 13 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 14 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 15 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 16 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 17 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 18 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 19 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 20 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 21 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 22 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 23 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 26 insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_flo) select concat('_flo: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_dou) select concat('_dou: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 1 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='bool'; insert into at(c,_dou) select concat('_dou: ',c),j from t where c='uint'; insert into at(c,_dou) select concat('_dou: ',c),j from t where c='int'; insert into at(c,_dou) select concat('_dou: ',c),j from t where c='double'; insert into at(c,_dou) select concat('_dou: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 6 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='stringint'; insert into at(c,_dou) select concat('_dou: ',c),j from t where c='stringdecimal'; insert into at(c,_dou) select concat('_dou: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 9 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 10 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 12 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 13 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 14 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 15 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 16 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 17 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 18 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 19 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 20 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 21 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 22 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 23 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 26 insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_dou) select concat('_dou: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_dat) select concat('_dat: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='bool'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='uint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='int'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='double'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='stringint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_decimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_time'; Warnings: Note 1292 Incorrect date value: '23:24:25' for column '_dat' at row 15 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_datetime'; Warnings: Note 1292 Incorrect date value: '2015-01-15 23:24:25' for column '_dat' at row 16 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26 insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='bool'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='uint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='int'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='double'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='stringint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_decimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26 insert into at(c,_dtt) select concat('_dtt: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_dat) select concat('_dat: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_smp) select concat('_smp: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='bool'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='uint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='int'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='double'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='stringint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_decimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26 insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_smp) select concat('_smp: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_tim) select concat('_tim: ',c),j from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='bool'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='uint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='int'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='double'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='stringint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_decimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26 insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_tim) select concat('_tim: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_yea) select concat('_yea: ',c),j from t where c='null'; ERROR HY000: Incorrect integer value: 'null' for column '_yea' at row 1 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='bool'; ERROR HY000: Incorrect integer value: 'true' for column '_yea' at row 2 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='uint'; insert into at(c,_yea) select concat('_yea: ',c),j from t where c='int'; insert into at(c,_yea) select concat('_yea: ',c),j from t where c='double'; insert into at(c,_yea) select concat('_yea: ',c),j from t where c='stringany'; ERROR HY000: Incorrect integer value: '"a"' for column '_yea' at row 6 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='stringint'; ERROR HY000: Incorrect integer value: '"1"' for column '_yea' at row 7 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='stringdecimal'; ERROR HY000: Incorrect integer value: '"3.14"' for column '_yea' at row 8 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='object'; ERROR HY000: Incorrect integer value: '{"a": 3}' for column '_yea' at row 9 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='array'; ERROR HY000: Incorrect integer value: '[1, 2]' for column '_yea' at row 10 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_set'; ERROR HY000: Incorrect integer value: '"b,c"' for column '_yea' at row 12 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_enum'; ERROR HY000: Incorrect integer value: '"b"' for column '_yea' at row 13 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_date'; ERROR HY000: Incorrect integer value: '"2015-01-15"' for column '_yea' at row 14 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_time'; ERROR HY000: Incorrect integer value: '"23:24:25.000000"' for column '_yea' at row 15 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR HY000: Incorrect integer value: '"2015-01-15 23:24:25.000000"' for column '_yea' at row 16 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_geom'; ERROR HY000: Incorrect integer value: '{"type": "Point", "coordinates": [1, 1]}' for column '_yea' at row 17 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_bit'; ERROR HY000: Incorrect integer value: '"base64:type16:yv4="' for column '_yea' at row 18 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_year'; ERROR HY000: Incorrect integer value: '"base64:type13:MTk5Mg=="' for column '_yea' at row 19 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_blob'; ERROR HY000: Incorrect integer value: '"base64:type252:yv66vg=="' for column '_yea' at row 20 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR HY000: Incorrect integer value: '"base64:type251:yv66vg=="' for column '_yea' at row 21 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR HY000: Incorrect integer value: '"base64:type250:yv66vg=="' for column '_yea' at row 22 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR HY000: Incorrect integer value: '"base64:type249:yv66vg=="' for column '_yea' at row 23 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR HY000: Incorrect integer value: '"base64:type15:Zm9v"' for column '_yea' at row 26 insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_yea) select concat('_yea: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='null'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='bool'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='uint'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='int'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='double'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='stringany'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='stringint'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='stringdecimal'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='object'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='array'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_set'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_enum'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_geom'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_bit'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_year'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_blob'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_longblob'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_varchar'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_jsn) select concat('_jsn: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='null'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='bool'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='uint'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='int'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='double'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='stringany'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='stringint'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='stringdecimal'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='object'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='array'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_set'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_enum'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_geom'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_bit'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_year'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_blob'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_longblob'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_varchar'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_chr) select concat('_chr: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='null'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='bool'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='uint'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='int'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='double'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='stringany'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='stringint'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='stringdecimal'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='object'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='array'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_set'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_enum'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_geom'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_bit'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_year'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_blob'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_longblob'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_varchar'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_vch) select concat('_vch: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='null'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='bool'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='uint'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='int'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='double'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='stringany'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='stringint'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='stringdecimal'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='object'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='array'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_set'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_enum'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_geom'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_bit'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_year'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_blob'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_longblob'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_varchar'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_bin) select concat('_bin: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='null'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='bool'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='uint'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='int'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='double'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='stringany'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='stringint'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='stringdecimal'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='object'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='array'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_set'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_enum'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_geom'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_bit'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_year'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_blob'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_longblob'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_varchar'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_vbn) select concat('_vbn: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='null'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='bool'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='uint'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='int'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='double'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='stringany'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='stringint'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='stringdecimal'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='object'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='array'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_set'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_enum'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_geom'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_bit'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_year'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_blob'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_longblob'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_varchar'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_tbl) select concat('_tbl: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='null'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='bool'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='uint'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='int'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='double'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='stringany'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='stringint'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='stringdecimal'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='object'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='array'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_set'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_enum'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_geom'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_bit'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_year'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_blob'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_longblob'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_varchar'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_ttx) select concat('_ttx: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='null'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='bool'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='uint'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='int'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='double'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='stringany'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='stringint'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='stringdecimal'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='object'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='array'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_set'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_enum'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_geom'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_bit'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_year'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_blob'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_longblob'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_varchar'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_blb) select concat('_blb: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='null'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='bool'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='uint'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='int'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='double'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='stringany'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='stringint'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='stringdecimal'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='object'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='array'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_set'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_enum'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_geom'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_bit'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_year'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_blob'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_longblob'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_varchar'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_txt) select concat('_txt: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='null'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='bool'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='uint'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='int'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='double'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='stringany'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='stringint'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='stringdecimal'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='object'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='array'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_set'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_enum'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_geom'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_bit'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_year'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_blob'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_longblob'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_varchar'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_mbb) select concat('_mbb: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='null'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='bool'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='uint'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='int'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='double'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='stringany'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='stringint'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='stringdecimal'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='object'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='array'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_set'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_enum'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_geom'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_bit'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_year'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_blob'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_longblob'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_varchar'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_mtx) select concat('_mtx: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='null'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='bool'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='uint'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='int'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='double'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='stringany'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='stringint'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='stringdecimal'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='object'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='array'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_set'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_enum'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_geom'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_bit'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_year'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_blob'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_longblob'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_varchar'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_lbb) select concat('_lbb: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='null'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='bool'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='uint'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='int'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='double'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='stringany'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='stringint'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='stringdecimal'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='object'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='array'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_decimal'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_set'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_enum'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_date'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_time'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_datetime'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_geom'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_bit'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_year'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_blob'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_longblob'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_varchar'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_ltx) select concat('_ltx: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_enu) select concat('_enu: ',c),j from t where c='double'; ERROR 01000: Data truncated for column '_enu' at row 5 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='stringany'; ERROR 01000: Data truncated for column '_enu' at row 6 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='stringint'; ERROR 01000: Data truncated for column '_enu' at row 7 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='stringdecimal'; ERROR 01000: Data truncated for column '_enu' at row 8 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='object'; ERROR 01000: Data truncated for column '_enu' at row 9 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='array'; ERROR 01000: Data truncated for column '_enu' at row 10 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_decimal'; ERROR 01000: Data truncated for column '_enu' at row 11 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_set'; ERROR 01000: Data truncated for column '_enu' at row 12 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 01000: Data truncated for column '_enu' at row 13 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_date'; ERROR 01000: Data truncated for column '_enu' at row 14 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_time'; ERROR 01000: Data truncated for column '_enu' at row 15 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 01000: Data truncated for column '_enu' at row 16 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 01000: Data truncated for column '_enu' at row 17 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 01000: Data truncated for column '_enu' at row 18 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_year'; ERROR 01000: Data truncated for column '_enu' at row 19 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 01000: Data truncated for column '_enu' at row 20 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 01000: Data truncated for column '_enu' at row 21 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 01000: Data truncated for column '_enu' at row 22 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 01000: Data truncated for column '_enu' at row 23 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 01000: Data truncated for column '_enu' at row 26 insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_enu) select concat('_enu: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_set) select concat('_set: ',c),j from t where c='null'; ERROR 01000: Data truncated for column '_set' at row 1 insert into at(c,_set) select concat('_set: ',c),j from t where c='bool'; ERROR 01000: Data truncated for column '_set' at row 2 insert into at(c,_set) select concat('_set: ',c),j from t where c='uint'; ERROR 01000: Data truncated for column '_set' at row 3 insert into at(c,_set) select concat('_set: ',c),j from t where c='int'; ERROR 01000: Data truncated for column '_set' at row 4 insert into at(c,_set) select concat('_set: ',c),j from t where c='double'; ERROR 01000: Data truncated for column '_set' at row 5 insert into at(c,_set) select concat('_set: ',c),j from t where c='stringany'; ERROR 01000: Data truncated for column '_set' at row 6 insert into at(c,_set) select concat('_set: ',c),j from t where c='stringint'; ERROR 01000: Data truncated for column '_set' at row 7 insert into at(c,_set) select concat('_set: ',c),j from t where c='stringdecimal'; ERROR 01000: Data truncated for column '_set' at row 8 insert into at(c,_set) select concat('_set: ',c),j from t where c='object'; ERROR 01000: Data truncated for column '_set' at row 9 insert into at(c,_set) select concat('_set: ',c),j from t where c='array'; ERROR 01000: Data truncated for column '_set' at row 10 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_decimal'; ERROR 01000: Data truncated for column '_set' at row 11 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_set'; ERROR 01000: Data truncated for column '_set' at row 12 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 01000: Data truncated for column '_set' at row 13 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_date'; ERROR 01000: Data truncated for column '_set' at row 14 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_time'; ERROR 01000: Data truncated for column '_set' at row 15 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 01000: Data truncated for column '_set' at row 16 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 01000: Data truncated for column '_set' at row 17 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 01000: Data truncated for column '_set' at row 18 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_year'; ERROR 01000: Data truncated for column '_set' at row 19 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 01000: Data truncated for column '_set' at row 20 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 01000: Data truncated for column '_set' at row 21 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 01000: Data truncated for column '_set' at row 22 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 01000: Data truncated for column '_set' at row 23 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 01000: Data truncated for column '_set' at row 26 insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_set) select concat('_set: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_geo) select concat('_geo: ',c),j from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_geo) select concat('_geo: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_pnt) select concat('_pnt: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_lst) select concat('_lst: ',c),j from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_lst) select concat('_lst: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_pol) select concat('_pol: ',c),j from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_pol) select concat('_pol: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_mpt) select concat('_mpt: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_mls) select concat('_mls: ',c),j from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_mls) select concat('_mls: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_mpy) select concat('_mpy: ',c),j from t where c='opaque_mysql_type_var_string'; insert into at(c,_gco) select concat('_gco: ',c),j from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_varbinary'; insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_binary'; insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_string'; insert into at(c,_gco) select concat('_gco: ',c),j from t where c='opaque_mysql_type_var_string'; # ---------------------------------------------------------------------- # I N S E R T F R O M J S O N F U N C T I O N # ---------------------------------------------------------------------- insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='null'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='stringany'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='object'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='array'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22001: Data too long for column '_bit' at row 14 insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22001: Data too long for column '_bit' at row 15 insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22001: Data too long for column '_bit' at row 16 insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22001: Data too long for column '_bit' at row 17 insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22001: Data too long for column '_bit' at row 18 insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22001: Data too long for column '_bit' at row 19 insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22001: Data too long for column '_bit' at row 19 insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22001: Data too long for column '_bit' at row 20 insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22001: Data too long for column '_bit' at row 21 insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22001: Data too long for column '_bit' at row 22 insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22001: Data too long for column '_bit' at row 23 insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22001: Data too long for column '_bit' at row 26 insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_bit) select concat('_bit: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26 insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_tin) select concat('_tin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26 insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_boo) select concat('_boo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26 insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_sms) select concat('_sms: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26 insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_smu) select concat('_smu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26 insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_mes) select concat('_mes: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26 insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_meu) select concat('_meu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26 insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_ins) select concat('_ins: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26 insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_inu) select concat('_inu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26 insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_bis) select concat('_bis: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 1 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 6 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 8 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 9 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 10 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 12 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 13 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 14 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 15 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 16 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 17 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 18 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 19 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 20 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 21 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 22 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 23 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column json_extract at row 26 insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_biu) select concat('_biu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 1 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='stringany'; ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 9 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 10 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 14 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 15 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 16 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 17 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 18 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 19 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 20 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 21 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 22 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 23 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column json_extract at row 26 insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_dec) select concat('_dec: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 6 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 9 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 10 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 12 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 13 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 14 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 15 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 16 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 17 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 18 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 19 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 20 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 21 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 22 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 23 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 26 insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_flo) select concat('_flo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 1 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 6 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 9 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 10 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 12 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 13 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 14 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 15 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 16 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 17 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 18 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 19 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 20 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 21 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 22 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 23 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column json_extract at row 26 insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_dou) select concat('_dou: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='bool'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='uint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='int'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='double'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='stringint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; Warnings: Note 1292 Incorrect date value: '23:24:25' for column '_dat' at row 15 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; Warnings: Note 1292 Incorrect date value: '2015-01-15 23:24:25' for column '_dat' at row 16 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26 insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='bool'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='uint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='int'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='double'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='stringint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26 insert into at(c,_dtt) select concat('_dtt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_dat) select concat('_dat: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='bool'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='uint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='int'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='double'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='stringint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26 insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_smp) select concat('_smp: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='bool'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='uint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='int'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='double'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='stringint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26 insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_tim) select concat('_tim: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='null'; ERROR HY000: Incorrect integer value: 'null' for column '_yea' at row 1 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='bool'; ERROR HY000: Incorrect integer value: 'true' for column '_yea' at row 2 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='stringany'; ERROR HY000: Incorrect integer value: '"a"' for column '_yea' at row 6 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='stringint'; ERROR HY000: Incorrect integer value: '"1"' for column '_yea' at row 7 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR HY000: Incorrect integer value: '"3.14"' for column '_yea' at row 8 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='object'; ERROR HY000: Incorrect integer value: '{"a": 3}' for column '_yea' at row 9 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='array'; ERROR HY000: Incorrect integer value: '[1, 2]' for column '_yea' at row 10 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR HY000: Incorrect integer value: '"b,c"' for column '_yea' at row 12 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR HY000: Incorrect integer value: '"b"' for column '_yea' at row 13 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR HY000: Incorrect integer value: '"2015-01-15"' for column '_yea' at row 14 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR HY000: Incorrect integer value: '"23:24:25.000000"' for column '_yea' at row 15 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR HY000: Incorrect integer value: '"2015-01-15 23:24:25.000000"' for column '_yea' at row 16 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR HY000: Incorrect integer value: '{"type": "Point", "coordinates": [1, 1]}' for column '_yea' at row 17 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR HY000: Incorrect integer value: '"base64:type16:yv4="' for column '_yea' at row 18 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR HY000: Incorrect integer value: '"base64:type13:MTk5Mg=="' for column '_yea' at row 19 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR HY000: Incorrect integer value: '"base64:type252:yv66vg=="' for column '_yea' at row 20 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR HY000: Incorrect integer value: '"base64:type251:yv66vg=="' for column '_yea' at row 21 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR HY000: Incorrect integer value: '"base64:type250:yv66vg=="' for column '_yea' at row 22 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR HY000: Incorrect integer value: '"base64:type249:yv66vg=="' for column '_yea' at row 23 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR HY000: Incorrect integer value: '"base64:type15:Zm9v"' for column '_yea' at row 26 insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_yea) select concat('_yea: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='null'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='stringany'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='object'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='array'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_jsn) select concat('_jsn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='null'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='stringany'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='object'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='array'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_chr) select concat('_chr: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='null'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='stringany'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='object'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='array'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_vch) select concat('_vch: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='null'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='stringany'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='object'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='array'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_bin) select concat('_bin: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='null'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='stringany'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='object'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='array'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_vbn) select concat('_vbn: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='null'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='stringany'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='object'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='array'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_tbl) select concat('_tbl: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='null'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='stringany'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='object'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='array'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_ttx) select concat('_ttx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='null'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='stringany'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='object'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='array'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_blb) select concat('_blb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='null'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='stringany'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='object'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='array'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_txt) select concat('_txt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='null'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='stringany'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='object'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='array'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_mbb) select concat('_mbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='null'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='stringany'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='object'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='array'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_mtx) select concat('_mtx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='null'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='stringany'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='object'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='array'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_lbb) select concat('_lbb: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='null'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='bool'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='uint'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='int'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='double'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='stringany'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='stringint'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='stringdecimal'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='object'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='array'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_ltx) select concat('_ltx: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='double'; ERROR 01000: Data truncated for column '_enu' at row 5 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 01000: Data truncated for column '_enu' at row 6 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='stringint'; ERROR 01000: Data truncated for column '_enu' at row 7 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 01000: Data truncated for column '_enu' at row 8 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='object'; ERROR 01000: Data truncated for column '_enu' at row 9 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='array'; ERROR 01000: Data truncated for column '_enu' at row 10 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; ERROR 01000: Data truncated for column '_enu' at row 11 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 01000: Data truncated for column '_enu' at row 12 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 01000: Data truncated for column '_enu' at row 13 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 01000: Data truncated for column '_enu' at row 14 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 01000: Data truncated for column '_enu' at row 15 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 01000: Data truncated for column '_enu' at row 16 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 01000: Data truncated for column '_enu' at row 17 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 01000: Data truncated for column '_enu' at row 18 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 01000: Data truncated for column '_enu' at row 19 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 01000: Data truncated for column '_enu' at row 20 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 01000: Data truncated for column '_enu' at row 21 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 01000: Data truncated for column '_enu' at row 22 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 01000: Data truncated for column '_enu' at row 23 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 01000: Data truncated for column '_enu' at row 26 insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_enu) select concat('_enu: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='null'; ERROR 01000: Data truncated for column '_set' at row 1 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='bool'; ERROR 01000: Data truncated for column '_set' at row 2 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='uint'; ERROR 01000: Data truncated for column '_set' at row 3 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='int'; ERROR 01000: Data truncated for column '_set' at row 4 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='double'; ERROR 01000: Data truncated for column '_set' at row 5 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 01000: Data truncated for column '_set' at row 6 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='stringint'; ERROR 01000: Data truncated for column '_set' at row 7 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 01000: Data truncated for column '_set' at row 8 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='object'; ERROR 01000: Data truncated for column '_set' at row 9 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='array'; ERROR 01000: Data truncated for column '_set' at row 10 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; ERROR 01000: Data truncated for column '_set' at row 11 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 01000: Data truncated for column '_set' at row 12 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 01000: Data truncated for column '_set' at row 13 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 01000: Data truncated for column '_set' at row 14 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 01000: Data truncated for column '_set' at row 15 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 01000: Data truncated for column '_set' at row 16 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 01000: Data truncated for column '_set' at row 17 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 01000: Data truncated for column '_set' at row 18 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 01000: Data truncated for column '_set' at row 19 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 01000: Data truncated for column '_set' at row 20 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 01000: Data truncated for column '_set' at row 21 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 01000: Data truncated for column '_set' at row 22 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 01000: Data truncated for column '_set' at row 23 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 01000: Data truncated for column '_set' at row 26 insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_set) select concat('_set: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_geo) select concat('_geo: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_pnt) select concat('_pnt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_lst) select concat('_lst: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_pol) select concat('_pol: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_mpt) select concat('_mpt: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_mls) select concat('_mls: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_mpy) select concat('_mpy: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_decimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_set'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_enum'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_date'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_time'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_datetime'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_geom'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_bit'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_year'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_blob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_longblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_mediumblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_tinyblob'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varbinary'; insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_binary'; insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_varchar'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_string'; insert into at(c,_gco) select concat('_gco: ',c), json_extract(j, '$') from t where c='opaque_mysql_type_var_string'; insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='bool') from t where c='bool'; # ---------------------------------------------------------------------- # I N S E R T F R O M J S O N S U B S E L E C T # ---------------------------------------------------------------------- insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='null') from t where c='null'; insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='stringany') from t where c='stringany'; insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='object') from t where c='object'; insert into at(c,_bit) select concat('_bit: ',c), (select j from t where c='array') from t where c='array'; insert 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'; insert 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'; insert 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'; insert 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'; ERROR 22001: Data too long for column '_bit' at row 29 insert 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'; ERROR 22001: Data too long for column '_bit' at row 29 insert 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'; ERROR 22001: Data too long for column '_bit' at row 29 insert 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'; ERROR 22001: Data too long for column '_bit' at row 29 insert 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'; ERROR 22001: Data too long for column '_bit' at row 29 insert 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'; ERROR 22001: Data too long for column '_bit' at row 29 insert 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'; ERROR 22001: Data too long for column '_bit' at row 29 insert 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'; ERROR 22001: Data too long for column '_bit' at row 29 insert 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'; ERROR 22001: Data too long for column '_bit' at row 29 insert 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'; ERROR 22001: Data too long for column '_bit' at row 29 insert 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'; insert 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'; insert 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'; ERROR 22001: Data too long for column '_bit' at row 29 insert 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'; insert 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'; insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_tin) select concat('_tin: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_boo) select concat('_boo: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_sms) select concat('_sms: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_smu) select concat('_smu: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_mes) select concat('_mes: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_meu) select concat('_meu: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_ins) select concat('_ins: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_inu) select concat('_inu: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_bis) select concat('_bis: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert into at(c,_biu) select concat('_biu: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to INTEGER from column j at row 29 insert 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'; insert 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'; insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29 insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1 insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29 insert into at(c,_dec) select concat('_dec: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29 insert 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'; insert 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'; ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1 insert 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'; ERROR HY000: Incorrect DECIMAL value: '0' for column '' at row -1 insert 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'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to DECIMAL from column j at row 29 insert 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'; insert 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'; insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert into at(c,_flo) select concat('_flo: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; insert 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'; insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert into at(c,_dou) select concat('_dou: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to DOUBLE from column j at row 29 insert 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'; insert 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'; insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='bool') from t where c='bool'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='uint') from t where c='uint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='int') from t where c='int'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='double') from t where c='double'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dat) select concat('_dat: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; insert 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'; Warnings: Note 1292 Incorrect date value: '23:24:25' for column '_dat' at row 29 insert 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'; Warnings: Note 1292 Incorrect date value: '2015-01-15 23:24:25' for column '_dat' at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; insert 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'; insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='bool') from t where c='bool'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='uint') from t where c='uint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='int') from t where c='int'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='double') from t where c='double'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_dtt) select concat('_dtt: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; insert 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'; insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='bool') from t where c='bool'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='uint') from t where c='uint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='int') from t where c='int'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='double') from t where c='double'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_smp) select concat('_smp: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; insert 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'; insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='null') from t where c='null'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='bool') from t where c='bool'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='uint') from t where c='uint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='int') from t where c='int'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='double') from t where c='double'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='object') from t where c='object'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert into at(c,_tim) select concat('_tim: ',c), (select j from t where c='array') from t where c='array'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; insert 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'; insert 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'; ERROR 22018: Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 insert 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'; insert 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'; insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='null') from t where c='null'; ERROR HY000: Incorrect integer value: 'null' for column '_yea' at row 29 insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='bool') from t where c='bool'; ERROR HY000: Incorrect integer value: 'true' for column '_yea' at row 29 insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR HY000: Incorrect integer value: '"a"' for column '_yea' at row 29 insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR HY000: Incorrect integer value: '"1"' for column '_yea' at row 29 insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR HY000: Incorrect integer value: '"3.14"' for column '_yea' at row 29 insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='object') from t where c='object'; ERROR HY000: Incorrect integer value: '{"a": 3}' for column '_yea' at row 29 insert into at(c,_yea) select concat('_yea: ',c), (select j from t where c='array') from t where c='array'; ERROR HY000: Incorrect integer value: '[1, 2]' for column '_yea' at row 29 insert 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'; insert 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'; ERROR HY000: Incorrect integer value: '"b,c"' for column '_yea' at row 29 insert 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'; ERROR HY000: Incorrect integer value: '"b"' for column '_yea' at row 29 insert 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'; ERROR HY000: Incorrect integer value: '"2015-01-15"' for column '_yea' at row 29 insert 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'; ERROR HY000: Incorrect integer value: '"23:24:25.000000"' for column '_yea' at row 29 insert 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'; ERROR HY000: Incorrect integer value: '"2015-01-15 23:24:25.000000"' for column '_yea' at row 29 insert 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'; ERROR HY000: Incorrect integer value: '{"type": "Point", "coordinates": [1, 1]}' for column '_yea' at row 29 insert 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'; ERROR HY000: Incorrect integer value: '"base64:type16:yv4="' for column '_yea' at row 29 insert 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'; ERROR HY000: Incorrect integer value: '"base64:type13:MTk5Mg=="' for column '_yea' at row 29 insert 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'; ERROR HY000: Incorrect integer value: '"base64:type252:yv66vg=="' for column '_yea' at row 29 insert 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'; ERROR HY000: Incorrect integer value: '"base64:type251:yv66vg=="' for column '_yea' at row 29 insert 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'; ERROR HY000: Incorrect integer value: '"base64:type250:yv66vg=="' for column '_yea' at row 29 insert 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'; ERROR HY000: Incorrect integer value: '"base64:type249:yv66vg=="' for column '_yea' at row 29 insert 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'; insert 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'; insert 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'; ERROR HY000: Incorrect integer value: '"base64:type15:Zm9v"' for column '_yea' at row 29 insert 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'; insert 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'; insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='null') from t where c='null'; insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='stringany') from t where c='stringany'; insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='object') from t where c='object'; insert into at(c,_jsn) select concat('_jsn: ',c), (select j from t where c='array') from t where c='array'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='null') from t where c='null'; insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='stringany') from t where c='stringany'; insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='object') from t where c='object'; insert into at(c,_chr) select concat('_chr: ',c), (select j from t where c='array') from t where c='array'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='null') from t where c='null'; insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='stringany') from t where c='stringany'; insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='object') from t where c='object'; insert into at(c,_vch) select concat('_vch: ',c), (select j from t where c='array') from t where c='array'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='null') from t where c='null'; insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='stringany') from t where c='stringany'; insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='object') from t where c='object'; insert into at(c,_bin) select concat('_bin: ',c), (select j from t where c='array') from t where c='array'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='null') from t where c='null'; insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='stringany') from t where c='stringany'; insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='object') from t where c='object'; insert into at(c,_vbn) select concat('_vbn: ',c), (select j from t where c='array') from t where c='array'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='null') from t where c='null'; insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='stringany') from t where c='stringany'; insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='object') from t where c='object'; insert into at(c,_tbl) select concat('_tbl: ',c), (select j from t where c='array') from t where c='array'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='null') from t where c='null'; insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='stringany') from t where c='stringany'; insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='object') from t where c='object'; insert into at(c,_ttx) select concat('_ttx: ',c), (select j from t where c='array') from t where c='array'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='null') from t where c='null'; insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='stringany') from t where c='stringany'; insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='object') from t where c='object'; insert into at(c,_blb) select concat('_blb: ',c), (select j from t where c='array') from t where c='array'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='null') from t where c='null'; insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='stringany') from t where c='stringany'; insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='object') from t where c='object'; insert into at(c,_txt) select concat('_txt: ',c), (select j from t where c='array') from t where c='array'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='null') from t where c='null'; insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='stringany') from t where c='stringany'; insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='object') from t where c='object'; insert into at(c,_mbb) select concat('_mbb: ',c), (select j from t where c='array') from t where c='array'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='null') from t where c='null'; insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='stringany') from t where c='stringany'; insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='object') from t where c='object'; insert into at(c,_mtx) select concat('_mtx: ',c), (select j from t where c='array') from t where c='array'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='null') from t where c='null'; insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='stringany') from t where c='stringany'; insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='object') from t where c='object'; insert into at(c,_lbb) select concat('_lbb: ',c), (select j from t where c='array') from t where c='array'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='null') from t where c='null'; insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='bool') from t where c='bool'; insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='uint') from t where c='uint'; insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='int') from t where c='int'; insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='double') from t where c='double'; insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='stringany') from t where c='stringany'; insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='stringint') from t where c='stringint'; insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='object') from t where c='object'; insert into at(c,_ltx) select concat('_ltx: ',c), (select j from t where c='array') from t where c='array'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert 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'; insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='double') from t where c='double'; ERROR 01000: Data truncated for column '_enu' at row 29 insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 01000: Data truncated for column '_enu' at row 29 insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR 01000: Data truncated for column '_enu' at row 29 insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 01000: Data truncated for column '_enu' at row 29 insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='object') from t where c='object'; ERROR 01000: Data truncated for column '_enu' at row 29 insert into at(c,_enu) select concat('_enu: ',c), (select j from t where c='array') from t where c='array'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; insert 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'; insert 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'; ERROR 01000: Data truncated for column '_enu' at row 29 insert 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'; insert 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'; insert into at(c,_set) select concat('_set: ',c), (select j from t where c='null') from t where c='null'; ERROR 01000: Data truncated for column '_set' at row 29 insert into at(c,_set) select concat('_set: ',c), (select j from t where c='bool') from t where c='bool'; ERROR 01000: Data truncated for column '_set' at row 29 insert into at(c,_set) select concat('_set: ',c), (select j from t where c='uint') from t where c='uint'; ERROR 01000: Data truncated for column '_set' at row 29 insert into at(c,_set) select concat('_set: ',c), (select j from t where c='int') from t where c='int'; ERROR 01000: Data truncated for column '_set' at row 29 insert into at(c,_set) select concat('_set: ',c), (select j from t where c='double') from t where c='double'; ERROR 01000: Data truncated for column '_set' at row 29 insert into at(c,_set) select concat('_set: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 01000: Data truncated for column '_set' at row 29 insert into at(c,_set) select concat('_set: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR 01000: Data truncated for column '_set' at row 29 insert into at(c,_set) select concat('_set: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 01000: Data truncated for column '_set' at row 29 insert into at(c,_set) select concat('_set: ',c), (select j from t where c='object') from t where c='object'; ERROR 01000: Data truncated for column '_set' at row 29 insert into at(c,_set) select concat('_set: ',c), (select j from t where c='array') from t where c='array'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; insert 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'; insert 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'; ERROR 01000: Data truncated for column '_set' at row 29 insert 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'; insert 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'; insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='null') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='bool') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='uint') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='int') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='double') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='object') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_geo) select concat('_geo: ',c), (select j from t where c='array') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='null') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='bool') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='uint') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='int') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='double') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='object') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pnt) select concat('_pnt: ',c), (select j from t where c='array') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='null') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='bool') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='uint') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='int') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='double') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='object') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_lst) select concat('_lst: ',c), (select j from t where c='array') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='null') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='bool') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='uint') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='int') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='double') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='object') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_pol) select concat('_pol: ',c), (select j from t where c='array') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='null') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='bool') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='uint') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='int') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='double') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='object') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpt) select concat('_mpt: ',c), (select j from t where c='array') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='null') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='bool') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='uint') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='int') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='double') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='object') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mls) select concat('_mls: ',c), (select j from t where c='array') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='null') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='bool') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='uint') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='int') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='double') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='object') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_mpy) select concat('_mpy: ',c), (select j from t where c='array') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='null') from t where c='null'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='bool') from t where c='bool'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='uint') from t where c='uint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='int') from t where c='int'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='double') from t where c='double'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='stringany') from t where c='stringany'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='stringint') from t where c='stringint'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='stringdecimal') from t where c='stringdecimal'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='object') from t where c='object'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into at(c,_gco) select concat('_gco: ',c), (select j from t where c='array') from t where c='array'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; insert 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'; ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert 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'; insert 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'; # ---------------------------------------------------------------------- # Validate the data actually inserted # ---------------------------------------------------------------------- select * from at; c _bit _tin _boo _sms _smu _mes _meu _ins _inu _bis _biu _dec _flo _dou _dat _dtt _smp _tim _yea _jsn _chr _vch _bin _vbn _tbl _ttx _blb _txt _mbb _mtx _lbb _ltx _enu _set _geo _pnt _lst _pol _mpt _mls _mpy _gco _bit: null N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: bool N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: uint N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: int N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: double N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: stringany N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: stringint N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: stringdecimal N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: object {"a": 3} N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: array N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_decimal N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_set N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_enum N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: bool N 1 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: uint N 12 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: int N 12 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: double N 3 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: stringint N 1 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_decimal N 3 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: bool N N 1 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: uint N N 12 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: int N N 12 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: double N N 3 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: stringint N N 1 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_decimal N N 3 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: bool N N N 1 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: uint N N N 12 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: int N N N 12 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: double N N N 3 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: stringint N N N 1 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_decimal N N N 3 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: bool N N N N 1 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: uint N N N N 12 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: int N N N N 12 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: double N N N N 3 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: stringint N N N N 1 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_decimal N N N N 3 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: bool N N N N N 1 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: uint N N N N N 12 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: int N N N N N 12 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: double N N N N N 3 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: stringint N N N N N 1 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_decimal N N N N N 3 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: bool N N N N N N 1 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: uint N N N N N N 12 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: int N N N N N N 12 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: double N N N N N N 3 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: stringint N N N N N N 1 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_decimal N N N N N N 3 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: bool N N N N N N N 1 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: uint N N N N N N N 12 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: int N N N N N N N 12 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: double N N N N N N N 3 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: stringint N N N N N N N 1 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_decimal N N N N N N N 3 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: bool N N N N N N N N 1 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: uint N N N N N N N N 12 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: int N N N N N N N N 12 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: double N N N N N N N N 3 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: stringint N N N N N N N N 1 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_decimal N N N N N N N N 3 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: bool N N N N N N N N N 1 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: uint N N N N N N N N N 12 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: int N N N N N N N N N 12 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: double N N N N N N N N N 3 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: stringint N N N N N N N N N 1 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_decimal N N N N N N N N N 3 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: bool N N N N N N N N N N 1 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: uint N N N N N N N N N N 12 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: int N N N N N N N N N N 12 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: double N N N N N N N N N N 3 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: stringint N N N N N N N N N N 1 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_decimal N N N N N N N N N N 3 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: bool N N N N N N N N N N N 1.00 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: uint N N N N N N N N N N N 12.00 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: int N N N N N N N N N N N 12.00 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: double N N N N N N N N N N N 3.14 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: stringint N N N N N N N N N N N 1.00 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: stringdecimal N N N N N N N N N N N 3.14 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_decimal N N N N N N N N N N N 3.14 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: bool N N N N N N N N N N N N 1 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: uint N N N N N N N N N N N N 12 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: int N N N N N N N N N N N N 12 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: double N N N N N N N N N N N N 3.14 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: stringint N N N N N N N N N N N N 1 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: stringdecimal N N N N N N N N N N N N 3.14 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_decimal N N N N N N N N N N N N 3.14 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: bool N N N N N N N N N N N N N 1 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: uint N N N N N N N N N N N N N 12 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: int N N N N N N N N N N N N N 12 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: double N N N N N N N N N N N N N 3.14 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: stringint N N N N N N N N N N N N N 1 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: stringdecimal N N N N N N N N N N N N N 3.14 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_decimal N N N N N N N N N N N N N 3.14 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_date N N N N N N N N N N N N N N --EXPECTED_DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_datetime N N N N N N N N N N N N N N --EXPECTED_DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_varbinary N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_binary N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_string N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_var_string N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- N --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- N --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- N --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_var_string N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --EXPECTED_TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --EXPECTED_TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N N _yea: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- 2012 N N N N N N N N N N N N N N N N N N N N N N N _yea: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- 2012 N N N N N N N N N N N N N N N N N N N N N N N _yea: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- 2003 N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- 2003 N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _jsn: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N null N N N N N N N N N N N N N N N N N N N N N N _jsn: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N true N N N N N N N N N N N N N N N N N N N N N N _jsn: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N 12 N N N N N N N N N N N N N N N N N N N N N N _jsn: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N 12 N N N N N N N N N N N N N N N N N N N N N N _jsn: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N 3.14 N N N N N N N N N N N N N N N N N N N N N N _jsn: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "a" N N N N N N N N N N N N N N N N N N N N N N _jsn: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "1" N N N N N N N N N N N N N N N N N N N N N N _jsn: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "3.14" N N N N N N N N N N N N N N N N N N N N N N _jsn: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N {"a": 3} N N N N N N N N N N N N N N N N N N N N N N _jsn: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N [1, 2] N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N 3.14 N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "b,c" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "b" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _chr: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N null N N N N N N N N N N N N N N N N N N N N N _chr: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N true N N N N N N N N N N N N N N N N N N N N N _chr: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N 12 N N N N N N N N N N N N N N N N N N N N N _chr: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N 12 N N N N N N N N N N N N N N N N N N N N N _chr: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N 3.14 N N N N N N N N N N N N N N N N N N N N N _chr: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "a" N N N N N N N N N N N N N N N N N N N N N _chr: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "1" N N N N N N N N N N N N N N N N N N N N N _chr: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "3.14" N N N N N N N N N N N N N N N N N N N N N _chr: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N {"a": 3} N N N N N N N N N N N N N N N N N N N N N _chr: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N [1, 2] N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N 3.14 N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "b,c" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "b" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vch: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N null N N N N N N N N N N N N N N N N N N N N _vch: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N true N N N N N N N N N N N N N N N N N N N N _vch: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N 12 N N N N N N N N N N N N N N N N N N N N _vch: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N 12 N N N N N N N N N N N N N N N N N N N N _vch: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N 3.14 N N N N N N N N N N N N N N N N N N N N _vch: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "a" N N N N N N N N N N N N N N N N N N N N _vch: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "1" N N N N N N N N N N N N N N N N N N N N _vch: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "3.14" N N N N N N N N N N N N N N N N N N N N _vch: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N {"a": 3} N N N N N N N N N N N N N N N N N N N N _vch: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N [1, 2] N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N 3.14 N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "b,c" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "b" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bin: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N null N N N N N N N N N N N N N N N N N N N _bin: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N true N N N N N N N N N N N N N N N N N N N _bin: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N 12 N N N N N N N N N N N N N N N N N N N _bin: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N 12 N N N N N N N N N N N N N N N N N N N _bin: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N 3.14 N N N N N N N N N N N N N N N N N N N _bin: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "a" N N N N N N N N N N N N N N N N N N N _bin: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "1" N N N N N N N N N N N N N N N N N N N _bin: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "3.14" N N N N N N N N N N N N N N N N N N N _bin: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N {"a": 3} N N N N N N N N N N N N N N N N N N N _bin: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N [1, 2] N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N 3.14 N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "b,c" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "b" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vbn: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N null N N N N N N N N N N N N N N N N N N _vbn: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N true N N N N N N N N N N N N N N N N N N _vbn: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N 12 N N N N N N N N N N N N N N N N N N _vbn: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N 12 N N N N N N N N N N N N N N N N N N _vbn: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N 3.14 N N N N N N N N N N N N N N N N N N _vbn: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "a" N N N N N N N N N N N N N N N N N N _vbn: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "1" N N N N N N N N N N N N N N N N N N _vbn: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "3.14" N N N N N N N N N N N N N N N N N N _vbn: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N {"a": 3} N N N N N N N N N N N N N N N N N N _vbn: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N [1, 2] N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N 3.14 N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "b,c" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "b" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tbl: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N null N N N N N N N N N N N N N N N N N _tbl: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N true N N N N N N N N N N N N N N N N N _tbl: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N 12 N N N N N N N N N N N N N N N N N _tbl: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N 12 N N N N N N N N N N N N N N N N N _tbl: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N 3.14 N N N N N N N N N N N N N N N N N _tbl: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "a" N N N N N N N N N N N N N N N N N _tbl: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "1" N N N N N N N N N N N N N N N N N _tbl: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "3.14" N N N N N N N N N N N N N N N N N _tbl: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N {"a": 3} N N N N N N N N N N N N N N N N N _tbl: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N [1, 2] N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N 3.14 N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "b,c" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "b" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ttx: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N null N N N N N N N N N N N N N N N N _ttx: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N true N N N N N N N N N N N N N N N N _ttx: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N 12 N N N N N N N N N N N N N N N N _ttx: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N 12 N N N N N N N N N N N N N N N N _ttx: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N 3.14 N N N N N N N N N N N N N N N N _ttx: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "a" N N N N N N N N N N N N N N N N _ttx: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "1" N N N N N N N N N N N N N N N N _ttx: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "3.14" N N N N N N N N N N N N N N N N _ttx: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N {"a": 3} N N N N N N N N N N N N N N N N _ttx: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N [1, 2] N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N 3.14 N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "b,c" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "b" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _blb: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N null N N N N N N N N N N N N N N N _blb: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N true N N N N N N N N N N N N N N N _blb: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N 12 N N N N N N N N N N N N N N N _blb: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N 12 N N N N N N N N N N N N N N N _blb: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N 3.14 N N N N N N N N N N N N N N N _blb: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "a" N N N N N N N N N N N N N N N _blb: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "1" N N N N N N N N N N N N N N N _blb: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "3.14" N N N N N N N N N N N N N N N _blb: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N {"a": 3} N N N N N N N N N N N N N N N _blb: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N [1, 2] N N N N N N N N N N N N N N N _blb: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N 3.14 N N N N N N N N N N N N N N N _blb: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "b,c" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "b" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N _blb: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _blb: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _blb: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _blb: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _txt: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N null N N N N N N N N N N N N N N _txt: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N true N N N N N N N N N N N N N N _txt: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N 12 N N N N N N N N N N N N N N _txt: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N 12 N N N N N N N N N N N N N N _txt: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N 3.14 N N N N N N N N N N N N N N _txt: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "a" N N N N N N N N N N N N N N _txt: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "1" N N N N N N N N N N N N N N _txt: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "3.14" N N N N N N N N N N N N N N _txt: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N {"a": 3} N N N N N N N N N N N N N N _txt: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N [1, 2] N N N N N N N N N N N N N N _txt: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N 3.14 N N N N N N N N N N N N N N _txt: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "b,c" N N N N N N N N N N N N N N _txt: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "b" N N N N N N N N N N N N N N _txt: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N _txt: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N _txt: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N _txt: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N _txt: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N _txt: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _txt: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _txt: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N _txt: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _txt: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mbb: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N null N N N N N N N N N N N N N _mbb: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N true N N N N N N N N N N N N N _mbb: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N 12 N N N N N N N N N N N N N _mbb: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N 12 N N N N N N N N N N N N N _mbb: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N 3.14 N N N N N N N N N N N N N _mbb: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "a" N N N N N N N N N N N N N _mbb: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "1" N N N N N N N N N N N N N _mbb: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "3.14" N N N N N N N N N N N N N _mbb: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N {"a": 3} N N N N N N N N N N N N N _mbb: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N [1, 2] N N N N N N N N N N N N N _mbb: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N 3.14 N N N N N N N N N N N N N _mbb: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "b,c" N N N N N N N N N N N N N _mbb: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "b" N N N N N N N N N N N N N _mbb: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N _mbb: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N _mbb: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N _mbb: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N _mbb: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N _mbb: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mbb: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mbb: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N _mbb: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mbb: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mtx: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N null N N N N N N N N N N N N _mtx: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N true N N N N N N N N N N N N _mtx: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N 12 N N N N N N N N N N N N _mtx: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N 12 N N N N N N N N N N N N _mtx: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N 3.14 N N N N N N N N N N N N _mtx: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "a" N N N N N N N N N N N N _mtx: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "1" N N N N N N N N N N N N _mtx: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "3.14" N N N N N N N N N N N N _mtx: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N {"a": 3} N N N N N N N N N N N N _mtx: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N [1, 2] N N N N N N N N N N N N _mtx: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N 3.14 N N N N N N N N N N N N _mtx: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "b,c" N N N N N N N N N N N N _mtx: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "b" N N N N N N N N N N N N _mtx: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N _mtx: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N _mtx: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N _mtx: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N _mtx: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N _mtx: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mtx: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mtx: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N _mtx: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mtx: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lbb: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N null N N N N N N N N N N N _lbb: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N true N N N N N N N N N N N _lbb: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N 12 N N N N N N N N N N N _lbb: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N 12 N N N N N N N N N N N _lbb: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N 3.14 N N N N N N N N N N N _lbb: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "a" N N N N N N N N N N N _lbb: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "1" N N N N N N N N N N N _lbb: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "3.14" N N N N N N N N N N N _lbb: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N {"a": 3} N N N N N N N N N N N _lbb: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N [1, 2] N N N N N N N N N N N _lbb: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N 3.14 N N N N N N N N N N N _lbb: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "b,c" N N N N N N N N N N N _lbb: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "b" N N N N N N N N N N N _lbb: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N _lbb: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N _lbb: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N _lbb: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N _lbb: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N _lbb: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N _lbb: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N _lbb: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N _lbb: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N _lbb: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N _lbb: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lbb: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lbb: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N _lbb: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lbb: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ltx: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N null N N N N N N N N N N _ltx: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N true N N N N N N N N N N _ltx: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N 12 N N N N N N N N N N _ltx: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N 12 N N N N N N N N N N _ltx: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N 3.14 N N N N N N N N N N _ltx: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "a" N N N N N N N N N N _ltx: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "1" N N N N N N N N N N _ltx: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "3.14" N N N N N N N N N N _ltx: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N {"a": 3} N N N N N N N N N N _ltx: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N [1, 2] N N N N N N N N N N _ltx: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N 3.14 N N N N N N N N N N _ltx: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "b,c" N N N N N N N N N N _ltx: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "b" N N N N N N N N N N _ltx: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N _ltx: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N _ltx: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N _ltx: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N _ltx: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N _ltx: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N _ltx: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N _ltx: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N _ltx: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N _ltx: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N _ltx: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ltx: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ltx: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N _ltx: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ltx: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _enu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _enu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _enu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _enu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _set: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _set: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _set: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _set: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _geo: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _geo: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _geo: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _geo: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pnt: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pnt: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pnt: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pnt: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lst: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lst: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lst: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lst: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pol: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pol: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pol: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pol: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpt: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpt: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpt: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpt: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mls: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mls: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mls: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mls: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpy: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpy: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpy: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpy: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _gco: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _gco: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _gco: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _gco: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: null N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: bool N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: uint N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: int N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: double N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: stringany N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: stringint N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: stringdecimal N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: object {"a": 3} N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: array N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_decimal N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_set N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_enum N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: bool N 1 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: uint N 12 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: int N 12 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: double N 3 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: stringint N 1 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_decimal N 3 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: bool N N 1 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: uint N N 12 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: int N N 12 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: double N N 3 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: stringint N N 1 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_decimal N N 3 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: bool N N N 1 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: uint N N N 12 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: int N N N 12 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: double N N N 3 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: stringint N N N 1 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_decimal N N N 3 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: bool N N N N 1 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: uint N N N N 12 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: int N N N N 12 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: double N N N N 3 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: stringint N N N N 1 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_decimal N N N N 3 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: bool N N N N N 1 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: uint N N N N N 12 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: int N N N N N 12 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: double N N N N N 3 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: stringint N N N N N 1 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_decimal N N N N N 3 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: bool N N N N N N 1 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: uint N N N N N N 12 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: int N N N N N N 12 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: double N N N N N N 3 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: stringint N N N N N N 1 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_decimal N N N N N N 3 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: bool N N N N N N N 1 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: uint N N N N N N N 12 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: int N N N N N N N 12 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: double N N N N N N N 3 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: stringint N N N N N N N 1 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_decimal N N N N N N N 3 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: bool N N N N N N N N 1 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: uint N N N N N N N N 12 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: int N N N N N N N N 12 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: double N N N N N N N N 3 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: stringint N N N N N N N N 1 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_decimal N N N N N N N N 3 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: bool N N N N N N N N N 1 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: uint N N N N N N N N N 12 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: int N N N N N N N N N 12 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: double N N N N N N N N N 3 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: stringint N N N N N N N N N 1 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_decimal N N N N N N N N N 3 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: bool N N N N N N N N N N 1 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: uint N N N N N N N N N N 12 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: int N N N N N N N N N N 12 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: double N N N N N N N N N N 3 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: stringint N N N N N N N N N N 1 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_decimal N N N N N N N N N N 3 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: bool N N N N N N N N N N N 1.00 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: uint N N N N N N N N N N N 12.00 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: int N N N N N N N N N N N 12.00 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: double N N N N N N N N N N N 3.14 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: stringint N N N N N N N N N N N 1.00 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: stringdecimal N N N N N N N N N N N 3.14 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_decimal N N N N N N N N N N N 3.14 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: bool N N N N N N N N N N N N 1 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: uint N N N N N N N N N N N N 12 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: int N N N N N N N N N N N N 12 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: double N N N N N N N N N N N N 3.14 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: stringint N N N N N N N N N N N N 1 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: stringdecimal N N N N N N N N N N N N 3.14 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_decimal N N N N N N N N N N N N 3.14 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: bool N N N N N N N N N N N N N 1 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: uint N N N N N N N N N N N N N 12 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: int N N N N N N N N N N N N N 12 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: double N N N N N N N N N N N N N 3.14 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: stringint N N N N N N N N N N N N N 1 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: stringdecimal N N N N N N N N N N N N N 3.14 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_decimal N N N N N N N N N N N N N 3.14 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_date N N N N N N N N N N N N N N --EXPECTED_DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_datetime N N N N N N N N N N N N N N --EXPECTED_DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_varbinary N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_binary N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_string N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_var_string N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- N --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- N --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- N --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_var_string N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --EXPECTED_TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --EXPECTED_TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N N _yea: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- 2012 N N N N N N N N N N N N N N N N N N N N N N N _yea: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- 2012 N N N N N N N N N N N N N N N N N N N N N N N _yea: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- 2003 N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- 2003 N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _jsn: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N null N N N N N N N N N N N N N N N N N N N N N N _jsn: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N true N N N N N N N N N N N N N N N N N N N N N N _jsn: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N 12 N N N N N N N N N N N N N N N N N N N N N N _jsn: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N 12 N N N N N N N N N N N N N N N N N N N N N N _jsn: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N 3.14 N N N N N N N N N N N N N N N N N N N N N N _jsn: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "a" N N N N N N N N N N N N N N N N N N N N N N _jsn: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "1" N N N N N N N N N N N N N N N N N N N N N N _jsn: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "3.14" N N N N N N N N N N N N N N N N N N N N N N _jsn: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N {"a": 3} N N N N N N N N N N N N N N N N N N N N N N _jsn: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N [1, 2] N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N 3.14 N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "b,c" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "b" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _chr: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N null N N N N N N N N N N N N N N N N N N N N N _chr: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N true N N N N N N N N N N N N N N N N N N N N N _chr: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N 12 N N N N N N N N N N N N N N N N N N N N N _chr: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N 12 N N N N N N N N N N N N N N N N N N N N N _chr: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N 3.14 N N N N N N N N N N N N N N N N N N N N N _chr: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "a" N N N N N N N N N N N N N N N N N N N N N _chr: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "1" N N N N N N N N N N N N N N N N N N N N N _chr: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "3.14" N N N N N N N N N N N N N N N N N N N N N _chr: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N {"a": 3} N N N N N N N N N N N N N N N N N N N N N _chr: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N [1, 2] N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N 3.14 N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "b,c" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "b" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vch: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N null N N N N N N N N N N N N N N N N N N N N _vch: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N true N N N N N N N N N N N N N N N N N N N N _vch: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N 12 N N N N N N N N N N N N N N N N N N N N _vch: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N 12 N N N N N N N N N N N N N N N N N N N N _vch: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N 3.14 N N N N N N N N N N N N N N N N N N N N _vch: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "a" N N N N N N N N N N N N N N N N N N N N _vch: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "1" N N N N N N N N N N N N N N N N N N N N _vch: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "3.14" N N N N N N N N N N N N N N N N N N N N _vch: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N {"a": 3} N N N N N N N N N N N N N N N N N N N N _vch: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N [1, 2] N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N 3.14 N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "b,c" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "b" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bin: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N null N N N N N N N N N N N N N N N N N N N _bin: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N true N N N N N N N N N N N N N N N N N N N _bin: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N 12 N N N N N N N N N N N N N N N N N N N _bin: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N 12 N N N N N N N N N N N N N N N N N N N _bin: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N 3.14 N N N N N N N N N N N N N N N N N N N _bin: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "a" N N N N N N N N N N N N N N N N N N N _bin: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "1" N N N N N N N N N N N N N N N N N N N _bin: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "3.14" N N N N N N N N N N N N N N N N N N N _bin: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N {"a": 3} N N N N N N N N N N N N N N N N N N N _bin: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N [1, 2] N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N 3.14 N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "b,c" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "b" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vbn: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N null N N N N N N N N N N N N N N N N N N _vbn: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N true N N N N N N N N N N N N N N N N N N _vbn: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N 12 N N N N N N N N N N N N N N N N N N _vbn: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N 12 N N N N N N N N N N N N N N N N N N _vbn: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N 3.14 N N N N N N N N N N N N N N N N N N _vbn: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "a" N N N N N N N N N N N N N N N N N N _vbn: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "1" N N N N N N N N N N N N N N N N N N _vbn: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "3.14" N N N N N N N N N N N N N N N N N N _vbn: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N {"a": 3} N N N N N N N N N N N N N N N N N N _vbn: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N [1, 2] N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N 3.14 N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "b,c" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "b" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tbl: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N null N N N N N N N N N N N N N N N N N _tbl: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N true N N N N N N N N N N N N N N N N N _tbl: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N 12 N N N N N N N N N N N N N N N N N _tbl: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N 12 N N N N N N N N N N N N N N N N N _tbl: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N 3.14 N N N N N N N N N N N N N N N N N _tbl: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "a" N N N N N N N N N N N N N N N N N _tbl: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "1" N N N N N N N N N N N N N N N N N _tbl: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "3.14" N N N N N N N N N N N N N N N N N _tbl: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N {"a": 3} N N N N N N N N N N N N N N N N N _tbl: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N [1, 2] N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N 3.14 N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "b,c" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "b" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ttx: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N null N N N N N N N N N N N N N N N N _ttx: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N true N N N N N N N N N N N N N N N N _ttx: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N 12 N N N N N N N N N N N N N N N N _ttx: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N 12 N N N N N N N N N N N N N N N N _ttx: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N 3.14 N N N N N N N N N N N N N N N N _ttx: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "a" N N N N N N N N N N N N N N N N _ttx: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "1" N N N N N N N N N N N N N N N N _ttx: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "3.14" N N N N N N N N N N N N N N N N _ttx: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N {"a": 3} N N N N N N N N N N N N N N N N _ttx: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N [1, 2] N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N 3.14 N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "b,c" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "b" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _blb: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N null N N N N N N N N N N N N N N N _blb: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N true N N N N N N N N N N N N N N N _blb: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N 12 N N N N N N N N N N N N N N N _blb: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N 12 N N N N N N N N N N N N N N N _blb: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N 3.14 N N N N N N N N N N N N N N N _blb: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "a" N N N N N N N N N N N N N N N _blb: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "1" N N N N N N N N N N N N N N N _blb: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "3.14" N N N N N N N N N N N N N N N _blb: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N {"a": 3} N N N N N N N N N N N N N N N _blb: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N [1, 2] N N N N N N N N N N N N N N N _blb: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N 3.14 N N N N N N N N N N N N N N N _blb: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "b,c" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "b" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N _blb: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _blb: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _blb: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _blb: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _txt: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N null N N N N N N N N N N N N N N _txt: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N true N N N N N N N N N N N N N N _txt: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N 12 N N N N N N N N N N N N N N _txt: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N 12 N N N N N N N N N N N N N N _txt: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N 3.14 N N N N N N N N N N N N N N _txt: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "a" N N N N N N N N N N N N N N _txt: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "1" N N N N N N N N N N N N N N _txt: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "3.14" N N N N N N N N N N N N N N _txt: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N {"a": 3} N N N N N N N N N N N N N N _txt: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N [1, 2] N N N N N N N N N N N N N N _txt: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N 3.14 N N N N N N N N N N N N N N _txt: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "b,c" N N N N N N N N N N N N N N _txt: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "b" N N N N N N N N N N N N N N _txt: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N _txt: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N _txt: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N _txt: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N _txt: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N _txt: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _txt: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _txt: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N _txt: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _txt: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mbb: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N null N N N N N N N N N N N N N _mbb: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N true N N N N N N N N N N N N N _mbb: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N 12 N N N N N N N N N N N N N _mbb: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N 12 N N N N N N N N N N N N N _mbb: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N 3.14 N N N N N N N N N N N N N _mbb: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "a" N N N N N N N N N N N N N _mbb: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "1" N N N N N N N N N N N N N _mbb: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "3.14" N N N N N N N N N N N N N _mbb: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N {"a": 3} N N N N N N N N N N N N N _mbb: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N [1, 2] N N N N N N N N N N N N N _mbb: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N 3.14 N N N N N N N N N N N N N _mbb: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "b,c" N N N N N N N N N N N N N _mbb: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "b" N N N N N N N N N N N N N _mbb: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N _mbb: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N _mbb: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N _mbb: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N _mbb: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N _mbb: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mbb: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mbb: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N _mbb: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mbb: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mtx: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N null N N N N N N N N N N N N _mtx: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N true N N N N N N N N N N N N _mtx: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N 12 N N N N N N N N N N N N _mtx: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N 12 N N N N N N N N N N N N _mtx: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N 3.14 N N N N N N N N N N N N _mtx: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "a" N N N N N N N N N N N N _mtx: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "1" N N N N N N N N N N N N _mtx: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "3.14" N N N N N N N N N N N N _mtx: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N {"a": 3} N N N N N N N N N N N N _mtx: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N [1, 2] N N N N N N N N N N N N _mtx: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N 3.14 N N N N N N N N N N N N _mtx: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "b,c" N N N N N N N N N N N N _mtx: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "b" N N N N N N N N N N N N _mtx: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N _mtx: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N _mtx: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N _mtx: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N _mtx: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N _mtx: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mtx: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mtx: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N _mtx: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mtx: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lbb: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N null N N N N N N N N N N N _lbb: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N true N N N N N N N N N N N _lbb: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N 12 N N N N N N N N N N N _lbb: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N 12 N N N N N N N N N N N _lbb: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N 3.14 N N N N N N N N N N N _lbb: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "a" N N N N N N N N N N N _lbb: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "1" N N N N N N N N N N N _lbb: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "3.14" N N N N N N N N N N N _lbb: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N {"a": 3} N N N N N N N N N N N _lbb: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N [1, 2] N N N N N N N N N N N _lbb: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N 3.14 N N N N N N N N N N N _lbb: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "b,c" N N N N N N N N N N N _lbb: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "b" N N N N N N N N N N N _lbb: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N _lbb: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N _lbb: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N _lbb: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N _lbb: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N _lbb: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N _lbb: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N _lbb: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N _lbb: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N _lbb: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N _lbb: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lbb: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lbb: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N _lbb: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lbb: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ltx: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N null N N N N N N N N N N _ltx: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N true N N N N N N N N N N _ltx: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N 12 N N N N N N N N N N _ltx: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N 12 N N N N N N N N N N _ltx: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N 3.14 N N N N N N N N N N _ltx: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "a" N N N N N N N N N N _ltx: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "1" N N N N N N N N N N _ltx: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "3.14" N N N N N N N N N N _ltx: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N {"a": 3} N N N N N N N N N N _ltx: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N [1, 2] N N N N N N N N N N _ltx: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N 3.14 N N N N N N N N N N _ltx: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "b,c" N N N N N N N N N N _ltx: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "b" N N N N N N N N N N _ltx: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N _ltx: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N _ltx: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N _ltx: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N _ltx: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N _ltx: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N _ltx: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N _ltx: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N _ltx: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N _ltx: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N _ltx: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ltx: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ltx: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N _ltx: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ltx: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _enu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _enu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _enu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _enu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _set: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _set: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _set: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _set: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _geo: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _geo: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _geo: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _geo: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pnt: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pnt: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pnt: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pnt: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lst: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lst: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lst: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lst: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pol: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pol: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pol: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pol: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpt: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpt: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpt: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpt: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mls: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mls: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mls: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mls: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpy: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpy: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpy: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpy: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _gco: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _gco: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _gco: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _gco: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: bool N 1 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: null N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: bool N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: uint N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: int N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: double N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: stringany N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: stringint N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: stringdecimal N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: object {"a": 3} N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: array N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_decimal N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_set N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_enum N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bit: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: bool N 1 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: uint N 12 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: int N 12 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: double N 3 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: stringint N 1 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_decimal N 3 N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tin: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: bool N N 1 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: uint N N 12 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: int N N 12 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: double N N 3 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: stringint N N 1 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_decimal N N 3 N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _boo: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: bool N N N 1 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: uint N N N 12 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: int N N N 12 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: double N N N 3 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: stringint N N N 1 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_decimal N N N 3 N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _sms: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: bool N N N N 1 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: uint N N N N 12 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: int N N N N 12 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: double N N N N 3 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: stringint N N N N 1 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_decimal N N N N 3 N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: bool N N N N N 1 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: uint N N N N N 12 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: int N N N N N 12 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: double N N N N N 3 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: stringint N N N N N 1 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_decimal N N N N N 3 N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mes: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: bool N N N N N N 1 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: uint N N N N N N 12 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: int N N N N N N 12 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: double N N N N N N 3 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: stringint N N N N N N 1 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_decimal N N N N N N 3 N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _meu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: bool N N N N N N N 1 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: uint N N N N N N N 12 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: int N N N N N N N 12 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: double N N N N N N N 3 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: stringint N N N N N N N 1 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_decimal N N N N N N N 3 N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ins: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: bool N N N N N N N N 1 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: uint N N N N N N N N 12 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: int N N N N N N N N 12 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: double N N N N N N N N 3 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: stringint N N N N N N N N 1 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_decimal N N N N N N N N 3 N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _inu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: bool N N N N N N N N N 1 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: uint N N N N N N N N N 12 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: int N N N N N N N N N 12 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: double N N N N N N N N N 3 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: stringint N N N N N N N N N 1 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_decimal N N N N N N N N N 3 N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bis: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: bool N N N N N N N N N N 1 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: uint N N N N N N N N N N 12 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: int N N N N N N N N N N 12 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: double N N N N N N N N N N 3 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: stringint N N N N N N N N N N 1 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_decimal N N N N N N N N N N 3 N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _biu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: bool N N N N N N N N N N N 1.00 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: uint N N N N N N N N N N N 12.00 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: int N N N N N N N N N N N 12.00 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: double N N N N N N N N N N N 3.14 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: stringint N N N N N N N N N N N 1.00 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: stringdecimal N N N N N N N N N N N 3.14 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_decimal N N N N N N N N N N N 3.14 N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dec: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: bool N N N N N N N N N N N N 1 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: uint N N N N N N N N N N N N 12 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: int N N N N N N N N N N N N 12 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: double N N N N N N N N N N N N 3.14 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: stringint N N N N N N N N N N N N 1 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: stringdecimal N N N N N N N N N N N N 3.14 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_decimal N N N N N N N N N N N N 3.14 N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _flo: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: bool N N N N N N N N N N N N N 1 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: uint N N N N N N N N N N N N N 12 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: int N N N N N N N N N N N N N 12 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: double N N N N N N N N N N N N N 3.14 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: stringint N N N N N N N N N N N N N 1 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: stringdecimal N N N N N N N N N N N N N 3.14 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_decimal N N N N N N N N N N N N N 3.14 --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dou: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_date N N N N N N N N N N N N N N --EXPECTED_DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_datetime N N N N N N N N N N N N N N --EXPECTED_DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_varbinary N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_binary N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_string N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_var_string N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- N --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- N --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dtt: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- N --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _dat: opaque_mysql_type_var_string N N N N N N N N N N N N N N N --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _smp: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --EXPECTED_TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --EXPECTED_TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N N _tim: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N N _yea: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- 2012 N N N N N N N N N N N N N N N N N N N N N N N _yea: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- 2012 N N N N N N N N N N N N N N N N N N N N N N N _yea: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- 2003 N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- 2003 N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _yea: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _jsn: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N null N N N N N N N N N N N N N N N N N N N N N N _jsn: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N true N N N N N N N N N N N N N N N N N N N N N N _jsn: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N 12 N N N N N N N N N N N N N N N N N N N N N N _jsn: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N 12 N N N N N N N N N N N N N N N N N N N N N N _jsn: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N 3.14 N N N N N N N N N N N N N N N N N N N N N N _jsn: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "a" N N N N N N N N N N N N N N N N N N N N N N _jsn: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "1" N N N N N N N N N N N N N N N N N N N N N N _jsn: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "3.14" N N N N N N N N N N N N N N N N N N N N N N _jsn: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N {"a": 3} N N N N N N N N N N N N N N N N N N N N N N _jsn: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N [1, 2] N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N 3.14 N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "b,c" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "b" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _jsn: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _chr: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N null N N N N N N N N N N N N N N N N N N N N N _chr: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N true N N N N N N N N N N N N N N N N N N N N N _chr: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N 12 N N N N N N N N N N N N N N N N N N N N N _chr: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N 12 N N N N N N N N N N N N N N N N N N N N N _chr: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N 3.14 N N N N N N N N N N N N N N N N N N N N N _chr: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "a" N N N N N N N N N N N N N N N N N N N N N _chr: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "1" N N N N N N N N N N N N N N N N N N N N N _chr: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "3.14" N N N N N N N N N N N N N N N N N N N N N _chr: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N {"a": 3} N N N N N N N N N N N N N N N N N N N N N _chr: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N [1, 2] N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N 3.14 N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "b,c" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "b" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _chr: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vch: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N null N N N N N N N N N N N N N N N N N N N N _vch: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N true N N N N N N N N N N N N N N N N N N N N _vch: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N 12 N N N N N N N N N N N N N N N N N N N N _vch: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N 12 N N N N N N N N N N N N N N N N N N N N _vch: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N 3.14 N N N N N N N N N N N N N N N N N N N N _vch: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "a" N N N N N N N N N N N N N N N N N N N N _vch: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "1" N N N N N N N N N N N N N N N N N N N N _vch: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "3.14" N N N N N N N N N N N N N N N N N N N N _vch: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N {"a": 3} N N N N N N N N N N N N N N N N N N N N _vch: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N [1, 2] N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N 3.14 N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "b,c" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "b" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vch: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bin: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N null N N N N N N N N N N N N N N N N N N N _bin: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N true N N N N N N N N N N N N N N N N N N N _bin: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N 12 N N N N N N N N N N N N N N N N N N N _bin: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N 12 N N N N N N N N N N N N N N N N N N N _bin: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N 3.14 N N N N N N N N N N N N N N N N N N N _bin: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "a" N N N N N N N N N N N N N N N N N N N _bin: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "1" N N N N N N N N N N N N N N N N N N N _bin: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "3.14" N N N N N N N N N N N N N N N N N N N _bin: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N {"a": 3} N N N N N N N N N N N N N N N N N N N _bin: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N [1, 2] N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N 3.14 N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "b,c" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "b" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _bin: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vbn: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N null N N N N N N N N N N N N N N N N N N _vbn: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N true N N N N N N N N N N N N N N N N N N _vbn: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N 12 N N N N N N N N N N N N N N N N N N _vbn: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N 12 N N N N N N N N N N N N N N N N N N _vbn: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N 3.14 N N N N N N N N N N N N N N N N N N _vbn: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "a" N N N N N N N N N N N N N N N N N N _vbn: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "1" N N N N N N N N N N N N N N N N N N _vbn: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "3.14" N N N N N N N N N N N N N N N N N N _vbn: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N {"a": 3} N N N N N N N N N N N N N N N N N N _vbn: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N [1, 2] N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N 3.14 N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "b,c" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "b" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _vbn: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tbl: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N null N N N N N N N N N N N N N N N N N _tbl: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N true N N N N N N N N N N N N N N N N N _tbl: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N 12 N N N N N N N N N N N N N N N N N _tbl: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N 12 N N N N N N N N N N N N N N N N N _tbl: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N 3.14 N N N N N N N N N N N N N N N N N _tbl: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "a" N N N N N N N N N N N N N N N N N _tbl: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "1" N N N N N N N N N N N N N N N N N _tbl: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "3.14" N N N N N N N N N N N N N N N N N _tbl: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N {"a": 3} N N N N N N N N N N N N N N N N N _tbl: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N [1, 2] N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N 3.14 N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "b,c" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "b" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _tbl: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ttx: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N null N N N N N N N N N N N N N N N N _ttx: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N true N N N N N N N N N N N N N N N N _ttx: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N 12 N N N N N N N N N N N N N N N N _ttx: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N 12 N N N N N N N N N N N N N N N N _ttx: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N 3.14 N N N N N N N N N N N N N N N N _ttx: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "a" N N N N N N N N N N N N N N N N _ttx: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "1" N N N N N N N N N N N N N N N N _ttx: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "3.14" N N N N N N N N N N N N N N N N _ttx: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N {"a": 3} N N N N N N N N N N N N N N N N _ttx: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N [1, 2] N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N 3.14 N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "b,c" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "b" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ttx: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _blb: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N null N N N N N N N N N N N N N N N _blb: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N true N N N N N N N N N N N N N N N _blb: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N 12 N N N N N N N N N N N N N N N _blb: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N 12 N N N N N N N N N N N N N N N _blb: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N 3.14 N N N N N N N N N N N N N N N _blb: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "a" N N N N N N N N N N N N N N N _blb: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "1" N N N N N N N N N N N N N N N _blb: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "3.14" N N N N N N N N N N N N N N N _blb: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N {"a": 3} N N N N N N N N N N N N N N N _blb: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N [1, 2] N N N N N N N N N N N N N N N _blb: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N 3.14 N N N N N N N N N N N N N N N _blb: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "b,c" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "b" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N N _blb: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _blb: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _blb: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N N _blb: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _blb: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _txt: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N null N N N N N N N N N N N N N N _txt: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N true N N N N N N N N N N N N N N _txt: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N 12 N N N N N N N N N N N N N N _txt: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N 12 N N N N N N N N N N N N N N _txt: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N 3.14 N N N N N N N N N N N N N N _txt: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "a" N N N N N N N N N N N N N N _txt: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "1" N N N N N N N N N N N N N N _txt: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "3.14" N N N N N N N N N N N N N N _txt: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N {"a": 3} N N N N N N N N N N N N N N _txt: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N [1, 2] N N N N N N N N N N N N N N _txt: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N 3.14 N N N N N N N N N N N N N N _txt: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "b,c" N N N N N N N N N N N N N N _txt: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "b" N N N N N N N N N N N N N N _txt: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N N _txt: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N N _txt: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N N _txt: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N N _txt: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N N _txt: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N N _txt: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _txt: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _txt: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N N _txt: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _txt: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mbb: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N null N N N N N N N N N N N N N _mbb: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N true N N N N N N N N N N N N N _mbb: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N 12 N N N N N N N N N N N N N _mbb: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N 12 N N N N N N N N N N N N N _mbb: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N 3.14 N N N N N N N N N N N N N _mbb: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "a" N N N N N N N N N N N N N _mbb: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "1" N N N N N N N N N N N N N _mbb: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "3.14" N N N N N N N N N N N N N _mbb: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N {"a": 3} N N N N N N N N N N N N N _mbb: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N [1, 2] N N N N N N N N N N N N N _mbb: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N 3.14 N N N N N N N N N N N N N _mbb: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "b,c" N N N N N N N N N N N N N _mbb: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "b" N N N N N N N N N N N N N _mbb: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N N _mbb: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N N _mbb: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N N _mbb: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N N _mbb: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N N _mbb: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N N _mbb: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mbb: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mbb: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N N _mbb: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mbb: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mtx: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N null N N N N N N N N N N N N _mtx: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N true N N N N N N N N N N N N _mtx: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N 12 N N N N N N N N N N N N _mtx: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N 12 N N N N N N N N N N N N _mtx: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N 3.14 N N N N N N N N N N N N _mtx: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "a" N N N N N N N N N N N N _mtx: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "1" N N N N N N N N N N N N _mtx: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "3.14" N N N N N N N N N N N N _mtx: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N {"a": 3} N N N N N N N N N N N N _mtx: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N [1, 2] N N N N N N N N N N N N _mtx: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N 3.14 N N N N N N N N N N N N _mtx: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "b,c" N N N N N N N N N N N N _mtx: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "b" N N N N N N N N N N N N _mtx: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N N _mtx: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N N _mtx: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N N _mtx: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N N _mtx: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N N _mtx: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N N _mtx: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mtx: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mtx: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N N _mtx: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mtx: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lbb: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N null N N N N N N N N N N N _lbb: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N true N N N N N N N N N N N _lbb: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N 12 N N N N N N N N N N N _lbb: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N 12 N N N N N N N N N N N _lbb: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N 3.14 N N N N N N N N N N N _lbb: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "a" N N N N N N N N N N N _lbb: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "1" N N N N N N N N N N N _lbb: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "3.14" N N N N N N N N N N N _lbb: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N {"a": 3} N N N N N N N N N N N _lbb: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N [1, 2] N N N N N N N N N N N _lbb: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N 3.14 N N N N N N N N N N N _lbb: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "b,c" N N N N N N N N N N N _lbb: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "b" N N N N N N N N N N N _lbb: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N N _lbb: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N N _lbb: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N N _lbb: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N N _lbb: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N N _lbb: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N N _lbb: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N N _lbb: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N N _lbb: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N N _lbb: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N N _lbb: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lbb: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lbb: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N N _lbb: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lbb: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ltx: null N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N null N N N N N N N N N N _ltx: bool N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N true N N N N N N N N N N _ltx: uint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N 12 N N N N N N N N N N _ltx: int N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N 12 N N N N N N N N N N _ltx: double N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N 3.14 N N N N N N N N N N _ltx: stringany N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "a" N N N N N N N N N N _ltx: stringint N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "1" N N N N N N N N N N _ltx: stringdecimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "3.14" N N N N N N N N N N _ltx: object N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N {"a": 3} N N N N N N N N N N _ltx: array N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N [1, 2] N N N N N N N N N N _ltx: opaque_mysql_type_decimal N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N 3.14 N N N N N N N N N N _ltx: opaque_mysql_type_set N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "b,c" N N N N N N N N N N _ltx: opaque_mysql_type_enum N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "b" N N N N N N N N N N _ltx: opaque_mysql_type_date N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "--EXPECTED_DATE--" N N N N N N N N N N _ltx: opaque_mysql_type_time N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "--EXPECTED_TIME--.000000" N N N N N N N N N N _ltx: opaque_mysql_type_datetime N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "--EXPECTED_TIME--" N N N N N N N N N N _ltx: opaque_mysql_type_geom N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N {"type": "Point", "coordinates": [1, 1]} N N N N N N N N N N _ltx: opaque_mysql_type_bit N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type16:yv4=" N N N N N N N N N N _ltx: opaque_mysql_type_year N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type13:MTk5Mg==" N N N N N N N N N N _ltx: opaque_mysql_type_blob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type252:yv66vg==" N N N N N N N N N N _ltx: opaque_mysql_type_longblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type251:yv66vg==" N N N N N N N N N N _ltx: opaque_mysql_type_mediumblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type250:yv66vg==" N N N N N N N N N N _ltx: opaque_mysql_type_tinyblob N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type249:yv66vg==" N N N N N N N N N N _ltx: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ltx: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ltx: opaque_mysql_type_varchar N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N "base64:type15:Zm9v" N N N N N N N N N N _ltx: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _ltx: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _enu: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _enu: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _enu: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _enu: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _set: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _set: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _set: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _set: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _geo: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _geo: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _geo: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _geo: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pnt: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pnt: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pnt: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pnt: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lst: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lst: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lst: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _lst: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pol: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pol: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pol: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _pol: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpt: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpt: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpt: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpt: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mls: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mls: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mls: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mls: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpy: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpy: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpy: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _mpy: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _gco: opaque_mysql_type_varbinary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _gco: opaque_mysql_type_binary N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _gco: opaque_mysql_type_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N _gco: opaque_mysql_type_var_string N N N N N N N N N N N N N N --DATE-- --TIME-- --TIME-- --TIME-- N N N N N N N N N N N N N N N N N N N N N N N N select c, _bit from at where c like '_bit%'; c _bit _bit: null null _bit: bool true _bit: uint 12 _bit: int 12 _bit: double 3.14 _bit: stringany "a" _bit: stringint "1" _bit: stringdecimal "3.14" _bit: object {"a": 3} _bit: array [1, 2] _bit: opaque_mysql_type_decimal 3.14 _bit: opaque_mysql_type_set "b,c" _bit: opaque_mysql_type_enum "b" _bit: opaque_mysql_type_varbinary NULL _bit: opaque_mysql_type_binary NULL _bit: opaque_mysql_type_string NULL _bit: opaque_mysql_type_var_string NULL _bit: null null _bit: bool true _bit: uint 12 _bit: int 12 _bit: double 3.14 _bit: stringany "a" _bit: stringint "1" _bit: stringdecimal "3.14" _bit: object {"a": 3} _bit: array [1, 2] _bit: opaque_mysql_type_decimal 3.14 _bit: opaque_mysql_type_set "b,c" _bit: opaque_mysql_type_enum "b" _bit: opaque_mysql_type_varbinary NULL _bit: opaque_mysql_type_binary NULL _bit: opaque_mysql_type_string NULL _bit: opaque_mysql_type_var_string NULL _bit: null null _bit: bool true _bit: uint 12 _bit: int 12 _bit: double 3.14 _bit: stringany "a" _bit: stringint "1" _bit: stringdecimal "3.14" _bit: object {"a": 3} _bit: array [1, 2] _bit: opaque_mysql_type_decimal 3.14 _bit: opaque_mysql_type_set "b,c" _bit: opaque_mysql_type_enum "b" _bit: opaque_mysql_type_varbinary NULL _bit: opaque_mysql_type_binary NULL _bit: opaque_mysql_type_string NULL _bit: opaque_mysql_type_var_string NULL select c, _tin from at where c like '_tin%'; c _tin _tin: bool 1 _tin: uint 12 _tin: int 12 _tin: double 3 _tin: stringint 1 _tin: opaque_mysql_type_decimal 3 _tin: opaque_mysql_type_varbinary NULL _tin: opaque_mysql_type_binary NULL _tin: opaque_mysql_type_string NULL _tin: opaque_mysql_type_var_string NULL _tin: bool 1 _tin: uint 12 _tin: int 12 _tin: double 3 _tin: stringint 1 _tin: opaque_mysql_type_decimal 3 _tin: opaque_mysql_type_varbinary NULL _tin: opaque_mysql_type_binary NULL _tin: opaque_mysql_type_string NULL _tin: opaque_mysql_type_var_string NULL _tin: bool 1 _tin: bool 1 _tin: uint 12 _tin: int 12 _tin: double 3 _tin: stringint 1 _tin: opaque_mysql_type_decimal 3 _tin: opaque_mysql_type_varbinary NULL _tin: opaque_mysql_type_binary NULL _tin: opaque_mysql_type_string NULL _tin: opaque_mysql_type_var_string NULL select c, _boo from at where c like '_boo%'; c _boo _boo: bool 1 _boo: uint 12 _boo: int 12 _boo: double 3 _boo: stringint 1 _boo: opaque_mysql_type_decimal 3 _boo: opaque_mysql_type_varbinary NULL _boo: opaque_mysql_type_binary NULL _boo: opaque_mysql_type_string NULL _boo: opaque_mysql_type_var_string NULL _boo: bool 1 _boo: uint 12 _boo: int 12 _boo: double 3 _boo: stringint 1 _boo: opaque_mysql_type_decimal 3 _boo: opaque_mysql_type_varbinary NULL _boo: opaque_mysql_type_binary NULL _boo: opaque_mysql_type_string NULL _boo: opaque_mysql_type_var_string NULL _boo: bool 1 _boo: uint 12 _boo: int 12 _boo: double 3 _boo: stringint 1 _boo: opaque_mysql_type_decimal 3 _boo: opaque_mysql_type_varbinary NULL _boo: opaque_mysql_type_binary NULL _boo: opaque_mysql_type_string NULL _boo: opaque_mysql_type_var_string NULL select c, _sms from at where c like '_sms%'; c _sms _sms: bool 1 _sms: uint 12 _sms: int 12 _sms: double 3 _sms: stringint 1 _sms: opaque_mysql_type_decimal 3 _sms: opaque_mysql_type_varbinary NULL _sms: opaque_mysql_type_binary NULL _sms: opaque_mysql_type_string NULL _sms: opaque_mysql_type_var_string NULL _sms: bool 1 _sms: uint 12 _sms: int 12 _sms: double 3 _sms: stringint 1 _sms: opaque_mysql_type_decimal 3 _sms: opaque_mysql_type_varbinary NULL _sms: opaque_mysql_type_binary NULL _sms: opaque_mysql_type_string NULL _sms: opaque_mysql_type_var_string NULL _sms: bool 1 _sms: uint 12 _sms: int 12 _sms: double 3 _sms: stringint 1 _sms: opaque_mysql_type_decimal 3 _sms: opaque_mysql_type_varbinary NULL _sms: opaque_mysql_type_binary NULL _sms: opaque_mysql_type_string NULL _sms: opaque_mysql_type_var_string NULL select c, _smu from at where c like '_smu%'; c _smu _smu: bool 1 _smu: uint 12 _smu: int 12 _smu: double 3 _smu: stringint 1 _smu: opaque_mysql_type_decimal 3 _smu: opaque_mysql_type_varbinary NULL _smu: opaque_mysql_type_binary NULL _smu: opaque_mysql_type_string NULL _smu: opaque_mysql_type_var_string NULL _smu: bool 1 _smu: uint 12 _smu: int 12 _smu: double 3 _smu: stringint 1 _smu: opaque_mysql_type_decimal 3 _smu: opaque_mysql_type_varbinary NULL _smu: opaque_mysql_type_binary NULL _smu: opaque_mysql_type_string NULL _smu: opaque_mysql_type_var_string NULL _smu: bool 1 _smu: uint 12 _smu: int 12 _smu: double 3 _smu: stringint 1 _smu: opaque_mysql_type_decimal 3 _smu: opaque_mysql_type_varbinary NULL _smu: opaque_mysql_type_binary NULL _smu: opaque_mysql_type_string NULL _smu: opaque_mysql_type_var_string NULL select c, _mes from at where c like '_mes%'; c _mes _mes: bool 1 _mes: uint 12 _mes: int 12 _mes: double 3 _mes: stringint 1 _mes: opaque_mysql_type_decimal 3 _mes: opaque_mysql_type_varbinary NULL _mes: opaque_mysql_type_binary NULL _mes: opaque_mysql_type_string NULL _mes: opaque_mysql_type_var_string NULL _mes: bool 1 _mes: uint 12 _mes: int 12 _mes: double 3 _mes: stringint 1 _mes: opaque_mysql_type_decimal 3 _mes: opaque_mysql_type_varbinary NULL _mes: opaque_mysql_type_binary NULL _mes: opaque_mysql_type_string NULL _mes: opaque_mysql_type_var_string NULL _mes: bool 1 _mes: uint 12 _mes: int 12 _mes: double 3 _mes: stringint 1 _mes: opaque_mysql_type_decimal 3 _mes: opaque_mysql_type_varbinary NULL _mes: opaque_mysql_type_binary NULL _mes: opaque_mysql_type_string NULL _mes: opaque_mysql_type_var_string NULL select c, _meu from at where c like '_meu%'; c _meu _meu: bool 1 _meu: uint 12 _meu: int 12 _meu: double 3 _meu: stringint 1 _meu: opaque_mysql_type_decimal 3 _meu: opaque_mysql_type_varbinary NULL _meu: opaque_mysql_type_binary NULL _meu: opaque_mysql_type_string NULL _meu: opaque_mysql_type_var_string NULL _meu: bool 1 _meu: uint 12 _meu: int 12 _meu: double 3 _meu: stringint 1 _meu: opaque_mysql_type_decimal 3 _meu: opaque_mysql_type_varbinary NULL _meu: opaque_mysql_type_binary NULL _meu: opaque_mysql_type_string NULL _meu: opaque_mysql_type_var_string NULL _meu: bool 1 _meu: uint 12 _meu: int 12 _meu: double 3 _meu: stringint 1 _meu: opaque_mysql_type_decimal 3 _meu: opaque_mysql_type_varbinary NULL _meu: opaque_mysql_type_binary NULL _meu: opaque_mysql_type_string NULL _meu: opaque_mysql_type_var_string NULL select c, _ins from at where c like '_ins%'; c _ins _ins: bool 1 _ins: uint 12 _ins: int 12 _ins: double 3 _ins: stringint 1 _ins: opaque_mysql_type_decimal 3 _ins: opaque_mysql_type_varbinary NULL _ins: opaque_mysql_type_binary NULL _ins: opaque_mysql_type_string NULL _ins: opaque_mysql_type_var_string NULL _ins: bool 1 _ins: uint 12 _ins: int 12 _ins: double 3 _ins: stringint 1 _ins: opaque_mysql_type_decimal 3 _ins: opaque_mysql_type_varbinary NULL _ins: opaque_mysql_type_binary NULL _ins: opaque_mysql_type_string NULL _ins: opaque_mysql_type_var_string NULL _ins: bool 1 _ins: uint 12 _ins: int 12 _ins: double 3 _ins: stringint 1 _ins: opaque_mysql_type_decimal 3 _ins: opaque_mysql_type_varbinary NULL _ins: opaque_mysql_type_binary NULL _ins: opaque_mysql_type_string NULL _ins: opaque_mysql_type_var_string NULL select c, _inu from at where c like '_inu%'; c _inu _inu: bool 1 _inu: uint 12 _inu: int 12 _inu: double 3 _inu: stringint 1 _inu: opaque_mysql_type_decimal 3 _inu: opaque_mysql_type_varbinary NULL _inu: opaque_mysql_type_binary NULL _inu: opaque_mysql_type_string NULL _inu: opaque_mysql_type_var_string NULL _inu: bool 1 _inu: uint 12 _inu: int 12 _inu: double 3 _inu: stringint 1 _inu: opaque_mysql_type_decimal 3 _inu: opaque_mysql_type_varbinary NULL _inu: opaque_mysql_type_binary NULL _inu: opaque_mysql_type_string NULL _inu: opaque_mysql_type_var_string NULL _inu: bool 1 _inu: uint 12 _inu: int 12 _inu: double 3 _inu: stringint 1 _inu: opaque_mysql_type_decimal 3 _inu: opaque_mysql_type_varbinary NULL _inu: opaque_mysql_type_binary NULL _inu: opaque_mysql_type_string NULL _inu: opaque_mysql_type_var_string NULL select c, _bis from at where c like '_bis%'; c _bis _bis: bool 1 _bis: uint 12 _bis: int 12 _bis: double 3 _bis: stringint 1 _bis: opaque_mysql_type_decimal 3 _bis: opaque_mysql_type_varbinary NULL _bis: opaque_mysql_type_binary NULL _bis: opaque_mysql_type_string NULL _bis: opaque_mysql_type_var_string NULL _bis: bool 1 _bis: uint 12 _bis: int 12 _bis: double 3 _bis: stringint 1 _bis: opaque_mysql_type_decimal 3 _bis: opaque_mysql_type_varbinary NULL _bis: opaque_mysql_type_binary NULL _bis: opaque_mysql_type_string NULL _bis: opaque_mysql_type_var_string NULL _bis: bool 1 _bis: uint 12 _bis: int 12 _bis: double 3 _bis: stringint 1 _bis: opaque_mysql_type_decimal 3 _bis: opaque_mysql_type_varbinary NULL _bis: opaque_mysql_type_binary NULL _bis: opaque_mysql_type_string NULL _bis: opaque_mysql_type_var_string NULL select c, _biu from at where c like '_biu%'; c _biu _biu: bool 1 _biu: uint 12 _biu: int 12 _biu: double 3 _biu: stringint 1 _biu: opaque_mysql_type_decimal 3 _biu: opaque_mysql_type_varbinary NULL _biu: opaque_mysql_type_binary NULL _biu: opaque_mysql_type_string NULL _biu: opaque_mysql_type_var_string NULL _biu: bool 1 _biu: uint 12 _biu: int 12 _biu: double 3 _biu: stringint 1 _biu: opaque_mysql_type_decimal 3 _biu: opaque_mysql_type_varbinary NULL _biu: opaque_mysql_type_binary NULL _biu: opaque_mysql_type_string NULL _biu: opaque_mysql_type_var_string NULL _biu: bool 1 _biu: uint 12 _biu: int 12 _biu: double 3 _biu: stringint 1 _biu: opaque_mysql_type_decimal 3 _biu: opaque_mysql_type_varbinary NULL _biu: opaque_mysql_type_binary NULL _biu: opaque_mysql_type_string NULL _biu: opaque_mysql_type_var_string NULL select c, _dec from at where c like '_dec%'; c _dec _dec: bool 1.00 _dec: uint 12.00 _dec: int 12.00 _dec: double 3.14 _dec: stringint 1.00 _dec: stringdecimal 3.14 _dec: opaque_mysql_type_decimal 3.14 _dec: opaque_mysql_type_varbinary NULL _dec: opaque_mysql_type_binary NULL _dec: opaque_mysql_type_string NULL _dec: opaque_mysql_type_var_string NULL _dec: bool 1.00 _dec: uint 12.00 _dec: int 12.00 _dec: double 3.14 _dec: stringint 1.00 _dec: stringdecimal 3.14 _dec: opaque_mysql_type_decimal 3.14 _dec: opaque_mysql_type_varbinary NULL _dec: opaque_mysql_type_binary NULL _dec: opaque_mysql_type_string NULL _dec: opaque_mysql_type_var_string NULL _dec: bool 1.00 _dec: uint 12.00 _dec: int 12.00 _dec: double 3.14 _dec: stringint 1.00 _dec: stringdecimal 3.14 _dec: opaque_mysql_type_decimal 3.14 _dec: opaque_mysql_type_varbinary NULL _dec: opaque_mysql_type_binary NULL _dec: opaque_mysql_type_string NULL _dec: opaque_mysql_type_var_string NULL select c, _flo from at where c like '_flo%'; c _flo _flo: bool 1 _flo: uint 12 _flo: int 12 _flo: double 3.14 _flo: stringint 1 _flo: stringdecimal 3.14 _flo: opaque_mysql_type_decimal 3.14 _flo: opaque_mysql_type_varbinary NULL _flo: opaque_mysql_type_binary NULL _flo: opaque_mysql_type_string NULL _flo: opaque_mysql_type_var_string NULL _flo: bool 1 _flo: uint 12 _flo: int 12 _flo: double 3.14 _flo: stringint 1 _flo: stringdecimal 3.14 _flo: opaque_mysql_type_decimal 3.14 _flo: opaque_mysql_type_varbinary NULL _flo: opaque_mysql_type_binary NULL _flo: opaque_mysql_type_string NULL _flo: opaque_mysql_type_var_string NULL _flo: bool 1 _flo: uint 12 _flo: int 12 _flo: double 3.14 _flo: stringint 1 _flo: stringdecimal 3.14 _flo: opaque_mysql_type_decimal 3.14 _flo: opaque_mysql_type_varbinary NULL _flo: opaque_mysql_type_binary NULL _flo: opaque_mysql_type_string NULL _flo: opaque_mysql_type_var_string NULL select c, _dou from at where c like '_dou%'; c _dou _dou: bool 1 _dou: uint 12 _dou: int 12 _dou: double 3.14 _dou: stringint 1 _dou: stringdecimal 3.14 _dou: opaque_mysql_type_decimal 3.14 _dou: opaque_mysql_type_varbinary NULL _dou: opaque_mysql_type_binary NULL _dou: opaque_mysql_type_string NULL _dou: opaque_mysql_type_var_string NULL _dou: bool 1 _dou: uint 12 _dou: int 12 _dou: double 3.14 _dou: stringint 1 _dou: stringdecimal 3.14 _dou: opaque_mysql_type_decimal 3.14 _dou: opaque_mysql_type_varbinary NULL _dou: opaque_mysql_type_binary NULL _dou: opaque_mysql_type_string NULL _dou: opaque_mysql_type_var_string NULL _dou: bool 1 _dou: uint 12 _dou: int 12 _dou: double 3.14 _dou: stringint 1 _dou: stringdecimal 3.14 _dou: opaque_mysql_type_decimal 3.14 _dou: opaque_mysql_type_varbinary NULL _dou: opaque_mysql_type_binary NULL _dou: opaque_mysql_type_string NULL _dou: opaque_mysql_type_var_string NULL select c, _dat from at where c like '_dat%'; c _dat _dat: opaque_mysql_type_date --EXPECTED_DATE-- _dat: opaque_mysql_type_time --DATE-- _dat: opaque_mysql_type_datetime --EXPECTED_DATE-- _dat: opaque_mysql_type_varbinary NULL _dat: opaque_mysql_type_binary NULL _dat: opaque_mysql_type_string NULL _dat: opaque_mysql_type_var_string NULL _dat: opaque_mysql_type_var_string NULL _dat: opaque_mysql_type_date --EXPECTED_DATE-- _dat: opaque_mysql_type_time --DATE-- _dat: opaque_mysql_type_datetime --EXPECTED_DATE-- _dat: opaque_mysql_type_varbinary NULL _dat: opaque_mysql_type_binary NULL _dat: opaque_mysql_type_string NULL _dat: opaque_mysql_type_var_string NULL _dat: opaque_mysql_type_var_string NULL _dat: opaque_mysql_type_date --EXPECTED_DATE-- _dat: opaque_mysql_type_time --DATE-- _dat: opaque_mysql_type_datetime --EXPECTED_DATE-- _dat: opaque_mysql_type_varbinary NULL _dat: opaque_mysql_type_binary NULL _dat: opaque_mysql_type_string NULL _dat: opaque_mysql_type_var_string NULL _dat: opaque_mysql_type_var_string NULL select c, _dtt from at where c like '_dtt%'; c _dtt _dtt: opaque_mysql_type_date --DATETIME-- _dtt: opaque_mysql_type_time --DATETIME-- _dtt: opaque_mysql_type_datetime --EXPECTED_DATETIME-- _dtt: opaque_mysql_type_varbinary NULL _dtt: opaque_mysql_type_binary NULL _dtt: opaque_mysql_type_string NULL _dtt: opaque_mysql_type_date --DATETIME-- _dtt: opaque_mysql_type_time --DATETIME-- _dtt: opaque_mysql_type_datetime --EXPECTED_DATETIME-- _dtt: opaque_mysql_type_varbinary NULL _dtt: opaque_mysql_type_binary NULL _dtt: opaque_mysql_type_string NULL _dtt: opaque_mysql_type_date --DATETIME-- _dtt: opaque_mysql_type_time --DATETIME-- _dtt: opaque_mysql_type_datetime --EXPECTED_DATETIME-- _dtt: opaque_mysql_type_varbinary NULL _dtt: opaque_mysql_type_binary NULL _dtt: opaque_mysql_type_string NULL select c, _smp from at where c like '_smp%'; c _smp _smp: opaque_mysql_type_date --TIMESTAMP-- _smp: opaque_mysql_type_time --TIMESTAMP-- _smp: opaque_mysql_type_datetime --EXPECTED_TIMESTAMP-- _smp: opaque_mysql_type_varbinary --TIMESTAMP-- _smp: opaque_mysql_type_binary --TIMESTAMP-- _smp: opaque_mysql_type_string --TIMESTAMP-- _smp: opaque_mysql_type_var_string --TIMESTAMP-- _smp: opaque_mysql_type_date --TIMESTAMP-- _smp: opaque_mysql_type_time --TIMESTAMP-- _smp: opaque_mysql_type_datetime --EXPECTED_TIMESTAMP-- _smp: opaque_mysql_type_varbinary --TIMESTAMP-- _smp: opaque_mysql_type_binary --TIMESTAMP-- _smp: opaque_mysql_type_string --TIMESTAMP-- _smp: opaque_mysql_type_var_string --TIMESTAMP-- _smp: opaque_mysql_type_date --TIMESTAMP-- _smp: opaque_mysql_type_time --TIMESTAMP-- _smp: opaque_mysql_type_datetime --EXPECTED_TIMESTAMP-- _smp: opaque_mysql_type_varbinary --TIMESTAMP-- _smp: opaque_mysql_type_binary --TIMESTAMP-- _smp: opaque_mysql_type_string --TIMESTAMP-- _smp: opaque_mysql_type_var_string --TIMESTAMP-- select c, _tim from at where c like '_tim%'; c _tim _tim: opaque_mysql_type_date --TIME-- _tim: opaque_mysql_type_time --EXPECTED_TIME-- _tim: opaque_mysql_type_datetime --EXPECTED_TIME-- _tim: opaque_mysql_type_varbinary NULL _tim: opaque_mysql_type_binary NULL _tim: opaque_mysql_type_string NULL _tim: opaque_mysql_type_var_string NULL _tim: opaque_mysql_type_date --TIME-- _tim: opaque_mysql_type_time --EXPECTED_TIME-- _tim: opaque_mysql_type_datetime --EXPECTED_TIME-- _tim: opaque_mysql_type_varbinary NULL _tim: opaque_mysql_type_binary NULL _tim: opaque_mysql_type_string NULL _tim: opaque_mysql_type_var_string NULL _tim: opaque_mysql_type_date --TIME-- _tim: opaque_mysql_type_time --EXPECTED_TIME-- _tim: opaque_mysql_type_datetime --EXPECTED_TIME-- _tim: opaque_mysql_type_varbinary NULL _tim: opaque_mysql_type_binary NULL _tim: opaque_mysql_type_string NULL _tim: opaque_mysql_type_var_string NULL select c, _yea from at where c like '_yea%'; c _yea _yea: uint 2012 _yea: int 2012 _yea: double 2003 _yea: opaque_mysql_type_decimal 2003 _yea: opaque_mysql_type_varbinary NULL _yea: opaque_mysql_type_binary NULL _yea: opaque_mysql_type_string NULL _yea: opaque_mysql_type_var_string NULL _yea: uint 2012 _yea: int 2012 _yea: double 2003 _yea: opaque_mysql_type_decimal 2003 _yea: opaque_mysql_type_varbinary NULL _yea: opaque_mysql_type_binary NULL _yea: opaque_mysql_type_string NULL _yea: opaque_mysql_type_var_string NULL _yea: uint 2012 _yea: int 2012 _yea: double 2003 _yea: opaque_mysql_type_decimal 2003 _yea: opaque_mysql_type_varbinary NULL _yea: opaque_mysql_type_binary NULL _yea: opaque_mysql_type_string NULL _yea: opaque_mysql_type_var_string NULL select c, _jsn from at where c like '_jsn%'; c _jsn _jsn: null null _jsn: bool true _jsn: uint 12 _jsn: int 12 _jsn: double 3.14 _jsn: stringany "a" _jsn: stringint "1" _jsn: stringdecimal "3.14" _jsn: object {"a": 3} _jsn: array [1, 2] _jsn: opaque_mysql_type_decimal 3.14 _jsn: opaque_mysql_type_set "b,c" _jsn: opaque_mysql_type_enum "b" _jsn: opaque_mysql_type_date "2015-01-15" _jsn: opaque_mysql_type_time "23:24:25.000000" _jsn: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _jsn: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _jsn: opaque_mysql_type_bit "base64:type16:yv4=" _jsn: opaque_mysql_type_year "base64:type13:MTk5Mg==" _jsn: opaque_mysql_type_blob "base64:type252:yv66vg==" _jsn: opaque_mysql_type_longblob "base64:type251:yv66vg==" _jsn: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _jsn: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _jsn: opaque_mysql_type_varbinary NULL _jsn: opaque_mysql_type_binary NULL _jsn: opaque_mysql_type_varchar "base64:type15:Zm9v" _jsn: opaque_mysql_type_string NULL _jsn: opaque_mysql_type_var_string NULL _jsn: null null _jsn: bool true _jsn: uint 12 _jsn: int 12 _jsn: double 3.14 _jsn: stringany "a" _jsn: stringint "1" _jsn: stringdecimal "3.14" _jsn: object {"a": 3} _jsn: array [1, 2] _jsn: opaque_mysql_type_decimal 3.14 _jsn: opaque_mysql_type_set "b,c" _jsn: opaque_mysql_type_enum "b" _jsn: opaque_mysql_type_date "2015-01-15" _jsn: opaque_mysql_type_time "23:24:25.000000" _jsn: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _jsn: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _jsn: opaque_mysql_type_bit "base64:type16:yv4=" _jsn: opaque_mysql_type_year "base64:type13:MTk5Mg==" _jsn: opaque_mysql_type_blob "base64:type252:yv66vg==" _jsn: opaque_mysql_type_longblob "base64:type251:yv66vg==" _jsn: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _jsn: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _jsn: opaque_mysql_type_varbinary NULL _jsn: opaque_mysql_type_binary NULL _jsn: opaque_mysql_type_varchar "base64:type15:Zm9v" _jsn: opaque_mysql_type_string NULL _jsn: opaque_mysql_type_var_string NULL _jsn: null null _jsn: bool true _jsn: uint 12 _jsn: int 12 _jsn: double 3.14 _jsn: stringany "a" _jsn: stringint "1" _jsn: stringdecimal "3.14" _jsn: object {"a": 3} _jsn: array [1, 2] _jsn: opaque_mysql_type_decimal 3.14 _jsn: opaque_mysql_type_set "b,c" _jsn: opaque_mysql_type_enum "b" _jsn: opaque_mysql_type_date "2015-01-15" _jsn: opaque_mysql_type_time "23:24:25.000000" _jsn: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _jsn: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _jsn: opaque_mysql_type_bit "base64:type16:yv4=" _jsn: opaque_mysql_type_year "base64:type13:MTk5Mg==" _jsn: opaque_mysql_type_blob "base64:type252:yv66vg==" _jsn: opaque_mysql_type_longblob "base64:type251:yv66vg==" _jsn: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _jsn: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _jsn: opaque_mysql_type_varbinary NULL _jsn: opaque_mysql_type_binary NULL _jsn: opaque_mysql_type_varchar "base64:type15:Zm9v" _jsn: opaque_mysql_type_string NULL _jsn: opaque_mysql_type_var_string NULL select c, _chr from at where c like '_chr%'; c _chr _chr: null null _chr: bool true _chr: uint 12 _chr: int 12 _chr: double 3.14 _chr: stringany "a" _chr: stringint "1" _chr: stringdecimal "3.14" _chr: object {"a": 3} _chr: array [1, 2] _chr: opaque_mysql_type_decimal 3.14 _chr: opaque_mysql_type_set "b,c" _chr: opaque_mysql_type_enum "b" _chr: opaque_mysql_type_date "2015-01-15" _chr: opaque_mysql_type_time "23:24:25.000000" _chr: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _chr: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _chr: opaque_mysql_type_bit "base64:type16:yv4=" _chr: opaque_mysql_type_year "base64:type13:MTk5Mg==" _chr: opaque_mysql_type_blob "base64:type252:yv66vg==" _chr: opaque_mysql_type_longblob "base64:type251:yv66vg==" _chr: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _chr: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _chr: opaque_mysql_type_varbinary NULL _chr: opaque_mysql_type_binary NULL _chr: opaque_mysql_type_varchar "base64:type15:Zm9v" _chr: opaque_mysql_type_string NULL _chr: opaque_mysql_type_var_string NULL _chr: null null _chr: bool true _chr: uint 12 _chr: int 12 _chr: double 3.14 _chr: stringany "a" _chr: stringint "1" _chr: stringdecimal "3.14" _chr: object {"a": 3} _chr: array [1, 2] _chr: opaque_mysql_type_decimal 3.14 _chr: opaque_mysql_type_set "b,c" _chr: opaque_mysql_type_enum "b" _chr: opaque_mysql_type_date "2015-01-15" _chr: opaque_mysql_type_time "23:24:25.000000" _chr: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _chr: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _chr: opaque_mysql_type_bit "base64:type16:yv4=" _chr: opaque_mysql_type_year "base64:type13:MTk5Mg==" _chr: opaque_mysql_type_blob "base64:type252:yv66vg==" _chr: opaque_mysql_type_longblob "base64:type251:yv66vg==" _chr: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _chr: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _chr: opaque_mysql_type_varbinary NULL _chr: opaque_mysql_type_binary NULL _chr: opaque_mysql_type_varchar "base64:type15:Zm9v" _chr: opaque_mysql_type_string NULL _chr: opaque_mysql_type_var_string NULL _chr: null null _chr: bool true _chr: uint 12 _chr: int 12 _chr: double 3.14 _chr: stringany "a" _chr: stringint "1" _chr: stringdecimal "3.14" _chr: object {"a": 3} _chr: array [1, 2] _chr: opaque_mysql_type_decimal 3.14 _chr: opaque_mysql_type_set "b,c" _chr: opaque_mysql_type_enum "b" _chr: opaque_mysql_type_date "2015-01-15" _chr: opaque_mysql_type_time "23:24:25.000000" _chr: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _chr: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _chr: opaque_mysql_type_bit "base64:type16:yv4=" _chr: opaque_mysql_type_year "base64:type13:MTk5Mg==" _chr: opaque_mysql_type_blob "base64:type252:yv66vg==" _chr: opaque_mysql_type_longblob "base64:type251:yv66vg==" _chr: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _chr: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _chr: opaque_mysql_type_varbinary NULL _chr: opaque_mysql_type_binary NULL _chr: opaque_mysql_type_varchar "base64:type15:Zm9v" _chr: opaque_mysql_type_string NULL _chr: opaque_mysql_type_var_string NULL select c, _vch from at where c like '_vch%'; c _vch _vch: null null _vch: bool true _vch: uint 12 _vch: int 12 _vch: double 3.14 _vch: stringany "a" _vch: stringint "1" _vch: stringdecimal "3.14" _vch: object {"a": 3} _vch: array [1, 2] _vch: opaque_mysql_type_decimal 3.14 _vch: opaque_mysql_type_set "b,c" _vch: opaque_mysql_type_enum "b" _vch: opaque_mysql_type_date "2015-01-15" _vch: opaque_mysql_type_time "23:24:25.000000" _vch: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _vch: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _vch: opaque_mysql_type_bit "base64:type16:yv4=" _vch: opaque_mysql_type_year "base64:type13:MTk5Mg==" _vch: opaque_mysql_type_blob "base64:type252:yv66vg==" _vch: opaque_mysql_type_longblob "base64:type251:yv66vg==" _vch: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _vch: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _vch: opaque_mysql_type_varbinary NULL _vch: opaque_mysql_type_binary NULL _vch: opaque_mysql_type_varchar "base64:type15:Zm9v" _vch: opaque_mysql_type_string NULL _vch: opaque_mysql_type_var_string NULL _vch: null null _vch: bool true _vch: uint 12 _vch: int 12 _vch: double 3.14 _vch: stringany "a" _vch: stringint "1" _vch: stringdecimal "3.14" _vch: object {"a": 3} _vch: array [1, 2] _vch: opaque_mysql_type_decimal 3.14 _vch: opaque_mysql_type_set "b,c" _vch: opaque_mysql_type_enum "b" _vch: opaque_mysql_type_date "2015-01-15" _vch: opaque_mysql_type_time "23:24:25.000000" _vch: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _vch: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _vch: opaque_mysql_type_bit "base64:type16:yv4=" _vch: opaque_mysql_type_year "base64:type13:MTk5Mg==" _vch: opaque_mysql_type_blob "base64:type252:yv66vg==" _vch: opaque_mysql_type_longblob "base64:type251:yv66vg==" _vch: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _vch: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _vch: opaque_mysql_type_varbinary NULL _vch: opaque_mysql_type_binary NULL _vch: opaque_mysql_type_varchar "base64:type15:Zm9v" _vch: opaque_mysql_type_string NULL _vch: opaque_mysql_type_var_string NULL _vch: null null _vch: bool true _vch: uint 12 _vch: int 12 _vch: double 3.14 _vch: stringany "a" _vch: stringint "1" _vch: stringdecimal "3.14" _vch: object {"a": 3} _vch: array [1, 2] _vch: opaque_mysql_type_decimal 3.14 _vch: opaque_mysql_type_set "b,c" _vch: opaque_mysql_type_enum "b" _vch: opaque_mysql_type_date "2015-01-15" _vch: opaque_mysql_type_time "23:24:25.000000" _vch: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _vch: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _vch: opaque_mysql_type_bit "base64:type16:yv4=" _vch: opaque_mysql_type_year "base64:type13:MTk5Mg==" _vch: opaque_mysql_type_blob "base64:type252:yv66vg==" _vch: opaque_mysql_type_longblob "base64:type251:yv66vg==" _vch: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _vch: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _vch: opaque_mysql_type_varbinary NULL _vch: opaque_mysql_type_binary NULL _vch: opaque_mysql_type_varchar "base64:type15:Zm9v" _vch: opaque_mysql_type_string NULL _vch: opaque_mysql_type_var_string NULL select c, replace(_bin, '\0', '') from at where c like '_bin%'; c replace(_bin, '\0', '') _bin: null null _bin: bool true _bin: uint 12 _bin: int 12 _bin: double 3.14 _bin: stringany "a" _bin: stringint "1" _bin: stringdecimal "3.14" _bin: object {"a": 3} _bin: array [1, 2] _bin: opaque_mysql_type_decimal 3.14 _bin: opaque_mysql_type_set "b,c" _bin: opaque_mysql_type_enum "b" _bin: opaque_mysql_type_date "2015-01-15" _bin: opaque_mysql_type_time "23:24:25.000000" _bin: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _bin: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _bin: opaque_mysql_type_bit "base64:type16:yv4=" _bin: opaque_mysql_type_year "base64:type13:MTk5Mg==" _bin: opaque_mysql_type_blob "base64:type252:yv66vg==" _bin: opaque_mysql_type_longblob "base64:type251:yv66vg==" _bin: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _bin: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _bin: opaque_mysql_type_varbinary NULL _bin: opaque_mysql_type_binary NULL _bin: opaque_mysql_type_varchar "base64:type15:Zm9v" _bin: opaque_mysql_type_string NULL _bin: opaque_mysql_type_var_string NULL _bin: null null _bin: bool true _bin: uint 12 _bin: int 12 _bin: double 3.14 _bin: stringany "a" _bin: stringint "1" _bin: stringdecimal "3.14" _bin: object {"a": 3} _bin: array [1, 2] _bin: opaque_mysql_type_decimal 3.14 _bin: opaque_mysql_type_set "b,c" _bin: opaque_mysql_type_enum "b" _bin: opaque_mysql_type_date "2015-01-15" _bin: opaque_mysql_type_time "23:24:25.000000" _bin: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _bin: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _bin: opaque_mysql_type_bit "base64:type16:yv4=" _bin: opaque_mysql_type_year "base64:type13:MTk5Mg==" _bin: opaque_mysql_type_blob "base64:type252:yv66vg==" _bin: opaque_mysql_type_longblob "base64:type251:yv66vg==" _bin: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _bin: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _bin: opaque_mysql_type_varbinary NULL _bin: opaque_mysql_type_binary NULL _bin: opaque_mysql_type_varchar "base64:type15:Zm9v" _bin: opaque_mysql_type_string NULL _bin: opaque_mysql_type_var_string NULL _bin: null null _bin: bool true _bin: uint 12 _bin: int 12 _bin: double 3.14 _bin: stringany "a" _bin: stringint "1" _bin: stringdecimal "3.14" _bin: object {"a": 3} _bin: array [1, 2] _bin: opaque_mysql_type_decimal 3.14 _bin: opaque_mysql_type_set "b,c" _bin: opaque_mysql_type_enum "b" _bin: opaque_mysql_type_date "2015-01-15" _bin: opaque_mysql_type_time "23:24:25.000000" _bin: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _bin: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _bin: opaque_mysql_type_bit "base64:type16:yv4=" _bin: opaque_mysql_type_year "base64:type13:MTk5Mg==" _bin: opaque_mysql_type_blob "base64:type252:yv66vg==" _bin: opaque_mysql_type_longblob "base64:type251:yv66vg==" _bin: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _bin: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _bin: opaque_mysql_type_varbinary NULL _bin: opaque_mysql_type_binary NULL _bin: opaque_mysql_type_varchar "base64:type15:Zm9v" _bin: opaque_mysql_type_string NULL _bin: opaque_mysql_type_var_string NULL select c, _vbn from at where c like '_vbn%'; c _vbn _vbn: null null _vbn: bool true _vbn: uint 12 _vbn: int 12 _vbn: double 3.14 _vbn: stringany "a" _vbn: stringint "1" _vbn: stringdecimal "3.14" _vbn: object {"a": 3} _vbn: array [1, 2] _vbn: opaque_mysql_type_decimal 3.14 _vbn: opaque_mysql_type_set "b,c" _vbn: opaque_mysql_type_enum "b" _vbn: opaque_mysql_type_date "2015-01-15" _vbn: opaque_mysql_type_time "23:24:25.000000" _vbn: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _vbn: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _vbn: opaque_mysql_type_bit "base64:type16:yv4=" _vbn: opaque_mysql_type_year "base64:type13:MTk5Mg==" _vbn: opaque_mysql_type_blob "base64:type252:yv66vg==" _vbn: opaque_mysql_type_longblob "base64:type251:yv66vg==" _vbn: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _vbn: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _vbn: opaque_mysql_type_varbinary NULL _vbn: opaque_mysql_type_binary NULL _vbn: opaque_mysql_type_varchar "base64:type15:Zm9v" _vbn: opaque_mysql_type_string NULL _vbn: opaque_mysql_type_var_string NULL _vbn: null null _vbn: bool true _vbn: uint 12 _vbn: int 12 _vbn: double 3.14 _vbn: stringany "a" _vbn: stringint "1" _vbn: stringdecimal "3.14" _vbn: object {"a": 3} _vbn: array [1, 2] _vbn: opaque_mysql_type_decimal 3.14 _vbn: opaque_mysql_type_set "b,c" _vbn: opaque_mysql_type_enum "b" _vbn: opaque_mysql_type_date "2015-01-15" _vbn: opaque_mysql_type_time "23:24:25.000000" _vbn: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _vbn: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _vbn: opaque_mysql_type_bit "base64:type16:yv4=" _vbn: opaque_mysql_type_year "base64:type13:MTk5Mg==" _vbn: opaque_mysql_type_blob "base64:type252:yv66vg==" _vbn: opaque_mysql_type_longblob "base64:type251:yv66vg==" _vbn: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _vbn: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _vbn: opaque_mysql_type_varbinary NULL _vbn: opaque_mysql_type_binary NULL _vbn: opaque_mysql_type_varchar "base64:type15:Zm9v" _vbn: opaque_mysql_type_string NULL _vbn: opaque_mysql_type_var_string NULL _vbn: null null _vbn: bool true _vbn: uint 12 _vbn: int 12 _vbn: double 3.14 _vbn: stringany "a" _vbn: stringint "1" _vbn: stringdecimal "3.14" _vbn: object {"a": 3} _vbn: array [1, 2] _vbn: opaque_mysql_type_decimal 3.14 _vbn: opaque_mysql_type_set "b,c" _vbn: opaque_mysql_type_enum "b" _vbn: opaque_mysql_type_date "2015-01-15" _vbn: opaque_mysql_type_time "23:24:25.000000" _vbn: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _vbn: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _vbn: opaque_mysql_type_bit "base64:type16:yv4=" _vbn: opaque_mysql_type_year "base64:type13:MTk5Mg==" _vbn: opaque_mysql_type_blob "base64:type252:yv66vg==" _vbn: opaque_mysql_type_longblob "base64:type251:yv66vg==" _vbn: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _vbn: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _vbn: opaque_mysql_type_varbinary NULL _vbn: opaque_mysql_type_binary NULL _vbn: opaque_mysql_type_varchar "base64:type15:Zm9v" _vbn: opaque_mysql_type_string NULL _vbn: opaque_mysql_type_var_string NULL select c, _tbl from at where c like '_tbl%'; c _tbl _tbl: null null _tbl: bool true _tbl: uint 12 _tbl: int 12 _tbl: double 3.14 _tbl: stringany "a" _tbl: stringint "1" _tbl: stringdecimal "3.14" _tbl: object {"a": 3} _tbl: array [1, 2] _tbl: opaque_mysql_type_decimal 3.14 _tbl: opaque_mysql_type_set "b,c" _tbl: opaque_mysql_type_enum "b" _tbl: opaque_mysql_type_date "2015-01-15" _tbl: opaque_mysql_type_time "23:24:25.000000" _tbl: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _tbl: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _tbl: opaque_mysql_type_bit "base64:type16:yv4=" _tbl: opaque_mysql_type_year "base64:type13:MTk5Mg==" _tbl: opaque_mysql_type_blob "base64:type252:yv66vg==" _tbl: opaque_mysql_type_longblob "base64:type251:yv66vg==" _tbl: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _tbl: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _tbl: opaque_mysql_type_varbinary NULL _tbl: opaque_mysql_type_binary NULL _tbl: opaque_mysql_type_varchar "base64:type15:Zm9v" _tbl: opaque_mysql_type_string NULL _tbl: opaque_mysql_type_var_string NULL _tbl: null null _tbl: bool true _tbl: uint 12 _tbl: int 12 _tbl: double 3.14 _tbl: stringany "a" _tbl: stringint "1" _tbl: stringdecimal "3.14" _tbl: object {"a": 3} _tbl: array [1, 2] _tbl: opaque_mysql_type_decimal 3.14 _tbl: opaque_mysql_type_set "b,c" _tbl: opaque_mysql_type_enum "b" _tbl: opaque_mysql_type_date "2015-01-15" _tbl: opaque_mysql_type_time "23:24:25.000000" _tbl: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _tbl: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _tbl: opaque_mysql_type_bit "base64:type16:yv4=" _tbl: opaque_mysql_type_year "base64:type13:MTk5Mg==" _tbl: opaque_mysql_type_blob "base64:type252:yv66vg==" _tbl: opaque_mysql_type_longblob "base64:type251:yv66vg==" _tbl: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _tbl: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _tbl: opaque_mysql_type_varbinary NULL _tbl: opaque_mysql_type_binary NULL _tbl: opaque_mysql_type_varchar "base64:type15:Zm9v" _tbl: opaque_mysql_type_string NULL _tbl: opaque_mysql_type_var_string NULL _tbl: null null _tbl: bool true _tbl: uint 12 _tbl: int 12 _tbl: double 3.14 _tbl: stringany "a" _tbl: stringint "1" _tbl: stringdecimal "3.14" _tbl: object {"a": 3} _tbl: array [1, 2] _tbl: opaque_mysql_type_decimal 3.14 _tbl: opaque_mysql_type_set "b,c" _tbl: opaque_mysql_type_enum "b" _tbl: opaque_mysql_type_date "2015-01-15" _tbl: opaque_mysql_type_time "23:24:25.000000" _tbl: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _tbl: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _tbl: opaque_mysql_type_bit "base64:type16:yv4=" _tbl: opaque_mysql_type_year "base64:type13:MTk5Mg==" _tbl: opaque_mysql_type_blob "base64:type252:yv66vg==" _tbl: opaque_mysql_type_longblob "base64:type251:yv66vg==" _tbl: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _tbl: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _tbl: opaque_mysql_type_varbinary NULL _tbl: opaque_mysql_type_binary NULL _tbl: opaque_mysql_type_varchar "base64:type15:Zm9v" _tbl: opaque_mysql_type_string NULL _tbl: opaque_mysql_type_var_string NULL select c, _ttx from at where c like '_ttx%'; c _ttx _ttx: null null _ttx: bool true _ttx: uint 12 _ttx: int 12 _ttx: double 3.14 _ttx: stringany "a" _ttx: stringint "1" _ttx: stringdecimal "3.14" _ttx: object {"a": 3} _ttx: array [1, 2] _ttx: opaque_mysql_type_decimal 3.14 _ttx: opaque_mysql_type_set "b,c" _ttx: opaque_mysql_type_enum "b" _ttx: opaque_mysql_type_date "2015-01-15" _ttx: opaque_mysql_type_time "23:24:25.000000" _ttx: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _ttx: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _ttx: opaque_mysql_type_bit "base64:type16:yv4=" _ttx: opaque_mysql_type_year "base64:type13:MTk5Mg==" _ttx: opaque_mysql_type_blob "base64:type252:yv66vg==" _ttx: opaque_mysql_type_longblob "base64:type251:yv66vg==" _ttx: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _ttx: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _ttx: opaque_mysql_type_varbinary NULL _ttx: opaque_mysql_type_binary NULL _ttx: opaque_mysql_type_varchar "base64:type15:Zm9v" _ttx: opaque_mysql_type_string NULL _ttx: opaque_mysql_type_var_string NULL _ttx: null null _ttx: bool true _ttx: uint 12 _ttx: int 12 _ttx: double 3.14 _ttx: stringany "a" _ttx: stringint "1" _ttx: stringdecimal "3.14" _ttx: object {"a": 3} _ttx: array [1, 2] _ttx: opaque_mysql_type_decimal 3.14 _ttx: opaque_mysql_type_set "b,c" _ttx: opaque_mysql_type_enum "b" _ttx: opaque_mysql_type_date "2015-01-15" _ttx: opaque_mysql_type_time "23:24:25.000000" _ttx: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _ttx: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _ttx: opaque_mysql_type_bit "base64:type16:yv4=" _ttx: opaque_mysql_type_year "base64:type13:MTk5Mg==" _ttx: opaque_mysql_type_blob "base64:type252:yv66vg==" _ttx: opaque_mysql_type_longblob "base64:type251:yv66vg==" _ttx: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _ttx: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _ttx: opaque_mysql_type_varbinary NULL _ttx: opaque_mysql_type_binary NULL _ttx: opaque_mysql_type_varchar "base64:type15:Zm9v" _ttx: opaque_mysql_type_string NULL _ttx: opaque_mysql_type_var_string NULL _ttx: null null _ttx: bool true _ttx: uint 12 _ttx: int 12 _ttx: double 3.14 _ttx: stringany "a" _ttx: stringint "1" _ttx: stringdecimal "3.14" _ttx: object {"a": 3} _ttx: array [1, 2] _ttx: opaque_mysql_type_decimal 3.14 _ttx: opaque_mysql_type_set "b,c" _ttx: opaque_mysql_type_enum "b" _ttx: opaque_mysql_type_date "2015-01-15" _ttx: opaque_mysql_type_time "23:24:25.000000" _ttx: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _ttx: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _ttx: opaque_mysql_type_bit "base64:type16:yv4=" _ttx: opaque_mysql_type_year "base64:type13:MTk5Mg==" _ttx: opaque_mysql_type_blob "base64:type252:yv66vg==" _ttx: opaque_mysql_type_longblob "base64:type251:yv66vg==" _ttx: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _ttx: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _ttx: opaque_mysql_type_varbinary NULL _ttx: opaque_mysql_type_binary NULL _ttx: opaque_mysql_type_varchar "base64:type15:Zm9v" _ttx: opaque_mysql_type_string NULL _ttx: opaque_mysql_type_var_string NULL select c, _blb from at where c like '_blb%'; c _blb _blb: null null _blb: bool true _blb: uint 12 _blb: int 12 _blb: double 3.14 _blb: stringany "a" _blb: stringint "1" _blb: stringdecimal "3.14" _blb: object {"a": 3} _blb: array [1, 2] _blb: opaque_mysql_type_decimal 3.14 _blb: opaque_mysql_type_set "b,c" _blb: opaque_mysql_type_enum "b" _blb: opaque_mysql_type_date "2015-01-15" _blb: opaque_mysql_type_time "23:24:25.000000" _blb: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _blb: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _blb: opaque_mysql_type_bit "base64:type16:yv4=" _blb: opaque_mysql_type_year "base64:type13:MTk5Mg==" _blb: opaque_mysql_type_blob "base64:type252:yv66vg==" _blb: opaque_mysql_type_longblob "base64:type251:yv66vg==" _blb: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _blb: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _blb: opaque_mysql_type_varbinary NULL _blb: opaque_mysql_type_binary NULL _blb: opaque_mysql_type_varchar "base64:type15:Zm9v" _blb: opaque_mysql_type_string NULL _blb: opaque_mysql_type_var_string NULL _blb: null null _blb: bool true _blb: uint 12 _blb: int 12 _blb: double 3.14 _blb: stringany "a" _blb: stringint "1" _blb: stringdecimal "3.14" _blb: object {"a": 3} _blb: array [1, 2] _blb: opaque_mysql_type_decimal 3.14 _blb: opaque_mysql_type_set "b,c" _blb: opaque_mysql_type_enum "b" _blb: opaque_mysql_type_date "2015-01-15" _blb: opaque_mysql_type_time "23:24:25.000000" _blb: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _blb: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _blb: opaque_mysql_type_bit "base64:type16:yv4=" _blb: opaque_mysql_type_year "base64:type13:MTk5Mg==" _blb: opaque_mysql_type_blob "base64:type252:yv66vg==" _blb: opaque_mysql_type_longblob "base64:type251:yv66vg==" _blb: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _blb: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _blb: opaque_mysql_type_varbinary NULL _blb: opaque_mysql_type_binary NULL _blb: opaque_mysql_type_varchar "base64:type15:Zm9v" _blb: opaque_mysql_type_string NULL _blb: opaque_mysql_type_var_string NULL _blb: null null _blb: bool true _blb: uint 12 _blb: int 12 _blb: double 3.14 _blb: stringany "a" _blb: stringint "1" _blb: stringdecimal "3.14" _blb: object {"a": 3} _blb: array [1, 2] _blb: opaque_mysql_type_decimal 3.14 _blb: opaque_mysql_type_set "b,c" _blb: opaque_mysql_type_enum "b" _blb: opaque_mysql_type_date "2015-01-15" _blb: opaque_mysql_type_time "23:24:25.000000" _blb: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _blb: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _blb: opaque_mysql_type_bit "base64:type16:yv4=" _blb: opaque_mysql_type_year "base64:type13:MTk5Mg==" _blb: opaque_mysql_type_blob "base64:type252:yv66vg==" _blb: opaque_mysql_type_longblob "base64:type251:yv66vg==" _blb: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _blb: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _blb: opaque_mysql_type_varbinary NULL _blb: opaque_mysql_type_binary NULL _blb: opaque_mysql_type_varchar "base64:type15:Zm9v" _blb: opaque_mysql_type_string NULL _blb: opaque_mysql_type_var_string NULL select c, _txt from at where c like '_txt%'; c _txt _txt: null null _txt: bool true _txt: uint 12 _txt: int 12 _txt: double 3.14 _txt: stringany "a" _txt: stringint "1" _txt: stringdecimal "3.14" _txt: object {"a": 3} _txt: array [1, 2] _txt: opaque_mysql_type_decimal 3.14 _txt: opaque_mysql_type_set "b,c" _txt: opaque_mysql_type_enum "b" _txt: opaque_mysql_type_date "2015-01-15" _txt: opaque_mysql_type_time "23:24:25.000000" _txt: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _txt: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _txt: opaque_mysql_type_bit "base64:type16:yv4=" _txt: opaque_mysql_type_year "base64:type13:MTk5Mg==" _txt: opaque_mysql_type_blob "base64:type252:yv66vg==" _txt: opaque_mysql_type_longblob "base64:type251:yv66vg==" _txt: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _txt: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _txt: opaque_mysql_type_varbinary NULL _txt: opaque_mysql_type_binary NULL _txt: opaque_mysql_type_varchar "base64:type15:Zm9v" _txt: opaque_mysql_type_string NULL _txt: opaque_mysql_type_var_string NULL _txt: null null _txt: bool true _txt: uint 12 _txt: int 12 _txt: double 3.14 _txt: stringany "a" _txt: stringint "1" _txt: stringdecimal "3.14" _txt: object {"a": 3} _txt: array [1, 2] _txt: opaque_mysql_type_decimal 3.14 _txt: opaque_mysql_type_set "b,c" _txt: opaque_mysql_type_enum "b" _txt: opaque_mysql_type_date "2015-01-15" _txt: opaque_mysql_type_time "23:24:25.000000" _txt: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _txt: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _txt: opaque_mysql_type_bit "base64:type16:yv4=" _txt: opaque_mysql_type_year "base64:type13:MTk5Mg==" _txt: opaque_mysql_type_blob "base64:type252:yv66vg==" _txt: opaque_mysql_type_longblob "base64:type251:yv66vg==" _txt: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _txt: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _txt: opaque_mysql_type_varbinary NULL _txt: opaque_mysql_type_binary NULL _txt: opaque_mysql_type_varchar "base64:type15:Zm9v" _txt: opaque_mysql_type_string NULL _txt: opaque_mysql_type_var_string NULL _txt: null null _txt: bool true _txt: uint 12 _txt: int 12 _txt: double 3.14 _txt: stringany "a" _txt: stringint "1" _txt: stringdecimal "3.14" _txt: object {"a": 3} _txt: array [1, 2] _txt: opaque_mysql_type_decimal 3.14 _txt: opaque_mysql_type_set "b,c" _txt: opaque_mysql_type_enum "b" _txt: opaque_mysql_type_date "2015-01-15" _txt: opaque_mysql_type_time "23:24:25.000000" _txt: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _txt: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _txt: opaque_mysql_type_bit "base64:type16:yv4=" _txt: opaque_mysql_type_year "base64:type13:MTk5Mg==" _txt: opaque_mysql_type_blob "base64:type252:yv66vg==" _txt: opaque_mysql_type_longblob "base64:type251:yv66vg==" _txt: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _txt: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _txt: opaque_mysql_type_varbinary NULL _txt: opaque_mysql_type_binary NULL _txt: opaque_mysql_type_varchar "base64:type15:Zm9v" _txt: opaque_mysql_type_string NULL _txt: opaque_mysql_type_var_string NULL select c, _mbb from at where c like '_mbb%'; c _mbb _mbb: null null _mbb: bool true _mbb: uint 12 _mbb: int 12 _mbb: double 3.14 _mbb: stringany "a" _mbb: stringint "1" _mbb: stringdecimal "3.14" _mbb: object {"a": 3} _mbb: array [1, 2] _mbb: opaque_mysql_type_decimal 3.14 _mbb: opaque_mysql_type_set "b,c" _mbb: opaque_mysql_type_enum "b" _mbb: opaque_mysql_type_date "2015-01-15" _mbb: opaque_mysql_type_time "23:24:25.000000" _mbb: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _mbb: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _mbb: opaque_mysql_type_bit "base64:type16:yv4=" _mbb: opaque_mysql_type_year "base64:type13:MTk5Mg==" _mbb: opaque_mysql_type_blob "base64:type252:yv66vg==" _mbb: opaque_mysql_type_longblob "base64:type251:yv66vg==" _mbb: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _mbb: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _mbb: opaque_mysql_type_varbinary NULL _mbb: opaque_mysql_type_binary NULL _mbb: opaque_mysql_type_varchar "base64:type15:Zm9v" _mbb: opaque_mysql_type_string NULL _mbb: opaque_mysql_type_var_string NULL _mbb: null null _mbb: bool true _mbb: uint 12 _mbb: int 12 _mbb: double 3.14 _mbb: stringany "a" _mbb: stringint "1" _mbb: stringdecimal "3.14" _mbb: object {"a": 3} _mbb: array [1, 2] _mbb: opaque_mysql_type_decimal 3.14 _mbb: opaque_mysql_type_set "b,c" _mbb: opaque_mysql_type_enum "b" _mbb: opaque_mysql_type_date "2015-01-15" _mbb: opaque_mysql_type_time "23:24:25.000000" _mbb: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _mbb: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _mbb: opaque_mysql_type_bit "base64:type16:yv4=" _mbb: opaque_mysql_type_year "base64:type13:MTk5Mg==" _mbb: opaque_mysql_type_blob "base64:type252:yv66vg==" _mbb: opaque_mysql_type_longblob "base64:type251:yv66vg==" _mbb: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _mbb: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _mbb: opaque_mysql_type_varbinary NULL _mbb: opaque_mysql_type_binary NULL _mbb: opaque_mysql_type_varchar "base64:type15:Zm9v" _mbb: opaque_mysql_type_string NULL _mbb: opaque_mysql_type_var_string NULL _mbb: null null _mbb: bool true _mbb: uint 12 _mbb: int 12 _mbb: double 3.14 _mbb: stringany "a" _mbb: stringint "1" _mbb: stringdecimal "3.14" _mbb: object {"a": 3} _mbb: array [1, 2] _mbb: opaque_mysql_type_decimal 3.14 _mbb: opaque_mysql_type_set "b,c" _mbb: opaque_mysql_type_enum "b" _mbb: opaque_mysql_type_date "2015-01-15" _mbb: opaque_mysql_type_time "23:24:25.000000" _mbb: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _mbb: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _mbb: opaque_mysql_type_bit "base64:type16:yv4=" _mbb: opaque_mysql_type_year "base64:type13:MTk5Mg==" _mbb: opaque_mysql_type_blob "base64:type252:yv66vg==" _mbb: opaque_mysql_type_longblob "base64:type251:yv66vg==" _mbb: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _mbb: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _mbb: opaque_mysql_type_varbinary NULL _mbb: opaque_mysql_type_binary NULL _mbb: opaque_mysql_type_varchar "base64:type15:Zm9v" _mbb: opaque_mysql_type_string NULL _mbb: opaque_mysql_type_var_string NULL select c, _mtx from at where c like '_mtx%'; c _mtx _mtx: null null _mtx: bool true _mtx: uint 12 _mtx: int 12 _mtx: double 3.14 _mtx: stringany "a" _mtx: stringint "1" _mtx: stringdecimal "3.14" _mtx: object {"a": 3} _mtx: array [1, 2] _mtx: opaque_mysql_type_decimal 3.14 _mtx: opaque_mysql_type_set "b,c" _mtx: opaque_mysql_type_enum "b" _mtx: opaque_mysql_type_date "2015-01-15" _mtx: opaque_mysql_type_time "23:24:25.000000" _mtx: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _mtx: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _mtx: opaque_mysql_type_bit "base64:type16:yv4=" _mtx: opaque_mysql_type_year "base64:type13:MTk5Mg==" _mtx: opaque_mysql_type_blob "base64:type252:yv66vg==" _mtx: opaque_mysql_type_longblob "base64:type251:yv66vg==" _mtx: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _mtx: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _mtx: opaque_mysql_type_varbinary NULL _mtx: opaque_mysql_type_binary NULL _mtx: opaque_mysql_type_varchar "base64:type15:Zm9v" _mtx: opaque_mysql_type_string NULL _mtx: opaque_mysql_type_var_string NULL _mtx: null null _mtx: bool true _mtx: uint 12 _mtx: int 12 _mtx: double 3.14 _mtx: stringany "a" _mtx: stringint "1" _mtx: stringdecimal "3.14" _mtx: object {"a": 3} _mtx: array [1, 2] _mtx: opaque_mysql_type_decimal 3.14 _mtx: opaque_mysql_type_set "b,c" _mtx: opaque_mysql_type_enum "b" _mtx: opaque_mysql_type_date "2015-01-15" _mtx: opaque_mysql_type_time "23:24:25.000000" _mtx: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _mtx: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _mtx: opaque_mysql_type_bit "base64:type16:yv4=" _mtx: opaque_mysql_type_year "base64:type13:MTk5Mg==" _mtx: opaque_mysql_type_blob "base64:type252:yv66vg==" _mtx: opaque_mysql_type_longblob "base64:type251:yv66vg==" _mtx: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _mtx: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _mtx: opaque_mysql_type_varbinary NULL _mtx: opaque_mysql_type_binary NULL _mtx: opaque_mysql_type_varchar "base64:type15:Zm9v" _mtx: opaque_mysql_type_string NULL _mtx: opaque_mysql_type_var_string NULL _mtx: null null _mtx: bool true _mtx: uint 12 _mtx: int 12 _mtx: double 3.14 _mtx: stringany "a" _mtx: stringint "1" _mtx: stringdecimal "3.14" _mtx: object {"a": 3} _mtx: array [1, 2] _mtx: opaque_mysql_type_decimal 3.14 _mtx: opaque_mysql_type_set "b,c" _mtx: opaque_mysql_type_enum "b" _mtx: opaque_mysql_type_date "2015-01-15" _mtx: opaque_mysql_type_time "23:24:25.000000" _mtx: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _mtx: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _mtx: opaque_mysql_type_bit "base64:type16:yv4=" _mtx: opaque_mysql_type_year "base64:type13:MTk5Mg==" _mtx: opaque_mysql_type_blob "base64:type252:yv66vg==" _mtx: opaque_mysql_type_longblob "base64:type251:yv66vg==" _mtx: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _mtx: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _mtx: opaque_mysql_type_varbinary NULL _mtx: opaque_mysql_type_binary NULL _mtx: opaque_mysql_type_varchar "base64:type15:Zm9v" _mtx: opaque_mysql_type_string NULL _mtx: opaque_mysql_type_var_string NULL select c, _lbb from at where c like '_lbb%'; c _lbb _lbb: null null _lbb: bool true _lbb: uint 12 _lbb: int 12 _lbb: double 3.14 _lbb: stringany "a" _lbb: stringint "1" _lbb: stringdecimal "3.14" _lbb: object {"a": 3} _lbb: array [1, 2] _lbb: opaque_mysql_type_decimal 3.14 _lbb: opaque_mysql_type_set "b,c" _lbb: opaque_mysql_type_enum "b" _lbb: opaque_mysql_type_date "2015-01-15" _lbb: opaque_mysql_type_time "23:24:25.000000" _lbb: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _lbb: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _lbb: opaque_mysql_type_bit "base64:type16:yv4=" _lbb: opaque_mysql_type_year "base64:type13:MTk5Mg==" _lbb: opaque_mysql_type_blob "base64:type252:yv66vg==" _lbb: opaque_mysql_type_longblob "base64:type251:yv66vg==" _lbb: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _lbb: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _lbb: opaque_mysql_type_varbinary NULL _lbb: opaque_mysql_type_binary NULL _lbb: opaque_mysql_type_varchar "base64:type15:Zm9v" _lbb: opaque_mysql_type_string NULL _lbb: opaque_mysql_type_var_string NULL _lbb: null null _lbb: bool true _lbb: uint 12 _lbb: int 12 _lbb: double 3.14 _lbb: stringany "a" _lbb: stringint "1" _lbb: stringdecimal "3.14" _lbb: object {"a": 3} _lbb: array [1, 2] _lbb: opaque_mysql_type_decimal 3.14 _lbb: opaque_mysql_type_set "b,c" _lbb: opaque_mysql_type_enum "b" _lbb: opaque_mysql_type_date "2015-01-15" _lbb: opaque_mysql_type_time "23:24:25.000000" _lbb: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _lbb: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _lbb: opaque_mysql_type_bit "base64:type16:yv4=" _lbb: opaque_mysql_type_year "base64:type13:MTk5Mg==" _lbb: opaque_mysql_type_blob "base64:type252:yv66vg==" _lbb: opaque_mysql_type_longblob "base64:type251:yv66vg==" _lbb: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _lbb: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _lbb: opaque_mysql_type_varbinary NULL _lbb: opaque_mysql_type_binary NULL _lbb: opaque_mysql_type_varchar "base64:type15:Zm9v" _lbb: opaque_mysql_type_string NULL _lbb: opaque_mysql_type_var_string NULL _lbb: null null _lbb: bool true _lbb: uint 12 _lbb: int 12 _lbb: double 3.14 _lbb: stringany "a" _lbb: stringint "1" _lbb: stringdecimal "3.14" _lbb: object {"a": 3} _lbb: array [1, 2] _lbb: opaque_mysql_type_decimal 3.14 _lbb: opaque_mysql_type_set "b,c" _lbb: opaque_mysql_type_enum "b" _lbb: opaque_mysql_type_date "2015-01-15" _lbb: opaque_mysql_type_time "23:24:25.000000" _lbb: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _lbb: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _lbb: opaque_mysql_type_bit "base64:type16:yv4=" _lbb: opaque_mysql_type_year "base64:type13:MTk5Mg==" _lbb: opaque_mysql_type_blob "base64:type252:yv66vg==" _lbb: opaque_mysql_type_longblob "base64:type251:yv66vg==" _lbb: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _lbb: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _lbb: opaque_mysql_type_varbinary NULL _lbb: opaque_mysql_type_binary NULL _lbb: opaque_mysql_type_varchar "base64:type15:Zm9v" _lbb: opaque_mysql_type_string NULL _lbb: opaque_mysql_type_var_string NULL select c, _ltx from at where c like '_ltx%'; c _ltx _ltx: null null _ltx: bool true _ltx: uint 12 _ltx: int 12 _ltx: double 3.14 _ltx: stringany "a" _ltx: stringint "1" _ltx: stringdecimal "3.14" _ltx: object {"a": 3} _ltx: array [1, 2] _ltx: opaque_mysql_type_decimal 3.14 _ltx: opaque_mysql_type_set "b,c" _ltx: opaque_mysql_type_enum "b" _ltx: opaque_mysql_type_date "2015-01-15" _ltx: opaque_mysql_type_time "23:24:25.000000" _ltx: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _ltx: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _ltx: opaque_mysql_type_bit "base64:type16:yv4=" _ltx: opaque_mysql_type_year "base64:type13:MTk5Mg==" _ltx: opaque_mysql_type_blob "base64:type252:yv66vg==" _ltx: opaque_mysql_type_longblob "base64:type251:yv66vg==" _ltx: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _ltx: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _ltx: opaque_mysql_type_varbinary NULL _ltx: opaque_mysql_type_binary NULL _ltx: opaque_mysql_type_varchar "base64:type15:Zm9v" _ltx: opaque_mysql_type_string NULL _ltx: opaque_mysql_type_var_string NULL _ltx: null null _ltx: bool true _ltx: uint 12 _ltx: int 12 _ltx: double 3.14 _ltx: stringany "a" _ltx: stringint "1" _ltx: stringdecimal "3.14" _ltx: object {"a": 3} _ltx: array [1, 2] _ltx: opaque_mysql_type_decimal 3.14 _ltx: opaque_mysql_type_set "b,c" _ltx: opaque_mysql_type_enum "b" _ltx: opaque_mysql_type_date "2015-01-15" _ltx: opaque_mysql_type_time "23:24:25.000000" _ltx: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _ltx: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _ltx: opaque_mysql_type_bit "base64:type16:yv4=" _ltx: opaque_mysql_type_year "base64:type13:MTk5Mg==" _ltx: opaque_mysql_type_blob "base64:type252:yv66vg==" _ltx: opaque_mysql_type_longblob "base64:type251:yv66vg==" _ltx: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _ltx: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _ltx: opaque_mysql_type_varbinary NULL _ltx: opaque_mysql_type_binary NULL _ltx: opaque_mysql_type_varchar "base64:type15:Zm9v" _ltx: opaque_mysql_type_string NULL _ltx: opaque_mysql_type_var_string NULL _ltx: null null _ltx: bool true _ltx: uint 12 _ltx: int 12 _ltx: double 3.14 _ltx: stringany "a" _ltx: stringint "1" _ltx: stringdecimal "3.14" _ltx: object {"a": 3} _ltx: array [1, 2] _ltx: opaque_mysql_type_decimal 3.14 _ltx: opaque_mysql_type_set "b,c" _ltx: opaque_mysql_type_enum "b" _ltx: opaque_mysql_type_date "2015-01-15" _ltx: opaque_mysql_type_time "23:24:25.000000" _ltx: opaque_mysql_type_datetime "2015-01-15 23:24:25.000000" _ltx: opaque_mysql_type_geom {"type": "Point", "coordinates": [1, 1]} _ltx: opaque_mysql_type_bit "base64:type16:yv4=" _ltx: opaque_mysql_type_year "base64:type13:MTk5Mg==" _ltx: opaque_mysql_type_blob "base64:type252:yv66vg==" _ltx: opaque_mysql_type_longblob "base64:type251:yv66vg==" _ltx: opaque_mysql_type_mediumblob "base64:type250:yv66vg==" _ltx: opaque_mysql_type_tinyblob "base64:type249:yv66vg==" _ltx: opaque_mysql_type_varbinary NULL _ltx: opaque_mysql_type_binary NULL _ltx: opaque_mysql_type_varchar "base64:type15:Zm9v" _ltx: opaque_mysql_type_string NULL _ltx: opaque_mysql_type_var_string NULL select c, _enu from at where c like '_enu%'; c _enu _enu: opaque_mysql_type_varbinary NULL _enu: opaque_mysql_type_binary NULL _enu: opaque_mysql_type_string NULL _enu: opaque_mysql_type_var_string NULL _enu: opaque_mysql_type_varbinary NULL _enu: opaque_mysql_type_binary NULL _enu: opaque_mysql_type_string NULL _enu: opaque_mysql_type_var_string NULL _enu: opaque_mysql_type_varbinary NULL _enu: opaque_mysql_type_binary NULL _enu: opaque_mysql_type_string NULL _enu: opaque_mysql_type_var_string NULL select c, _set from at where c like '_set%'; c _set _set: opaque_mysql_type_varbinary NULL _set: opaque_mysql_type_binary NULL _set: opaque_mysql_type_string NULL _set: opaque_mysql_type_var_string NULL _set: opaque_mysql_type_varbinary NULL _set: opaque_mysql_type_binary NULL _set: opaque_mysql_type_string NULL _set: opaque_mysql_type_var_string NULL _set: opaque_mysql_type_varbinary NULL _set: opaque_mysql_type_binary NULL _set: opaque_mysql_type_string NULL _set: opaque_mysql_type_var_string NULL select c, _geo from at where c like '_geo%'; c _geo _geo: opaque_mysql_type_varbinary NULL _geo: opaque_mysql_type_binary NULL _geo: opaque_mysql_type_string NULL _geo: opaque_mysql_type_var_string NULL _geo: opaque_mysql_type_varbinary NULL _geo: opaque_mysql_type_binary NULL _geo: opaque_mysql_type_string NULL _geo: opaque_mysql_type_var_string NULL _geo: opaque_mysql_type_varbinary NULL _geo: opaque_mysql_type_binary NULL _geo: opaque_mysql_type_string NULL _geo: opaque_mysql_type_var_string NULL select c, _pnt from at where c like '_pnt%'; c _pnt _pnt: opaque_mysql_type_varbinary NULL _pnt: opaque_mysql_type_binary NULL _pnt: opaque_mysql_type_string NULL _pnt: opaque_mysql_type_var_string NULL _pnt: opaque_mysql_type_varbinary NULL _pnt: opaque_mysql_type_binary NULL _pnt: opaque_mysql_type_string NULL _pnt: opaque_mysql_type_var_string NULL _pnt: opaque_mysql_type_varbinary NULL _pnt: opaque_mysql_type_binary NULL _pnt: opaque_mysql_type_string NULL _pnt: opaque_mysql_type_var_string NULL select c, _lst from at where c like '_lst%'; c _lst _lst: opaque_mysql_type_varbinary NULL _lst: opaque_mysql_type_binary NULL _lst: opaque_mysql_type_string NULL _lst: opaque_mysql_type_var_string NULL _lst: opaque_mysql_type_varbinary NULL _lst: opaque_mysql_type_binary NULL _lst: opaque_mysql_type_string NULL _lst: opaque_mysql_type_var_string NULL _lst: opaque_mysql_type_varbinary NULL _lst: opaque_mysql_type_binary NULL _lst: opaque_mysql_type_string NULL _lst: opaque_mysql_type_var_string NULL select c, _pol from at where c like '_pol%'; c _pol _pol: opaque_mysql_type_varbinary NULL _pol: opaque_mysql_type_binary NULL _pol: opaque_mysql_type_string NULL _pol: opaque_mysql_type_var_string NULL _pol: opaque_mysql_type_varbinary NULL _pol: opaque_mysql_type_binary NULL _pol: opaque_mysql_type_string NULL _pol: opaque_mysql_type_var_string NULL _pol: opaque_mysql_type_varbinary NULL _pol: opaque_mysql_type_binary NULL _pol: opaque_mysql_type_string NULL _pol: opaque_mysql_type_var_string NULL select c, _mpt from at where c like '_mpt%'; c _mpt _mpt: opaque_mysql_type_varbinary NULL _mpt: opaque_mysql_type_binary NULL _mpt: opaque_mysql_type_string NULL _mpt: opaque_mysql_type_var_string NULL _mpt: opaque_mysql_type_varbinary NULL _mpt: opaque_mysql_type_binary NULL _mpt: opaque_mysql_type_string NULL _mpt: opaque_mysql_type_var_string NULL _mpt: opaque_mysql_type_varbinary NULL _mpt: opaque_mysql_type_binary NULL _mpt: opaque_mysql_type_string NULL _mpt: opaque_mysql_type_var_string NULL select c, _mls from at where c like '_mls%'; c _mls _mls: opaque_mysql_type_varbinary NULL _mls: opaque_mysql_type_binary NULL _mls: opaque_mysql_type_string NULL _mls: opaque_mysql_type_var_string NULL _mls: opaque_mysql_type_varbinary NULL _mls: opaque_mysql_type_binary NULL _mls: opaque_mysql_type_string NULL _mls: opaque_mysql_type_var_string NULL _mls: opaque_mysql_type_varbinary NULL _mls: opaque_mysql_type_binary NULL _mls: opaque_mysql_type_string NULL _mls: opaque_mysql_type_var_string NULL select c, _mpy from at where c like '_mpy%'; c _mpy _mpy: opaque_mysql_type_varbinary NULL _mpy: opaque_mysql_type_binary NULL _mpy: opaque_mysql_type_string NULL _mpy: opaque_mysql_type_var_string NULL _mpy: opaque_mysql_type_varbinary NULL _mpy: opaque_mysql_type_binary NULL _mpy: opaque_mysql_type_string NULL _mpy: opaque_mysql_type_var_string NULL _mpy: opaque_mysql_type_varbinary NULL _mpy: opaque_mysql_type_binary NULL _mpy: opaque_mysql_type_string NULL _mpy: opaque_mysql_type_var_string NULL select c, _gco from at where c like '_gco%'; c _gco _gco: opaque_mysql_type_varbinary NULL _gco: opaque_mysql_type_binary NULL _gco: opaque_mysql_type_string NULL _gco: opaque_mysql_type_var_string NULL _gco: opaque_mysql_type_varbinary NULL _gco: opaque_mysql_type_binary NULL _gco: opaque_mysql_type_string NULL _gco: opaque_mysql_type_var_string NULL _gco: opaque_mysql_type_varbinary NULL _gco: opaque_mysql_type_binary NULL _gco: opaque_mysql_type_string NULL _gco: opaque_mysql_type_var_string NULL # Explicit coercions (CAST) # ---------------------------------------------------------------------- # CAST to BINARY[(N)] # CAST to CHAR[(N)] # CAST to DATE # CAST to DATETIME # CAST to TIME # CAST to DECIMAL[(M[,D])] # CAST to SIGNED [INTEGER] # CAST to UNSIGNED [INTEGER] # CAST to JSON # ---------------------------------------------------------------------- # C A S T F R O M J S O N C O L U M N # ---------------------------------------------------------------------- select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='null'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col null as BINARY(35) null select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='bool'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col bool as BINARY(35) true select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='uint'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col uint as BINARY(35) 12 select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='int'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col int as BINARY(35) 12 select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='double'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col double as BINARY(35) 3.14 select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='stringany'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col stringany as BINARY(35) "a" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='stringint'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col stringint as BINARY(35) "1" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='stringdecimal'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col stringdecimal as BINARY(35) "3.14" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='object'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col object as BINARY(35) {"a": 3} select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='array'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col array as BINARY(35) [1, 2] select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_decimal'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_decimal as BINARY(35) 3.14 select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_set'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_set as BINARY(35) "b,c" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_enum'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_enum as BINARY(35) "b" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_date'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_date as BINARY(35) "2015-01-15" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_time'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_time as BINARY(35) "23:24:25.000000" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_datetime'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_datetime as BINARY(35) "2015-01-15 23:24:25.000000" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_geom'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_geom as BINARY(35) {"type": "Point", "coordinates": [1 Warnings: Warning 1292 Truncated incorrect BINARY(35) value: '{"type": "Point", "coordinates": [1, 1]}' select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_bit'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_bit as BINARY(35) "base64:type16:yv4=" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_year as BINARY(35) "base64:type13:MTk5Mg==" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_year as BINARY(35) "base64:type13:MTk5Mg==" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_blob'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_blob as BINARY(35) "base64:type252:yv66vg==" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_longblob'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_longblob as BINARY(35) "base64:type251:yv66vg==" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_mediumblob'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_mediumblob as BINARY(35) "base64:type250:yv66vg==" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_tinyblob'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_tinyblob as BINARY(35) "base64:type249:yv66vg==" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_varbinary'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_varbinary as BINARY(35) NULL select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_binary'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_binary as BINARY(35) NULL select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_varchar'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_varchar as BINARY(35) "base64:type15:Zm9v" select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_string'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_string as BINARY(35) NULL select concat('From JSON col ',c, ' as BINARY(35)'), replace(cast(j as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_var_string'; concat('From JSON col ',c, ' as BINARY(35)') replace(cast(j as BINARY(35)), '\0', '') From JSON col opaque_mysql_type_var_string as BINARY(35) NULL select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='null'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col null as CHAR(35)) null select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='bool'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col bool as CHAR(35)) true select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='uint'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col uint as CHAR(35)) 12 select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='int'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col int as CHAR(35)) 12 select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='double'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col double as CHAR(35)) 3.14 select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='stringany'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col stringany as CHAR(35)) "a" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='stringint'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col stringint as CHAR(35)) "1" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='stringdecimal'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col stringdecimal as CHAR(35)) "3.14" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='object'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col object as CHAR(35)) {"a": 3} select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='array'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col array as CHAR(35)) [1, 2] select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_decimal'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_decimal as CHAR(35)) 3.14 select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_set'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_set as CHAR(35)) "b,c" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_enum'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_enum as CHAR(35)) "b" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_date'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_date as CHAR(35)) "2015-01-15" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_time'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_time as CHAR(35)) "23:24:25.000000" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_datetime'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_datetime as CHAR(35)) "2015-01-15 23:24:25.000000" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_geom'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_geom as CHAR(35)) {"type": "Point", "coordinates": [1 Warnings: Warning 1292 Truncated incorrect CHAR(35) value: '{"type": "Point", "coordinates": [1, 1]}' select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_bit'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_bit as CHAR(35)) "base64:type16:yv4=" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_year as CHAR(35)) "base64:type13:MTk5Mg==" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_year as CHAR(35)) "base64:type13:MTk5Mg==" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_blob'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_blob as CHAR(35)) "base64:type252:yv66vg==" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_longblob'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_longblob as CHAR(35)) "base64:type251:yv66vg==" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_mediumblob'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_mediumblob as CHAR(35)) "base64:type250:yv66vg==" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_tinyblob as CHAR(35)) "base64:type249:yv66vg==" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_varbinary'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_varbinary as CHAR(35)) NULL select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_binary'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_binary as CHAR(35)) NULL select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_varchar'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_varchar as CHAR(35)) "base64:type15:Zm9v" select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_string'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_string as CHAR(35)) NULL select concat('From JSON col ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_var_string'; concat('From JSON col ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON col opaque_mysql_type_var_string as CHAR(35)) NULL select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='null'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col null as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='bool'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col bool as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='uint'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col uint as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='int'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col int as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='double'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col double as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='stringany'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col stringany as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='stringint'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col stringint as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='stringdecimal'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col stringdecimal as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='object'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col object as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='array'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col array as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_decimal'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_decimal as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_set'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_set as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_enum'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_enum as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_date'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_date as DATE 2015-01-15 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_time'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_time as DATE --DATE-- select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_datetime'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_datetime as DATE 2015-01-15 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_geom'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_geom as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_bit'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_bit as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_year as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_year as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_blob'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_blob as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_longblob'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_longblob as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_mediumblob'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_mediumblob as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_tinyblob as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_varbinary'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_varbinary as DATE NULL select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_binary'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_binary as DATE NULL select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_varchar'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_varchar as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26 select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_string'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_string as DATE NULL select concat('From JSON col ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_var_string'; concat('From JSON col ',c, ' as DATE') cast(j as DATE) From JSON col opaque_mysql_type_var_string as DATE NULL select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='null'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col null as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='bool'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col bool as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='uint'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col uint as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='int'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col int as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='double'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col double as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='stringany'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col stringany as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='stringint'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col stringint as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='stringdecimal'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col stringdecimal as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='object'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col object as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='array'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col array as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_decimal'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_decimal as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_set'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_set as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_enum'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_enum as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_date'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_date as DATETIME 2015-01-15 00:00:00 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_time'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_time as DATETIME --DATE-- 23:24:25 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_datetime'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_datetime as DATETIME 2015-01-15 23:24:25 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_geom'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_geom as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_bit'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_bit as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_year as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_year as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_blob'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_blob as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_longblob'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_longblob as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_mediumblob'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_mediumblob as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_tinyblob as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_varbinary'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_varbinary as DATETIME NULL select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_binary'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_binary as DATETIME NULL select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_varchar'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_varchar as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26 select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_string'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_string as DATETIME NULL select concat('From JSON col ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_var_string'; concat('From JSON col ',c, ' as DATETIME') cast(j as DATETIME) From JSON col opaque_mysql_type_var_string as DATETIME NULL select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='null'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col null as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 1 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='bool'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col bool as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='uint'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col uint as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 3 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='int'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col int as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='double'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col double as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 5 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='stringany'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col stringany as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='stringint'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col stringint as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 7 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='stringdecimal'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col stringdecimal as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='object'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col object as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 9 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='array'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col array as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_decimal'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_decimal as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 11 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_set'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_set as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_enum'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_enum as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 13 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_date'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_date as TIME 00:00:00 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_time'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_time as TIME 23:24:25 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_datetime'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_datetime as TIME 23:24:25 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_geom'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_geom as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 17 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_bit'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_bit as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_year as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_year as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_blob'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_blob as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 20 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_longblob'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_longblob as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_mediumblob'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_mediumblob as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 22 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_tinyblob as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_varbinary'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_varbinary as TIME NULL select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_binary'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_binary as TIME NULL select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_varchar'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_varchar as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 26 select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_string'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_string as TIME NULL select concat('From JSON col ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_var_string'; concat('From JSON col ',c, ' as TIME') cast(j as TIME) From JSON col opaque_mysql_type_var_string as TIME NULL select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='null'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col null as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 1 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='bool'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col bool as DECIMAL(5,2) 1.00 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='uint'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col uint as DECIMAL(5,2) 12.00 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='int'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col int as DECIMAL(5,2) 12.00 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='double'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col double as DECIMAL(5,2) 3.14 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='stringany'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col stringany as DECIMAL(5,2) 0.00 Warnings: Warning 1366 Incorrect DECIMAL value: '0' for column '' at row -1 Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 6 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='stringint'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col stringint as DECIMAL(5,2) 1.00 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='stringdecimal'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col stringdecimal as DECIMAL(5,2) 3.14 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='object'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col object as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 9 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='array'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col array as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 10 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_decimal'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_decimal as DECIMAL(5,2) 3.14 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_set'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_set as DECIMAL(5,2) 0.00 Warnings: Warning 1366 Incorrect DECIMAL value: '0' for column '' at row -1 Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 12 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_enum'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_enum as DECIMAL(5,2) 0.00 Warnings: Warning 1366 Incorrect DECIMAL value: '0' for column '' at row -1 Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 13 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_date'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_date as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 14 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_time'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_time as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 15 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_datetime'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_datetime as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 16 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_geom'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_geom as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 17 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_bit'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_bit as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 18 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_year as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 19 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_year as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 19 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_blob'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_blob as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 20 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_longblob'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_longblob as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 21 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_mediumblob'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_mediumblob as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 22 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_tinyblob as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 23 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_varbinary'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_varbinary as DECIMAL(5,2) NULL select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_binary'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_binary as DECIMAL(5,2) NULL select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_varchar'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_varchar as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 26 select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_string'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_string as DECIMAL(5,2) NULL select concat('From JSON col ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_var_string'; concat('From JSON col ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON col opaque_mysql_type_var_string as DECIMAL(5,2) NULL select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='null'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col null as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 1 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='bool'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col bool as UNSIGNED 1 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='uint'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col uint as UNSIGNED 12 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='int'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col int as UNSIGNED 12 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='double'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col double as UNSIGNED 3 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='stringany'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col stringany as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 6 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='stringint'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col stringint as UNSIGNED 1 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='stringdecimal'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col stringdecimal as UNSIGNED 3 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 8 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='object'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col object as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 9 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='array'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col array as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 10 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_decimal'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_decimal as UNSIGNED 3 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_set'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_set as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 12 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_enum'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_enum as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 13 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_date'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_date as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 14 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_time'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_time as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 15 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_datetime'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_datetime as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 16 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_geom'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_geom as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 17 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_bit'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_bit as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 18 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_year as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 19 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_year as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 19 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_blob'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_blob as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 20 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_longblob'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_longblob as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 21 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_mediumblob'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_mediumblob as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 22 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_tinyblob as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 23 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_varbinary'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_varbinary as UNSIGNED NULL select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_binary'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_binary as UNSIGNED NULL select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_varchar'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_varchar as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 26 select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_string'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_string as UNSIGNED NULL select concat('From JSON col ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_var_string'; concat('From JSON col ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON col opaque_mysql_type_var_string as UNSIGNED NULL select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='null'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col null as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 1 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='bool'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col bool as SIGNED 1 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='uint'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col uint as SIGNED 12 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='int'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col int as SIGNED 12 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='double'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col double as SIGNED 3 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='stringany'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col stringany as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 6 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='stringint'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col stringint as SIGNED 1 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='stringdecimal'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col stringdecimal as SIGNED 3 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 8 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='object'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col object as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 9 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='array'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col array as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 10 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_decimal'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_decimal as SIGNED 3 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_set'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_set as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 12 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_enum'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_enum as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 13 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_date'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_date as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 14 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_time'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_time as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 15 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_datetime'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_datetime as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 16 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_geom'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_geom as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 17 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_bit'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_bit as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 18 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_year as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 19 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_year'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_year as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 19 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_blob'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_blob as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 20 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_longblob'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_longblob as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 21 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_mediumblob'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_mediumblob as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 22 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_tinyblob as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 23 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_varbinary'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_varbinary as SIGNED NULL select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_binary'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_binary as SIGNED NULL select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_varchar'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_varchar as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 26 select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_string'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_string as SIGNED NULL select concat('From JSON col ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_var_string'; concat('From JSON col ',c, ' as SIGNED') cast(j as SIGNED) From JSON col opaque_mysql_type_var_string as SIGNED NULL # ---------------------------------------------------------------------- # C A S T F R O M J S O N F U N C T I O N # ---------------------------------------------------------------------- select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='null'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func null as BINARY(35) null select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='bool'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func bool as BINARY(35) true select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='uint'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func uint as BINARY(35) 12 select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='int'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func int as BINARY(35) 12 select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='double'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func double as BINARY(35) 3.14 select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='stringany'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func stringany as BINARY(35) "a" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='stringint'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func stringint as BINARY(35) "1" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='stringdecimal'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func stringdecimal as BINARY(35) "3.14" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='object'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func object as BINARY(35) {"a": 3} select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='array'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func array as BINARY(35) [1, 2] select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_decimal'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_decimal as BINARY(35) 3.14 select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_set'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_set as BINARY(35) "b,c" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_enum'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_enum as BINARY(35) "b" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_date'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_date as BINARY(35) "2015-01-15" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_time'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_time as BINARY(35) "23:24:25.000000" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_datetime'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_datetime as BINARY(35) "2015-01-15 23:24:25.000000" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_geom'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_geom as BINARY(35) {"type": "Point", "coordinates": [1 Warnings: Warning 1292 Truncated incorrect BINARY(35) value: '{"type": "Point", "coordinates": [1, 1]}' select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_bit'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_bit as BINARY(35) "base64:type16:yv4=" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_year as BINARY(35) "base64:type13:MTk5Mg==" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_year as BINARY(35) "base64:type13:MTk5Mg==" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_blob'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_blob as BINARY(35) "base64:type252:yv66vg==" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_longblob'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_longblob as BINARY(35) "base64:type251:yv66vg==" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_mediumblob'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_mediumblob as BINARY(35) "base64:type250:yv66vg==" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_tinyblob'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_tinyblob as BINARY(35) "base64:type249:yv66vg==" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_varbinary'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_varbinary as BINARY(35) NULL select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_binary'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_binary as BINARY(35) NULL select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_varchar'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_varchar as BINARY(35) "base64:type15:Zm9v" select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_string'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_string as BINARY(35) NULL select concat('From JSON func ',c, ' as BINARY(35)'), replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') from t where c='opaque_mysql_type_var_string'; concat('From JSON func ',c, ' as BINARY(35)') replace(cast(json_extract(j, '$') as BINARY(35)), '\0', '') From JSON func opaque_mysql_type_var_string as BINARY(35) NULL select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='null'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func null as CHAR(35)) null select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='bool'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func bool as CHAR(35)) true select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='uint'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func uint as CHAR(35)) 12 select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='int'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func int as CHAR(35)) 12 select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='double'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func double as CHAR(35)) 3.14 select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='stringany'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func stringany as CHAR(35)) "a" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='stringint'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func stringint as CHAR(35)) "1" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='stringdecimal'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func stringdecimal as CHAR(35)) "3.14" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='object'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func object as CHAR(35)) {"a": 3} select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='array'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func array as CHAR(35)) [1, 2] select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_decimal'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_decimal as CHAR(35)) 3.14 select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_set'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_set as CHAR(35)) "b,c" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_enum'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_enum as CHAR(35)) "b" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_date'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_date as CHAR(35)) "2015-01-15" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_time'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_time as CHAR(35)) "23:24:25.000000" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_datetime'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_datetime as CHAR(35)) "2015-01-15 23:24:25.000000" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_geom'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_geom as CHAR(35)) {"type": "Point", "coordinates": [1 Warnings: Warning 1292 Truncated incorrect CHAR(35) value: '{"type": "Point", "coordinates": [1, 1]}' select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_bit'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_bit as CHAR(35)) "base64:type16:yv4=" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_year as CHAR(35)) "base64:type13:MTk5Mg==" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_year as CHAR(35)) "base64:type13:MTk5Mg==" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_blob'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_blob as CHAR(35)) "base64:type252:yv66vg==" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_longblob'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_longblob as CHAR(35)) "base64:type251:yv66vg==" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_mediumblob'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_mediumblob as CHAR(35)) "base64:type250:yv66vg==" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_tinyblob as CHAR(35)) "base64:type249:yv66vg==" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_varbinary'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_varbinary as CHAR(35)) NULL select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_binary'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_binary as CHAR(35)) NULL select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_varchar'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_varchar as CHAR(35)) "base64:type15:Zm9v" select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_string'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_string as CHAR(35)) NULL select concat('From JSON func ',c, ' as CHAR(35))'), cast(json_extract(j, '$') as CHAR(35)) from t where c='opaque_mysql_type_var_string'; concat('From JSON func ',c, ' as CHAR(35))') cast(json_extract(j, '$') as CHAR(35)) From JSON func opaque_mysql_type_var_string as CHAR(35)) NULL select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='null'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func null as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='bool'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func bool as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='uint'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func uint as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='int'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func int as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='double'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func double as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='stringany'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func stringany as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='stringint'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func stringint as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='stringdecimal'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func stringdecimal as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='object'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func object as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='array'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func array as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_decimal'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_decimal as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_set'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_set as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_enum'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_enum as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_date'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_date as DATE 2015-01-15 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_time'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_time as DATE --DATE-- select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_datetime'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_datetime as DATE 2015-01-15 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_geom'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_geom as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_bit'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_bit as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_year as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_year as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_blob'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_blob as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_longblob'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_longblob as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_mediumblob'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_mediumblob as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_tinyblob as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_varbinary'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_varbinary as DATE NULL select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_binary'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_binary as DATE NULL select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_varchar'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_varchar as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26 select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_string'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_string as DATE NULL select concat('From JSON func ',c, ' as DATE'), cast(json_extract(j, '$') as DATE) from t where c='opaque_mysql_type_var_string'; concat('From JSON func ',c, ' as DATE') cast(json_extract(j, '$') as DATE) From JSON func opaque_mysql_type_var_string as DATE NULL select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='null'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func null as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='bool'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func bool as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='uint'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func uint as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='int'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func int as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='double'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func double as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='stringany'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func stringany as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='stringint'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func stringint as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='stringdecimal'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func stringdecimal as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='object'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func object as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='array'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func array as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_decimal'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_decimal as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_set'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_set as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_enum'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_enum as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_date'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_date as DATETIME 2015-01-15 00:00:00 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_time'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_time as DATETIME --DATE-- 23:24:25 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_datetime'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_datetime as DATETIME 2015-01-15 23:24:25 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_geom'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_geom as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_bit'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_bit as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_year as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_year as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_blob'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_blob as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_longblob'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_longblob as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_mediumblob'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_mediumblob as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_tinyblob as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_varbinary'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_varbinary as DATETIME NULL select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_binary'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_binary as DATETIME NULL select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_varchar'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_varchar as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26 select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_string'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_string as DATETIME NULL select concat('From JSON func ',c, ' as DATETIME'), cast(json_extract(j, '$') as DATETIME) from t where c='opaque_mysql_type_var_string'; concat('From JSON func ',c, ' as DATETIME') cast(json_extract(j, '$') as DATETIME) From JSON func opaque_mysql_type_var_string as DATETIME NULL select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='null'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func null as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 1 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='bool'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func bool as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 2 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='uint'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func uint as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 3 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='int'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func int as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 4 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='double'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func double as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 5 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='stringany'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func stringany as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 6 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='stringint'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func stringint as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 7 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='stringdecimal'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func stringdecimal as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 8 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='object'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func object as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 9 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='array'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func array as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 10 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_decimal'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_decimal as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 11 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_set'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_set as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 12 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_enum'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_enum as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 13 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_date'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_date as TIME 00:00:00 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_time'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_time as TIME 23:24:25 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_datetime'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_datetime as TIME 23:24:25 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_geom'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_geom as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 17 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_bit'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_bit as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 18 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_year as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_year as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 19 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_blob'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_blob as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 20 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_longblob'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_longblob as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 21 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_mediumblob'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_mediumblob as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 22 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_tinyblob as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 23 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_varbinary'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_varbinary as TIME NULL select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_binary'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_binary as TIME NULL select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_varchar'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_varchar as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column json_extract at row 26 select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_string'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_string as TIME NULL select concat('From JSON func ',c, ' as TIME'), cast(json_extract(j, '$') as TIME) from t where c='opaque_mysql_type_var_string'; concat('From JSON func ',c, ' as TIME') cast(json_extract(j, '$') as TIME) From JSON func opaque_mysql_type_var_string as TIME NULL select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='null'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func null as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 1 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='bool'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func bool as DECIMAL(5,2) 1.00 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='uint'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func uint as DECIMAL(5,2) 12.00 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='int'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func int as DECIMAL(5,2) 12.00 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='double'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func double as DECIMAL(5,2) 3.14 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='stringany'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func stringany as DECIMAL(5,2) 0.00 Warnings: Warning 1366 Incorrect DECIMAL value: '0' for column '' at row -1 Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 6 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='stringint'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func stringint as DECIMAL(5,2) 1.00 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='stringdecimal'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func stringdecimal as DECIMAL(5,2) 3.14 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='object'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func object as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 9 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='array'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func array as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 10 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_decimal'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_decimal as DECIMAL(5,2) 3.14 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_set'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_set as DECIMAL(5,2) 0.00 Warnings: Warning 1366 Incorrect DECIMAL value: '0' for column '' at row -1 Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 12 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_enum'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_enum as DECIMAL(5,2) 0.00 Warnings: Warning 1366 Incorrect DECIMAL value: '0' for column '' at row -1 Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 13 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_date'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_date as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 14 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_time'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_time as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 15 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_datetime'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_datetime as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 16 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_geom'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_geom as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 17 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_bit'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_bit as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 18 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_year as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 19 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_year as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 19 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_blob'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_blob as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 20 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_longblob'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_longblob as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 21 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_mediumblob'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_mediumblob as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 22 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_tinyblob as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 23 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_varbinary'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_varbinary as DECIMAL(5,2) NULL select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_binary'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_binary as DECIMAL(5,2) NULL select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_varchar'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_varchar as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column json_extract at row 26 select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_string'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_string as DECIMAL(5,2) NULL select concat('From JSON func ',c, ' as DECIMAL(5,2)'), cast(json_extract(j, '$') as DECIMAL(5,2)) from t where c='opaque_mysql_type_var_string'; concat('From JSON func ',c, ' as DECIMAL(5,2)') cast(json_extract(j, '$') as DECIMAL(5,2)) From JSON func opaque_mysql_type_var_string as DECIMAL(5,2) NULL select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='null'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func null as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 1 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='bool'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func bool as UNSIGNED 1 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='uint'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func uint as UNSIGNED 12 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='int'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func int as UNSIGNED 12 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='double'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func double as UNSIGNED 3 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='stringany'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func stringany as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 6 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='stringint'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func stringint as UNSIGNED 1 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='stringdecimal'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func stringdecimal as UNSIGNED 3 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 8 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='object'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func object as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 9 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='array'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func array as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 10 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_decimal'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_decimal as UNSIGNED 3 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_set'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_set as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 12 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_enum'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_enum as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 13 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_date'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_date as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 14 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_time'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_time as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 15 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_datetime'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_datetime as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 16 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_geom'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_geom as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 17 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_bit'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_bit as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 18 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_year as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 19 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_year as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 19 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_blob'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_blob as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 20 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_longblob'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_longblob as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 21 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_mediumblob'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_mediumblob as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 22 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_tinyblob as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 23 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_varbinary'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_varbinary as UNSIGNED NULL select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_binary'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_binary as UNSIGNED NULL select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_varchar'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_varchar as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 26 select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_string'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_string as UNSIGNED NULL select concat('From JSON func ',c, ' as UNSIGNED'), cast(json_extract(j, '$') as UNSIGNED) from t where c='opaque_mysql_type_var_string'; concat('From JSON func ',c, ' as UNSIGNED') cast(json_extract(j, '$') as UNSIGNED) From JSON func opaque_mysql_type_var_string as UNSIGNED NULL select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='null'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func null as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 1 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='bool'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func bool as SIGNED 1 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='uint'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func uint as SIGNED 12 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='int'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func int as SIGNED 12 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='double'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func double as SIGNED 3 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='stringany'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func stringany as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 6 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='stringint'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func stringint as SIGNED 1 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='stringdecimal'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func stringdecimal as SIGNED 3 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 8 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='object'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func object as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 9 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='array'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func array as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 10 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_decimal'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_decimal as SIGNED 3 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_set'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_set as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 12 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_enum'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_enum as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 13 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_date'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_date as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 14 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_time'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_time as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 15 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_datetime'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_datetime as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 16 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_geom'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_geom as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 17 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_bit'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_bit as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 18 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_year as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 19 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_year'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_year as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 19 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_blob'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_blob as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 20 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_longblob'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_longblob as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 21 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_mediumblob'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_mediumblob as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 22 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_tinyblob as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 23 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_varbinary'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_varbinary as SIGNED NULL select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_binary'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_binary as SIGNED NULL select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_varchar'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_varchar as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column json_extract at row 26 select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_string'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_string as SIGNED NULL select concat('From JSON func ',c, ' as SIGNED'), cast(json_extract(j, '$') as SIGNED) from t where c='opaque_mysql_type_var_string'; concat('From JSON func ',c, ' as SIGNED') cast(json_extract(j, '$') as SIGNED) From JSON func opaque_mysql_type_var_string as SIGNED NULL # ---------------------------------------------------------------------- # C A S T F R O M J S O N S U B Q U E R Y # ---------------------------------------------------------------------- select 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'; concat('From JSON subselect ',c, ' as BINARY(35)') replace(cast((select j from t where c='null') as BINARY(35)), '\0', '') From JSON subselect null as BINARY(35) null select 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'; concat('From JSON subselect ',c, ' as BINARY(35)') replace(cast((select j from t where c='bool') as BINARY(35)), '\0', '') From JSON subselect bool as BINARY(35) true select 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'; concat('From JSON subselect ',c, ' as BINARY(35)') replace(cast((select j from t where c='uint') as BINARY(35)), '\0', '') From JSON subselect uint as BINARY(35) 12 select 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'; concat('From JSON subselect ',c, ' as BINARY(35)') replace(cast((select j from t where c='int') as BINARY(35)), '\0', '') From JSON subselect int as BINARY(35) 12 select 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'; concat('From JSON subselect ',c, ' as BINARY(35)') replace(cast((select j from t where c='double') as BINARY(35)), '\0', '') From JSON subselect double as BINARY(35) 3.14 select 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'; concat('From JSON subselect ',c, ' as BINARY(35)') replace(cast((select j from t where c='stringany') as BINARY(35)), '\0', '') From JSON subselect stringany as BINARY(35) "a" select 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'; concat('From JSON subselect ',c, ' as BINARY(35)') replace(cast((select j from t where c='stringint') as BINARY(35)), '\0', '') From JSON subselect stringint as BINARY(35) "1" select 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'; concat('From JSON subselect ',c, ' as BINARY(35)') replace(cast((select j from t where c='stringdecimal') as BINARY(35)), '\0', '') From JSON subselect stringdecimal as BINARY(35) "3.14" select 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'; concat('From JSON subselect ',c, ' as BINARY(35)') replace(cast((select j from t where c='object') as BINARY(35)), '\0', '') From JSON subselect object as BINARY(35) {"a": 3} select 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'; concat('From JSON subselect ',c, ' as BINARY(35)') replace(cast((select j from t where c='array') as BINARY(35)), '\0', '') From JSON subselect array as BINARY(35) [1, 2] select 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'; 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 JSON subselect opaque_mysql_type_decimal as BINARY(35) 3.14 select 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'; 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 JSON subselect opaque_mysql_type_set as BINARY(35) "b,c" select 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'; 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 JSON subselect opaque_mysql_type_enum as BINARY(35) "b" select 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'; 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 JSON subselect opaque_mysql_type_date as BINARY(35) "2015-01-15" select 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'; 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 JSON subselect opaque_mysql_type_time as BINARY(35) "23:24:25.000000" select 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'; 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 JSON subselect opaque_mysql_type_datetime as BINARY(35) "2015-01-15 23:24:25.000000" select 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'; 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 JSON subselect opaque_mysql_type_geom as BINARY(35) {"type": "Point", "coordinates": [1 Warnings: Warning 1292 Truncated incorrect BINARY(35) value: '{"type": "Point", "coordinates": [1, 1]}' select 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'; 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 JSON subselect opaque_mysql_type_bit as BINARY(35) "base64:type16:yv4=" select 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'; 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 JSON subselect opaque_mysql_type_year as BINARY(35) "base64:type13:MTk5Mg==" select 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'; 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 JSON subselect opaque_mysql_type_year as BINARY(35) "base64:type13:MTk5Mg==" select 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'; 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 JSON subselect opaque_mysql_type_blob as BINARY(35) "base64:type252:yv66vg==" select 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'; 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 JSON subselect opaque_mysql_type_longblob as BINARY(35) "base64:type251:yv66vg==" select 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'; 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 JSON subselect opaque_mysql_type_mediumblob as BINARY(35) "base64:type250:yv66vg==" select 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'; 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 JSON subselect opaque_mysql_type_tinyblob as BINARY(35) "base64:type249:yv66vg==" select 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'; 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 JSON subselect opaque_mysql_type_varbinary as BINARY(35) NULL select 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'; 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 JSON subselect opaque_mysql_type_binary as BINARY(35) NULL select 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'; 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 JSON subselect opaque_mysql_type_varchar as BINARY(35) "base64:type15:Zm9v" select 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'; 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 JSON subselect opaque_mysql_type_string as BINARY(35) NULL select 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'; 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 JSON subselect opaque_mysql_type_var_string as BINARY(35) NULL select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='null') as CHAR(35)) from t where c='null'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='null') as CHAR(35)) From JSON subselect null as CHAR(35)) null select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='bool') as CHAR(35)) from t where c='bool'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='bool') as CHAR(35)) From JSON subselect bool as CHAR(35)) true select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='uint') as CHAR(35)) from t where c='uint'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='uint') as CHAR(35)) From JSON subselect uint as CHAR(35)) 12 select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='int') as CHAR(35)) from t where c='int'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='int') as CHAR(35)) From JSON subselect int as CHAR(35)) 12 select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='double') as CHAR(35)) from t where c='double'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='double') as CHAR(35)) From JSON subselect double as CHAR(35)) 3.14 select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='stringany') as CHAR(35)) from t where c='stringany'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='stringany') as CHAR(35)) From JSON subselect stringany as CHAR(35)) "a" select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='stringint') as CHAR(35)) from t where c='stringint'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='stringint') as CHAR(35)) From JSON subselect stringint as CHAR(35)) "1" select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='stringdecimal') as CHAR(35)) from t where c='stringdecimal'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='stringdecimal') as CHAR(35)) From JSON subselect stringdecimal as CHAR(35)) "3.14" select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='object') as CHAR(35)) from t where c='object'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='object') as CHAR(35)) From JSON subselect object as CHAR(35)) {"a": 3} select concat('From JSON subselect ',c, ' as CHAR(35))'), cast((select j from t where c='array') as CHAR(35)) from t where c='array'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='array') as CHAR(35)) From JSON subselect array as CHAR(35)) [1, 2] select 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'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='opaque_mysql_type_decimal') as CHAR(35)) From JSON subselect opaque_mysql_type_decimal as CHAR(35)) 3.14 select 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'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='opaque_mysql_type_set') as CHAR(35)) From JSON subselect opaque_mysql_type_set as CHAR(35)) "b,c" select 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'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='opaque_mysql_type_enum') as CHAR(35)) From JSON subselect opaque_mysql_type_enum as CHAR(35)) "b" select 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'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='opaque_mysql_type_date') as CHAR(35)) From JSON subselect opaque_mysql_type_date as CHAR(35)) "2015-01-15" select 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'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='opaque_mysql_type_time') as CHAR(35)) From JSON subselect opaque_mysql_type_time as CHAR(35)) "23:24:25.000000" select 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'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='opaque_mysql_type_datetime') as CHAR(35)) From JSON subselect opaque_mysql_type_datetime as CHAR(35)) "2015-01-15 23:24:25.000000" select 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'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='opaque_mysql_type_geom') as CHAR(35)) From JSON subselect opaque_mysql_type_geom as CHAR(35)) {"type": "Point", "coordinates": [1 Warnings: Warning 1292 Truncated incorrect CHAR(35) value: '{"type": "Point", "coordinates": [1, 1]}' select 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'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='opaque_mysql_type_bit') as CHAR(35)) From JSON subselect opaque_mysql_type_bit as CHAR(35)) "base64:type16:yv4=" select 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'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='opaque_mysql_type_year') as CHAR(35)) From JSON subselect opaque_mysql_type_year as CHAR(35)) "base64:type13:MTk5Mg==" select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_year'; concat('From JSON subselect ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON subselect opaque_mysql_type_year as CHAR(35)) "base64:type13:MTk5Mg==" select 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'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='opaque_mysql_type_blob') as CHAR(35)) From JSON subselect opaque_mysql_type_blob as CHAR(35)) "base64:type252:yv66vg==" select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_longblob'; concat('From JSON subselect ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON subselect opaque_mysql_type_longblob as CHAR(35)) "base64:type251:yv66vg==" select 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'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='opaque_mysql_type_mediumblob') as CHAR(35)) From JSON subselect opaque_mysql_type_mediumblob as CHAR(35)) "base64:type250:yv66vg==" select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON subselect ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON subselect opaque_mysql_type_tinyblob as CHAR(35)) "base64:type249:yv66vg==" select 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'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='opaque_mysql_type_varbinary') as CHAR(35)) From JSON subselect opaque_mysql_type_varbinary as CHAR(35)) NULL select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_binary'; concat('From JSON subselect ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON subselect opaque_mysql_type_binary as CHAR(35)) NULL select 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'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='opaque_mysql_type_varchar') as CHAR(35)) From JSON subselect opaque_mysql_type_varchar as CHAR(35)) "base64:type15:Zm9v" select concat('From JSON subselect ',c, ' as CHAR(35))'), cast(j as CHAR(35)) from t where c='opaque_mysql_type_string'; concat('From JSON subselect ',c, ' as CHAR(35))') cast(j as CHAR(35)) From JSON subselect opaque_mysql_type_string as CHAR(35)) NULL select 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'; concat('From JSON subselect ',c, ' as CHAR(35))') cast((select j from t where c='opaque_mysql_type_var_string') as CHAR(35)) From JSON subselect opaque_mysql_type_var_string as CHAR(35)) NULL select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='null') as DATE) from t where c='null'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='null') as DATE) From JSON subselect null as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='bool'; concat('From JSON subselect ',c, ' as DATE') cast(j as DATE) From JSON subselect bool as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2 select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='uint') as DATE) from t where c='uint'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='uint') as DATE) From JSON subselect uint as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='int'; concat('From JSON subselect ',c, ' as DATE') cast(j as DATE) From JSON subselect int as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4 select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='double') as DATE) from t where c='double'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='double') as DATE) From JSON subselect double as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='stringany'; concat('From JSON subselect ',c, ' as DATE') cast(j as DATE) From JSON subselect stringany as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6 select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='stringint') as DATE) from t where c='stringint'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='stringint') as DATE) From JSON subselect stringint as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='stringdecimal'; concat('From JSON subselect ',c, ' as DATE') cast(j as DATE) From JSON subselect stringdecimal as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8 select concat('From JSON subselect ',c, ' as DATE'), cast((select j from t where c='object') as DATE) from t where c='object'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='object') as DATE) From JSON subselect object as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='array'; concat('From JSON subselect ',c, ' as DATE') cast(j as DATE) From JSON subselect array as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10 select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_decimal') as DATE) From JSON subselect opaque_mysql_type_decimal as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_set'; concat('From JSON subselect ',c, ' as DATE') cast(j as DATE) From JSON subselect opaque_mysql_type_set as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12 select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_enum') as DATE) From JSON subselect opaque_mysql_type_enum as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_date'; concat('From JSON subselect ',c, ' as DATE') cast(j as DATE) From JSON subselect opaque_mysql_type_date as DATE 2015-01-15 select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_time') as DATE) From JSON subselect opaque_mysql_type_time as DATE --DATE-- select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_datetime'; concat('From JSON subselect ',c, ' as DATE') cast(j as DATE) From JSON subselect opaque_mysql_type_datetime as DATE 2015-01-15 select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_geom') as DATE) From JSON subselect opaque_mysql_type_geom as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATE'), cast(j as DATE) from t where c='opaque_mysql_type_bit'; concat('From JSON subselect ',c, ' as DATE') cast(j as DATE) From JSON subselect opaque_mysql_type_bit as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18 select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_year') as DATE) From JSON subselect opaque_mysql_type_year as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_year') as DATE) From JSON subselect opaque_mysql_type_year as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_blob') as DATE) From JSON subselect opaque_mysql_type_blob as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_longblob') as DATE) From JSON subselect opaque_mysql_type_longblob as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_mediumblob') as DATE) From JSON subselect opaque_mysql_type_mediumblob as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_tinyblob') as DATE) From JSON subselect opaque_mysql_type_tinyblob as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_varbinary') as DATE) From JSON subselect opaque_mysql_type_varbinary as DATE NULL select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_binary') as DATE) From JSON subselect opaque_mysql_type_binary as DATE NULL select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_varchar') as DATE) From JSON subselect opaque_mysql_type_varchar as DATE NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_string') as DATE) From JSON subselect opaque_mysql_type_string as DATE NULL select 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'; concat('From JSON subselect ',c, ' as DATE') cast((select j from t where c='opaque_mysql_type_var_string') as DATE) From JSON subselect opaque_mysql_type_var_string as DATE NULL select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='null') as DATETIME) from t where c='null'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='null') as DATETIME) From JSON subselect null as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='bool') as DATETIME) from t where c='bool'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='bool') as DATETIME) From JSON subselect bool as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='uint') as DATETIME) from t where c='uint'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='uint') as DATETIME) From JSON subselect uint as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='int') as DATETIME) from t where c='int'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='int') as DATETIME) From JSON subselect int as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='double') as DATETIME) from t where c='double'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='double') as DATETIME) From JSON subselect double as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='stringany') as DATETIME) from t where c='stringany'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='stringany') as DATETIME) From JSON subselect stringany as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='stringint') as DATETIME) from t where c='stringint'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='stringint') as DATETIME) From JSON subselect stringint as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='stringdecimal') as DATETIME) from t where c='stringdecimal'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='stringdecimal') as DATETIME) From JSON subselect stringdecimal as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='object') as DATETIME) from t where c='object'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='object') as DATETIME) From JSON subselect object as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATETIME'), cast((select j from t where c='array') as DATETIME) from t where c='array'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='array') as DATETIME) From JSON subselect array as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select 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'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='opaque_mysql_type_decimal') as DATETIME) From JSON subselect opaque_mysql_type_decimal as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select 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'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='opaque_mysql_type_set') as DATETIME) From JSON subselect opaque_mysql_type_set as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select 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'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='opaque_mysql_type_enum') as DATETIME) From JSON subselect opaque_mysql_type_enum as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select 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'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='opaque_mysql_type_date') as DATETIME) From JSON subselect opaque_mysql_type_date as DATETIME 2015-01-15 00:00:00 select 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'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='opaque_mysql_type_time') as DATETIME) From JSON subselect opaque_mysql_type_time as DATETIME --DATE-- 23:24:25 select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_datetime'; concat('From JSON subselect ',c, ' as DATETIME') cast(j as DATETIME) From JSON subselect opaque_mysql_type_datetime as DATETIME 2015-01-15 23:24:25 select 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'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='opaque_mysql_type_geom') as DATETIME) From JSON subselect opaque_mysql_type_geom as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_bit'; concat('From JSON subselect ',c, ' as DATETIME') cast(j as DATETIME) From JSON subselect opaque_mysql_type_bit as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18 select 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'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='opaque_mysql_type_year') as DATETIME) From JSON subselect opaque_mysql_type_year as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_year'; concat('From JSON subselect ',c, ' as DATETIME') cast(j as DATETIME) From JSON subselect opaque_mysql_type_year as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19 select 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'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='opaque_mysql_type_blob') as DATETIME) From JSON subselect opaque_mysql_type_blob as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_longblob'; concat('From JSON subselect ',c, ' as DATETIME') cast(j as DATETIME) From JSON subselect opaque_mysql_type_longblob as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21 select 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'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='opaque_mysql_type_mediumblob') as DATETIME) From JSON subselect opaque_mysql_type_mediumblob as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON subselect ',c, ' as DATETIME') cast(j as DATETIME) From JSON subselect opaque_mysql_type_tinyblob as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23 select 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'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='opaque_mysql_type_varbinary') as DATETIME) From JSON subselect opaque_mysql_type_varbinary as DATETIME NULL select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_binary'; concat('From JSON subselect ',c, ' as DATETIME') cast(j as DATETIME) From JSON subselect opaque_mysql_type_binary as DATETIME NULL select 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'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='opaque_mysql_type_varchar') as DATETIME) From JSON subselect opaque_mysql_type_varchar as DATETIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as DATETIME'), cast(j as DATETIME) from t where c='opaque_mysql_type_string'; concat('From JSON subselect ',c, ' as DATETIME') cast(j as DATETIME) From JSON subselect opaque_mysql_type_string as DATETIME NULL select 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'; concat('From JSON subselect ',c, ' as DATETIME') cast((select j from t where c='opaque_mysql_type_var_string') as DATETIME) From JSON subselect opaque_mysql_type_var_string as DATETIME NULL select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='null') as TIME) from t where c='null'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='null') as TIME) From JSON subselect null as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='bool'; concat('From JSON subselect ',c, ' as TIME') cast(j as TIME) From JSON subselect bool as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 2 select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='uint') as TIME) from t where c='uint'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='uint') as TIME) From JSON subselect uint as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='int'; concat('From JSON subselect ',c, ' as TIME') cast(j as TIME) From JSON subselect int as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 4 select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='double') as TIME) from t where c='double'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='double') as TIME) From JSON subselect double as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='stringany'; concat('From JSON subselect ',c, ' as TIME') cast(j as TIME) From JSON subselect stringany as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 6 select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='stringint') as TIME) from t where c='stringint'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='stringint') as TIME) From JSON subselect stringint as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='stringdecimal'; concat('From JSON subselect ',c, ' as TIME') cast(j as TIME) From JSON subselect stringdecimal as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 8 select concat('From JSON subselect ',c, ' as TIME'), cast((select j from t where c='object') as TIME) from t where c='object'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='object') as TIME) From JSON subselect object as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='array'; concat('From JSON subselect ',c, ' as TIME') cast(j as TIME) From JSON subselect array as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 10 select 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'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='opaque_mysql_type_decimal') as TIME) From JSON subselect opaque_mysql_type_decimal as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_set'; concat('From JSON subselect ',c, ' as TIME') cast(j as TIME) From JSON subselect opaque_mysql_type_set as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 12 select 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'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='opaque_mysql_type_enum') as TIME) From JSON subselect opaque_mysql_type_enum as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_date'; concat('From JSON subselect ',c, ' as TIME') cast(j as TIME) From JSON subselect opaque_mysql_type_date as TIME 00:00:00 select 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'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='opaque_mysql_type_time') as TIME) From JSON subselect opaque_mysql_type_time as TIME 23:24:25 select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_datetime'; concat('From JSON subselect ',c, ' as TIME') cast(j as TIME) From JSON subselect opaque_mysql_type_datetime as TIME 23:24:25 select 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'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='opaque_mysql_type_geom') as TIME) From JSON subselect opaque_mysql_type_geom as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_bit'; concat('From JSON subselect ',c, ' as TIME') cast(j as TIME) From JSON subselect opaque_mysql_type_bit as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 18 select 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'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='opaque_mysql_type_year') as TIME) From JSON subselect opaque_mysql_type_year as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_year'; concat('From JSON subselect ',c, ' as TIME') cast(j as TIME) From JSON subselect opaque_mysql_type_year as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 19 select 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'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='opaque_mysql_type_blob') as TIME) From JSON subselect opaque_mysql_type_blob as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_longblob'; concat('From JSON subselect ',c, ' as TIME') cast(j as TIME) From JSON subselect opaque_mysql_type_longblob as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 21 select 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'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='opaque_mysql_type_mediumblob') as TIME) From JSON subselect opaque_mysql_type_mediumblob as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON subselect ',c, ' as TIME') cast(j as TIME) From JSON subselect opaque_mysql_type_tinyblob as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 23 select 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'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='opaque_mysql_type_varbinary') as TIME) From JSON subselect opaque_mysql_type_varbinary as TIME NULL select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_binary'; concat('From JSON subselect ',c, ' as TIME') cast(j as TIME) From JSON subselect opaque_mysql_type_binary as TIME NULL select 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'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='opaque_mysql_type_varchar') as TIME) From JSON subselect opaque_mysql_type_varchar as TIME NULL Warnings: Warning 3156 Invalid JSON value for CAST to DATE/TIME/DATETIME/TIMESTAMP from column j at row 29 select concat('From JSON subselect ',c, ' as TIME'), cast(j as TIME) from t where c='opaque_mysql_type_string'; concat('From JSON subselect ',c, ' as TIME') cast(j as TIME) From JSON subselect opaque_mysql_type_string as TIME NULL select 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'; concat('From JSON subselect ',c, ' as TIME') cast((select j from t where c='opaque_mysql_type_var_string') as TIME) From JSON subselect opaque_mysql_type_var_string as TIME NULL select 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'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast((select j from t where c='null') as DECIMAL(5,2)) From JSON subselect null as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 29 select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='bool'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON subselect bool as DECIMAL(5,2) 1.00 select 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'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast((select j from t where c='uint') as DECIMAL(5,2)) From JSON subselect uint as DECIMAL(5,2) 12.00 select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='int'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON subselect int as DECIMAL(5,2) 12.00 select 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'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast((select j from t where c='double') as DECIMAL(5,2)) From JSON subselect double as DECIMAL(5,2) 3.14 select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='stringany'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON subselect stringany as DECIMAL(5,2) 0.00 Warnings: Warning 1366 Incorrect DECIMAL value: '0' for column '' at row -1 Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 6 select 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'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast((select j from t where c='stringint') as DECIMAL(5,2)) From JSON subselect stringint as DECIMAL(5,2) 1.00 select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='stringdecimal'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON subselect stringdecimal as DECIMAL(5,2) 3.14 select 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'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast((select j from t where c='object') as DECIMAL(5,2)) From JSON subselect object as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 29 select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='array'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON subselect array as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 10 select 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'; 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 JSON subselect opaque_mysql_type_decimal as DECIMAL(5,2) 3.14 select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_set'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON subselect opaque_mysql_type_set as DECIMAL(5,2) 0.00 Warnings: Warning 1366 Incorrect DECIMAL value: '0' for column '' at row -1 Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 12 select 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'; 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 JSON subselect opaque_mysql_type_enum as DECIMAL(5,2) 0.00 Warnings: Warning 1366 Incorrect DECIMAL value: '0' for column '' at row -1 Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 29 select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_date'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON subselect opaque_mysql_type_date as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 14 select 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'; 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 JSON subselect opaque_mysql_type_time as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 29 select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_datetime'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON subselect opaque_mysql_type_datetime as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 16 select 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'; 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 JSON subselect opaque_mysql_type_geom as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 29 select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_bit'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON subselect opaque_mysql_type_bit as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 18 select 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'; 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 JSON subselect opaque_mysql_type_year as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 29 select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_year'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON subselect opaque_mysql_type_year as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 19 select 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'; 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 JSON subselect opaque_mysql_type_blob as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 29 select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_longblob'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON subselect opaque_mysql_type_longblob as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 21 select 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'; 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 JSON subselect opaque_mysql_type_mediumblob as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 29 select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON subselect opaque_mysql_type_tinyblob as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 23 select 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'; 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 JSON subselect opaque_mysql_type_varbinary as DECIMAL(5,2) NULL select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_binary'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON subselect opaque_mysql_type_binary as DECIMAL(5,2) NULL select 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'; 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 JSON subselect opaque_mysql_type_varchar as DECIMAL(5,2) 0.00 Warnings: Warning 3156 Invalid JSON value for CAST to DECIMAL from column j at row 29 select concat('From JSON subselect ',c, ' as DECIMAL(5,2)'), cast(j as DECIMAL(5,2)) from t where c='opaque_mysql_type_string'; concat('From JSON subselect ',c, ' as DECIMAL(5,2)') cast(j as DECIMAL(5,2)) From JSON subselect opaque_mysql_type_string as DECIMAL(5,2) NULL select 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'; 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 JSON subselect opaque_mysql_type_var_string as DECIMAL(5,2) NULL select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='null') as UNSIGNED) from t where c='null'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='null') as UNSIGNED) From JSON subselect null as UNSIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: 'null' select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='bool'; concat('From JSON subselect ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON subselect bool as UNSIGNED 1 select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='uint') as UNSIGNED) from t where c='uint'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='uint') as UNSIGNED) From JSON subselect uint as UNSIGNED 12 select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='int'; concat('From JSON subselect ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON subselect int as UNSIGNED 12 select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='double') as UNSIGNED) from t where c='double'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='double') as UNSIGNED) From JSON subselect double as UNSIGNED 3 Warnings: Warning 1292 Truncated incorrect INTEGER value: '3.14' select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='stringany'; concat('From JSON subselect ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON subselect stringany as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 6 select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='stringint') as UNSIGNED) from t where c='stringint'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='stringint') as UNSIGNED) From JSON subselect stringint as UNSIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '"1"' select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='stringdecimal'; concat('From JSON subselect ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON subselect stringdecimal as UNSIGNED 3 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 8 select concat('From JSON subselect ',c, ' as UNSIGNED'), cast((select j from t where c='object') as UNSIGNED) from t where c='object'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='object') as UNSIGNED) From JSON subselect object as UNSIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '{"a": 3}' select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='array'; concat('From JSON subselect ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON subselect array as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 10 select 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'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='opaque_mysql_type_decimal') as UNSIGNED) From JSON subselect opaque_mysql_type_decimal as UNSIGNED 3 Warnings: Warning 1292 Truncated incorrect INTEGER value: '3.14' select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_set'; concat('From JSON subselect ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON subselect opaque_mysql_type_set as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 12 select 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'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='opaque_mysql_type_enum') as UNSIGNED) From JSON subselect opaque_mysql_type_enum as UNSIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '"b"' select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_date'; concat('From JSON subselect ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON subselect opaque_mysql_type_date as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 14 select 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'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='opaque_mysql_type_time') as UNSIGNED) From JSON subselect opaque_mysql_type_time as UNSIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '"23:24:25.000000"' select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_datetime'; concat('From JSON subselect ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON subselect opaque_mysql_type_datetime as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 16 select 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'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='opaque_mysql_type_geom') as UNSIGNED) From JSON subselect opaque_mysql_type_geom as UNSIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '{"type": "Point", "coordinates": [1, 1]}' select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_bit'; concat('From JSON subselect ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON subselect opaque_mysql_type_bit as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 18 select 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'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='opaque_mysql_type_year') as UNSIGNED) From JSON subselect opaque_mysql_type_year as UNSIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '"base64:type13:MTk5Mg=="' select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_year'; concat('From JSON subselect ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON subselect opaque_mysql_type_year as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 19 select 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'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='opaque_mysql_type_blob') as UNSIGNED) From JSON subselect opaque_mysql_type_blob as UNSIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '"base64:type252:yv66vg=="' select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_longblob'; concat('From JSON subselect ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON subselect opaque_mysql_type_longblob as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 21 select 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'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='opaque_mysql_type_mediumblob') as UNSIGNED) From JSON subselect opaque_mysql_type_mediumblob as UNSIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '"base64:type250:yv66vg=="' select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON subselect ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON subselect opaque_mysql_type_tinyblob as UNSIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 23 select 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'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='opaque_mysql_type_varbinary') as UNSIGNED) From JSON subselect opaque_mysql_type_varbinary as UNSIGNED NULL select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_binary'; concat('From JSON subselect ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON subselect opaque_mysql_type_binary as UNSIGNED NULL select 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'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='opaque_mysql_type_varchar') as UNSIGNED) From JSON subselect opaque_mysql_type_varchar as UNSIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '"base64:type15:Zm9v"' select concat('From JSON subselect ',c, ' as UNSIGNED'), cast(j as UNSIGNED) from t where c='opaque_mysql_type_string'; concat('From JSON subselect ',c, ' as UNSIGNED') cast(j as UNSIGNED) From JSON subselect opaque_mysql_type_string as UNSIGNED NULL select 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'; concat('From JSON subselect ',c, ' as UNSIGNED') cast((select j from t where c='opaque_mysql_type_var_string') as UNSIGNED) From JSON subselect opaque_mysql_type_var_string as UNSIGNED NULL select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='null') as SIGNED) from t where c='null'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='null') as SIGNED) From JSON subselect null as SIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: 'null' select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='bool'; concat('From JSON subselect ',c, ' as SIGNED') cast(j as SIGNED) From JSON subselect bool as SIGNED 1 select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='uint') as SIGNED) from t where c='uint'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='uint') as SIGNED) From JSON subselect uint as SIGNED 12 select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='int'; concat('From JSON subselect ',c, ' as SIGNED') cast(j as SIGNED) From JSON subselect int as SIGNED 12 select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='double') as SIGNED) from t where c='double'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='double') as SIGNED) From JSON subselect double as SIGNED 3 Warnings: Warning 1292 Truncated incorrect INTEGER value: '3.14' select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='stringany'; concat('From JSON subselect ',c, ' as SIGNED') cast(j as SIGNED) From JSON subselect stringany as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 6 select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='stringint') as SIGNED) from t where c='stringint'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='stringint') as SIGNED) From JSON subselect stringint as SIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '"1"' select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='stringdecimal'; concat('From JSON subselect ',c, ' as SIGNED') cast(j as SIGNED) From JSON subselect stringdecimal as SIGNED 3 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 8 select concat('From JSON subselect ',c, ' as SIGNED'), cast((select j from t where c='object') as SIGNED) from t where c='object'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='object') as SIGNED) From JSON subselect object as SIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '{"a": 3}' select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='array'; concat('From JSON subselect ',c, ' as SIGNED') cast(j as SIGNED) From JSON subselect array as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 10 select 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'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='opaque_mysql_type_decimal') as SIGNED) From JSON subselect opaque_mysql_type_decimal as SIGNED 3 Warnings: Warning 1292 Truncated incorrect INTEGER value: '3.14' select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_set'; concat('From JSON subselect ',c, ' as SIGNED') cast(j as SIGNED) From JSON subselect opaque_mysql_type_set as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 12 select 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'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='opaque_mysql_type_enum') as SIGNED) From JSON subselect opaque_mysql_type_enum as SIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '"b"' select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_date'; concat('From JSON subselect ',c, ' as SIGNED') cast(j as SIGNED) From JSON subselect opaque_mysql_type_date as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 14 select 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'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='opaque_mysql_type_time') as SIGNED) From JSON subselect opaque_mysql_type_time as SIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '"23:24:25.000000"' select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_datetime'; concat('From JSON subselect ',c, ' as SIGNED') cast(j as SIGNED) From JSON subselect opaque_mysql_type_datetime as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 16 select 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'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='opaque_mysql_type_geom') as SIGNED) From JSON subselect opaque_mysql_type_geom as SIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '{"type": "Point", "coordinates": [1, 1]}' select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_bit'; concat('From JSON subselect ',c, ' as SIGNED') cast(j as SIGNED) From JSON subselect opaque_mysql_type_bit as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 18 select 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'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='opaque_mysql_type_year') as SIGNED) From JSON subselect opaque_mysql_type_year as SIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '"base64:type13:MTk5Mg=="' select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_year'; concat('From JSON subselect ',c, ' as SIGNED') cast(j as SIGNED) From JSON subselect opaque_mysql_type_year as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 19 select 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'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='opaque_mysql_type_blob') as SIGNED) From JSON subselect opaque_mysql_type_blob as SIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '"base64:type252:yv66vg=="' select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_longblob'; concat('From JSON subselect ',c, ' as SIGNED') cast(j as SIGNED) From JSON subselect opaque_mysql_type_longblob as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 21 select 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'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='opaque_mysql_type_mediumblob') as SIGNED) From JSON subselect opaque_mysql_type_mediumblob as SIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '"base64:type250:yv66vg=="' select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_tinyblob'; concat('From JSON subselect ',c, ' as SIGNED') cast(j as SIGNED) From JSON subselect opaque_mysql_type_tinyblob as SIGNED 0 Warnings: Warning 3156 Invalid JSON value for CAST to INTEGER from column j at row 23 select 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'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='opaque_mysql_type_varbinary') as SIGNED) From JSON subselect opaque_mysql_type_varbinary as SIGNED NULL select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_binary'; concat('From JSON subselect ',c, ' as SIGNED') cast(j as SIGNED) From JSON subselect opaque_mysql_type_binary as SIGNED NULL select 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'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='opaque_mysql_type_varchar') as SIGNED) From JSON subselect opaque_mysql_type_varchar as SIGNED 0 Warnings: Warning 1292 Truncated incorrect INTEGER value: '"base64:type15:Zm9v"' select concat('From JSON subselect ',c, ' as SIGNED'), cast(j as SIGNED) from t where c='opaque_mysql_type_string'; concat('From JSON subselect ',c, ' as SIGNED') cast(j as SIGNED) From JSON subselect opaque_mysql_type_string as SIGNED NULL select 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'; concat('From JSON subselect ',c, ' as SIGNED') cast((select j from t where c='opaque_mysql_type_var_string') as SIGNED) From JSON subselect opaque_mysql_type_var_string as SIGNED NULL Warnings: Note 1051 Unknown table 'test.comparison_weight' "Test for JSON vs JSON" "" "" side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Comparator <" "==============" side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Comparator >=" "==============" side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Comparator <=" "==============" side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Comparator =" "==============" side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Comparator !=" "==============" side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Comparator <>" "==============" side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Comparator <=>" "==============" side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Test for SQL vs JSON" "Comparator =" "" "Testcase for Tinyint" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Boolean" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for small Int Signed" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Signed Medium Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for unsigned Medium Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 "Testcase for signed Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Unsigned Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 "Testcase for Big Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Big Int Unsigned" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 "Testcase for Decimal" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12.00 1 DECIMAL INTEGER 2 2 0 1 2nd Level 3.14 1 DECIMAL INTEGER 2 2 0 1 2nd Level 1.00 12 DECIMAL INTEGER 2 2 0 1 2nd Level 3.14 12 DECIMAL INTEGER 2 2 0 1 2nd Level 1.00 3 DECIMAL INTEGER 2 2 0 1 2nd Level 12.00 3 DECIMAL INTEGER 2 2 0 1 2nd Level 3.14 3 DECIMAL INTEGER 2 2 0 1 2nd Level 1.00 3.14 DECIMAL DECIMAL 2 2 0 1 2nd Level 12.00 3.14 DECIMAL DECIMAL 2 2 0 1 "Testcase for Double" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 DOUBLE INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 1 12 DOUBLE INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 1 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 DOUBLE INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 1 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level 12 3.14 DOUBLE DECIMAL 2 2 0 1 "Testcase for CHAR" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for VARCHAR" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Binary(255)" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Variable Binary" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for TinyBlob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for TinyText" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Medium Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Medium Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Long Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Long Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Enum" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Set" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Test for SQL vs JSON" "Comparator <" "" "Testcase for Tinyint" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 INTEGER INTEGER 2 2 1 0 2nd Level 3 12 INTEGER INTEGER 2 2 1 0 2nd Level 1 3 INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for Boolean" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 INTEGER INTEGER 2 2 1 0 2nd Level 3 12 INTEGER INTEGER 2 2 1 0 2nd Level 1 3 INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for small Int Signed" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 INTEGER INTEGER 2 2 1 0 2nd Level 3 12 INTEGER INTEGER 2 2 1 0 2nd Level 1 3 INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for Signed Medium Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 INTEGER INTEGER 2 2 1 0 2nd Level 3 12 INTEGER INTEGER 2 2 1 0 2nd Level 1 3 INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for unsigned Medium Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 "Testcase for signed Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 INTEGER INTEGER 2 2 1 0 2nd Level 3 12 INTEGER INTEGER 2 2 1 0 2nd Level 1 3 INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for Unsigned Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 "Testcase for Big Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 INTEGER INTEGER 2 2 1 0 2nd Level 3 12 INTEGER INTEGER 2 2 1 0 2nd Level 1 3 INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for Big Int Unsigned" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 "Testcase for Decimal" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1.00 12 DECIMAL INTEGER 2 2 1 0 2nd Level 3.14 12 DECIMAL INTEGER 2 2 1 0 2nd Level 1.00 3 DECIMAL INTEGER 2 2 1 0 2nd Level 1.00 3.14 DECIMAL DECIMAL 2 2 1 0 "Testcase for Double" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 DOUBLE INTEGER 2 2 1 0 2nd Level 3.14 12 DOUBLE INTEGER 2 2 1 0 2nd Level 1 3 DOUBLE INTEGER 2 2 1 0 2nd Level 1 3.14 DOUBLE DECIMAL 2 2 1 0 "Testcase for CHAR" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 0 1 1st Level null 12 NULL INTEGER 1 2 0 1 1st Level null 3 NULL INTEGER 1 2 0 1 1st Level null 3.14 NULL DECIMAL 1 2 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 1 0 1st Level null "a" NULL STRING 1 3 0 1 2nd Level "a" "a" STRING STRING 3 3 1 0 2nd Level "1" "a" STRING STRING 3 3 1 0 2nd Level "3.14" "a" STRING STRING 3 3 1 0 1st Level [1, 2] "a" ARRAY STRING 5 3 1 0 2nd Level "b,c" "a" STRING STRING 3 3 1 0 2nd Level "b" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "a" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 1 0 1st Level null "1" NULL STRING 1 3 0 1 1st Level 12 "1" INTEGER STRING 2 3 0 1 1st Level 3.14 "1" DOUBLE STRING 2 3 0 1 2nd Level "a" "1" STRING STRING 3 3 1 0 2nd Level "1" "1" STRING STRING 3 3 1 0 2nd Level "3.14" "1" STRING STRING 3 3 1 0 2nd Level "b,c" "1" STRING STRING 3 3 1 0 2nd Level "b" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "1" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 1 0 1st Level null "3.14" NULL STRING 1 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 0 1 2nd Level "a" "3.14" STRING STRING 3 3 1 0 2nd Level "1" "3.14" STRING STRING 3 3 1 0 2nd Level "3.14" "3.14" STRING STRING 3 3 1 0 2nd Level "b,c" "3.14" STRING STRING 3 3 1 0 2nd Level "b" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 1 0 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 1 0 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 1 0 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 1 0 1st Level true [1, 2] BOOLEAN ARRAY 6 5 1 0 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 1 0 1st Level null "b,c" NULL STRING 1 3 0 1 2nd Level "a" "b,c" STRING STRING 3 3 1 0 2nd Level "1" "b,c" STRING STRING 3 3 1 0 2nd Level "3.14" "b,c" STRING STRING 3 3 1 0 1st Level [1, 2] "b,c" ARRAY STRING 5 3 1 0 2nd Level "b,c" "b,c" STRING STRING 3 3 1 0 2nd Level "b" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 1 0 1st Level null "b" NULL STRING 1 3 0 1 2nd Level "a" "b" STRING STRING 3 3 1 0 2nd Level "1" "b" STRING STRING 3 3 1 0 2nd Level "3.14" "b" STRING STRING 3 3 1 0 1st Level [1, 2] "b" ARRAY STRING 5 3 1 0 2nd Level "b,c" "b" STRING STRING 3 3 1 0 2nd Level "b" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 1 0 1st Level null "2015-01-15" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 1 0 1st Level null "23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 1 0 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 1 0 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 1st Level null "base64:type16:yv4=" NULL STRING 1 3 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 1 0 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 1 0 "Testcase for VARCHAR" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 0 1 1st Level null 12 NULL INTEGER 1 2 0 1 1st Level null 3 NULL INTEGER 1 2 0 1 1st Level null 3.14 NULL DECIMAL 1 2 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 1 0 1st Level null "a" NULL STRING 1 3 0 1 2nd Level "a" "a" STRING STRING 3 3 1 0 2nd Level "1" "a" STRING STRING 3 3 1 0 2nd Level "3.14" "a" STRING STRING 3 3 1 0 1st Level [1, 2] "a" ARRAY STRING 5 3 1 0 2nd Level "b,c" "a" STRING STRING 3 3 1 0 2nd Level "b" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "a" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 1 0 1st Level null "1" NULL STRING 1 3 0 1 1st Level 12 "1" INTEGER STRING 2 3 0 1 1st Level 3.14 "1" DOUBLE STRING 2 3 0 1 2nd Level "a" "1" STRING STRING 3 3 1 0 2nd Level "1" "1" STRING STRING 3 3 1 0 2nd Level "3.14" "1" STRING STRING 3 3 1 0 2nd Level "b,c" "1" STRING STRING 3 3 1 0 2nd Level "b" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "1" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 1 0 1st Level null "3.14" NULL STRING 1 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 0 1 2nd Level "a" "3.14" STRING STRING 3 3 1 0 2nd Level "1" "3.14" STRING STRING 3 3 1 0 2nd Level "3.14" "3.14" STRING STRING 3 3 1 0 2nd Level "b,c" "3.14" STRING STRING 3 3 1 0 2nd Level "b" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 1 0 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 1 0 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 1 0 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 1 0 1st Level true [1, 2] BOOLEAN ARRAY 6 5 1 0 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 1 0 1st Level null "b,c" NULL STRING 1 3 0 1 2nd Level "a" "b,c" STRING STRING 3 3 1 0 2nd Level "1" "b,c" STRING STRING 3 3 1 0 2nd Level "3.14" "b,c" STRING STRING 3 3 1 0 1st Level [1, 2] "b,c" ARRAY STRING 5 3 1 0 2nd Level "b,c" "b,c" STRING STRING 3 3 1 0 2nd Level "b" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 1 0 1st Level null "b" NULL STRING 1 3 0 1 2nd Level "a" "b" STRING STRING 3 3 1 0 2nd Level "1" "b" STRING STRING 3 3 1 0 2nd Level "3.14" "b" STRING STRING 3 3 1 0 1st Level [1, 2] "b" ARRAY STRING 5 3 1 0 2nd Level "b,c" "b" STRING STRING 3 3 1 0 2nd Level "b" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 1 0 1st Level null "2015-01-15" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 1 0 1st Level null "23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 1 0 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 1 0 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 1st Level null "base64:type16:yv4=" NULL STRING 1 3 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 1 0 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 1 0 "Testcase for Binary(255)" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Variable Binary" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for TinyBlob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for TinyText" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 0 1 1st Level null 12 NULL INTEGER 1 2 0 1 1st Level null 3 NULL INTEGER 1 2 0 1 1st Level null 3.14 NULL DECIMAL 1 2 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 1 0 1st Level null "a" NULL STRING 1 3 0 1 2nd Level "a" "a" STRING STRING 3 3 1 0 2nd Level "1" "a" STRING STRING 3 3 1 0 2nd Level "3.14" "a" STRING STRING 3 3 1 0 1st Level [1, 2] "a" ARRAY STRING 5 3 1 0 2nd Level "b,c" "a" STRING STRING 3 3 1 0 2nd Level "b" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "a" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 1 0 1st Level null "1" NULL STRING 1 3 0 1 1st Level 12 "1" INTEGER STRING 2 3 0 1 1st Level 3.14 "1" DOUBLE STRING 2 3 0 1 2nd Level "a" "1" STRING STRING 3 3 1 0 2nd Level "1" "1" STRING STRING 3 3 1 0 2nd Level "3.14" "1" STRING STRING 3 3 1 0 2nd Level "b,c" "1" STRING STRING 3 3 1 0 2nd Level "b" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "1" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 1 0 1st Level null "3.14" NULL STRING 1 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 0 1 2nd Level "a" "3.14" STRING STRING 3 3 1 0 2nd Level "1" "3.14" STRING STRING 3 3 1 0 2nd Level "3.14" "3.14" STRING STRING 3 3 1 0 2nd Level "b,c" "3.14" STRING STRING 3 3 1 0 2nd Level "b" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 1 0 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 1 0 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 1 0 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 1 0 1st Level true [1, 2] BOOLEAN ARRAY 6 5 1 0 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 1 0 1st Level null "b,c" NULL STRING 1 3 0 1 2nd Level "a" "b,c" STRING STRING 3 3 1 0 2nd Level "1" "b,c" STRING STRING 3 3 1 0 2nd Level "3.14" "b,c" STRING STRING 3 3 1 0 1st Level [1, 2] "b,c" ARRAY STRING 5 3 1 0 2nd Level "b,c" "b,c" STRING STRING 3 3 1 0 2nd Level "b" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 1 0 1st Level null "b" NULL STRING 1 3 0 1 2nd Level "a" "b" STRING STRING 3 3 1 0 2nd Level "1" "b" STRING STRING 3 3 1 0 2nd Level "3.14" "b" STRING STRING 3 3 1 0 1st Level [1, 2] "b" ARRAY STRING 5 3 1 0 2nd Level "b,c" "b" STRING STRING 3 3 1 0 2nd Level "b" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 1 0 1st Level null "2015-01-15" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 1 0 1st Level null "23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 1 0 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 1 0 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 1st Level null "base64:type16:yv4=" NULL STRING 1 3 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 1 0 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 1 0 "Testcase for Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 0 1 1st Level null 12 NULL INTEGER 1 2 0 1 1st Level null 3 NULL INTEGER 1 2 0 1 1st Level null 3.14 NULL DECIMAL 1 2 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 1 0 1st Level null "a" NULL STRING 1 3 0 1 2nd Level "a" "a" STRING STRING 3 3 1 0 2nd Level "1" "a" STRING STRING 3 3 1 0 2nd Level "3.14" "a" STRING STRING 3 3 1 0 1st Level [1, 2] "a" ARRAY STRING 5 3 1 0 2nd Level "b,c" "a" STRING STRING 3 3 1 0 2nd Level "b" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "a" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 1 0 1st Level null "1" NULL STRING 1 3 0 1 1st Level 12 "1" INTEGER STRING 2 3 0 1 1st Level 3.14 "1" DOUBLE STRING 2 3 0 1 2nd Level "a" "1" STRING STRING 3 3 1 0 2nd Level "1" "1" STRING STRING 3 3 1 0 2nd Level "3.14" "1" STRING STRING 3 3 1 0 2nd Level "b,c" "1" STRING STRING 3 3 1 0 2nd Level "b" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "1" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 1 0 1st Level null "3.14" NULL STRING 1 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 0 1 2nd Level "a" "3.14" STRING STRING 3 3 1 0 2nd Level "1" "3.14" STRING STRING 3 3 1 0 2nd Level "3.14" "3.14" STRING STRING 3 3 1 0 2nd Level "b,c" "3.14" STRING STRING 3 3 1 0 2nd Level "b" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 1 0 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 1 0 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 1 0 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 1 0 1st Level true [1, 2] BOOLEAN ARRAY 6 5 1 0 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 1 0 1st Level null "b,c" NULL STRING 1 3 0 1 2nd Level "a" "b,c" STRING STRING 3 3 1 0 2nd Level "1" "b,c" STRING STRING 3 3 1 0 2nd Level "3.14" "b,c" STRING STRING 3 3 1 0 1st Level [1, 2] "b,c" ARRAY STRING 5 3 1 0 2nd Level "b,c" "b,c" STRING STRING 3 3 1 0 2nd Level "b" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 1 0 1st Level null "b" NULL STRING 1 3 0 1 2nd Level "a" "b" STRING STRING 3 3 1 0 2nd Level "1" "b" STRING STRING 3 3 1 0 2nd Level "3.14" "b" STRING STRING 3 3 1 0 1st Level [1, 2] "b" ARRAY STRING 5 3 1 0 2nd Level "b,c" "b" STRING STRING 3 3 1 0 2nd Level "b" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 1 0 1st Level null "2015-01-15" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 1 0 1st Level null "23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 1 0 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 1 0 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 1st Level null "base64:type16:yv4=" NULL STRING 1 3 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 1 0 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 1 0 "Testcase for Medium Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Medium Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 0 1 1st Level null 12 NULL INTEGER 1 2 0 1 1st Level null 3 NULL INTEGER 1 2 0 1 1st Level null 3.14 NULL DECIMAL 1 2 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 1 0 1st Level null "a" NULL STRING 1 3 0 1 2nd Level "a" "a" STRING STRING 3 3 1 0 2nd Level "1" "a" STRING STRING 3 3 1 0 2nd Level "3.14" "a" STRING STRING 3 3 1 0 1st Level [1, 2] "a" ARRAY STRING 5 3 1 0 2nd Level "b,c" "a" STRING STRING 3 3 1 0 2nd Level "b" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "a" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 1 0 1st Level null "1" NULL STRING 1 3 0 1 1st Level 12 "1" INTEGER STRING 2 3 0 1 1st Level 3.14 "1" DOUBLE STRING 2 3 0 1 2nd Level "a" "1" STRING STRING 3 3 1 0 2nd Level "1" "1" STRING STRING 3 3 1 0 2nd Level "3.14" "1" STRING STRING 3 3 1 0 2nd Level "b,c" "1" STRING STRING 3 3 1 0 2nd Level "b" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "1" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 1 0 1st Level null "3.14" NULL STRING 1 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 0 1 2nd Level "a" "3.14" STRING STRING 3 3 1 0 2nd Level "1" "3.14" STRING STRING 3 3 1 0 2nd Level "3.14" "3.14" STRING STRING 3 3 1 0 2nd Level "b,c" "3.14" STRING STRING 3 3 1 0 2nd Level "b" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 1 0 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 1 0 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 1 0 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 1 0 1st Level true [1, 2] BOOLEAN ARRAY 6 5 1 0 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 1 0 1st Level null "b,c" NULL STRING 1 3 0 1 2nd Level "a" "b,c" STRING STRING 3 3 1 0 2nd Level "1" "b,c" STRING STRING 3 3 1 0 2nd Level "3.14" "b,c" STRING STRING 3 3 1 0 1st Level [1, 2] "b,c" ARRAY STRING 5 3 1 0 2nd Level "b,c" "b,c" STRING STRING 3 3 1 0 2nd Level "b" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 1 0 1st Level null "b" NULL STRING 1 3 0 1 2nd Level "a" "b" STRING STRING 3 3 1 0 2nd Level "1" "b" STRING STRING 3 3 1 0 2nd Level "3.14" "b" STRING STRING 3 3 1 0 1st Level [1, 2] "b" ARRAY STRING 5 3 1 0 2nd Level "b,c" "b" STRING STRING 3 3 1 0 2nd Level "b" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 1 0 1st Level null "2015-01-15" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 1 0 1st Level null "23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 1 0 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 1 0 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 1st Level null "base64:type16:yv4=" NULL STRING 1 3 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 1 0 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 1 0 "Testcase for Long Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Long Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 0 1 1st Level null 12 NULL INTEGER 1 2 0 1 1st Level null 3 NULL INTEGER 1 2 0 1 1st Level null 3.14 NULL DECIMAL 1 2 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 1 0 1st Level null "a" NULL STRING 1 3 0 1 2nd Level "a" "a" STRING STRING 3 3 1 0 2nd Level "1" "a" STRING STRING 3 3 1 0 2nd Level "3.14" "a" STRING STRING 3 3 1 0 1st Level [1, 2] "a" ARRAY STRING 5 3 1 0 2nd Level "b,c" "a" STRING STRING 3 3 1 0 2nd Level "b" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "a" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 1 0 1st Level null "1" NULL STRING 1 3 0 1 1st Level 12 "1" INTEGER STRING 2 3 0 1 1st Level 3.14 "1" DOUBLE STRING 2 3 0 1 2nd Level "a" "1" STRING STRING 3 3 1 0 2nd Level "1" "1" STRING STRING 3 3 1 0 2nd Level "3.14" "1" STRING STRING 3 3 1 0 2nd Level "b,c" "1" STRING STRING 3 3 1 0 2nd Level "b" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "1" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 1 0 1st Level null "3.14" NULL STRING 1 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 0 1 2nd Level "a" "3.14" STRING STRING 3 3 1 0 2nd Level "1" "3.14" STRING STRING 3 3 1 0 2nd Level "3.14" "3.14" STRING STRING 3 3 1 0 2nd Level "b,c" "3.14" STRING STRING 3 3 1 0 2nd Level "b" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 1 0 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 1 0 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 1 0 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 1 0 1st Level true [1, 2] BOOLEAN ARRAY 6 5 1 0 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 1 0 1st Level null "b,c" NULL STRING 1 3 0 1 2nd Level "a" "b,c" STRING STRING 3 3 1 0 2nd Level "1" "b,c" STRING STRING 3 3 1 0 2nd Level "3.14" "b,c" STRING STRING 3 3 1 0 1st Level [1, 2] "b,c" ARRAY STRING 5 3 1 0 2nd Level "b,c" "b,c" STRING STRING 3 3 1 0 2nd Level "b" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 1 0 1st Level null "b" NULL STRING 1 3 0 1 2nd Level "a" "b" STRING STRING 3 3 1 0 2nd Level "1" "b" STRING STRING 3 3 1 0 2nd Level "3.14" "b" STRING STRING 3 3 1 0 1st Level [1, 2] "b" ARRAY STRING 5 3 1 0 2nd Level "b,c" "b" STRING STRING 3 3 1 0 2nd Level "b" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 1 0 1st Level null "2015-01-15" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 1 0 1st Level null "23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 1 0 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 1 0 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 1st Level null "base64:type16:yv4=" NULL STRING 1 3 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 1 0 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 1 0 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 1 0 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 1 0 "Testcase for Enum" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Set" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Test for SQL vs JSON" "Comparator >" "" "Testcase for Tinyint" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3 1 INTEGER INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for Boolean" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3 1 INTEGER INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for small Int Signed" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3 1 INTEGER INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for Signed Medium Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3 1 INTEGER INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for unsigned Medium Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 "Testcase for signed Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3 1 INTEGER INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for Unsigned Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 "Testcase for Big Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3 1 INTEGER INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for Big Int Unsigned" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 "Testcase for Decimal" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12.00 1 DECIMAL INTEGER 2 2 1 0 2nd Level 3.14 1 DECIMAL INTEGER 2 2 1 0 2nd Level 12.00 3 DECIMAL INTEGER 2 2 1 0 2nd Level 3.14 3 DECIMAL INTEGER 2 2 1 0 2nd Level 12.00 3.14 DECIMAL DECIMAL 2 2 1 0 "Testcase for Double" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 DOUBLE INTEGER 2 2 1 0 2nd Level 3.14 1 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3 DOUBLE INTEGER 2 2 1 0 2nd Level 3.14 3 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3.14 DOUBLE DECIMAL 2 2 1 0 "Testcase for CHAR" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 1 0 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 1 DOUBLE INTEGER 2 2 1 0 1st Level null 12 NULL INTEGER 1 2 1 0 2nd Level 12 12 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 12 DOUBLE INTEGER 2 2 1 0 1st Level null 3 NULL INTEGER 1 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 3 DOUBLE INTEGER 2 2 1 0 1st Level null 3.14 NULL DECIMAL 1 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 1 0 2nd Level null null NULL NULL 1 1 1 0 1st Level null "a" NULL STRING 1 3 1 0 1st Level [1, 2] "a" ARRAY STRING 5 3 0 1 1st Level null "1" NULL STRING 1 3 1 0 1st Level 12 "1" INTEGER STRING 2 3 1 0 1st Level 3.14 "1" DOUBLE STRING 2 3 1 0 1st Level null "3.14" NULL STRING 1 3 1 0 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 0 1 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 0 1 1st Level true [1, 2] BOOLEAN ARRAY 6 5 0 1 1st Level null "b,c" NULL STRING 1 3 1 0 1st Level [1, 2] "b,c" ARRAY STRING 5 3 0 1 1st Level null "b" NULL STRING 1 3 1 0 1st Level [1, 2] "b" ARRAY STRING 5 3 0 1 1st Level null "2015-01-15" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 1 0 1st Level null "23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 1 0 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 1 0 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 0 1 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 0 1 1st Level null "base64:type16:yv4=" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 0 1 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 0 1 "Testcase for VARCHAR" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 1 0 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 1 DOUBLE INTEGER 2 2 1 0 1st Level null 12 NULL INTEGER 1 2 1 0 2nd Level 12 12 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 12 DOUBLE INTEGER 2 2 1 0 1st Level null 3 NULL INTEGER 1 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 3 DOUBLE INTEGER 2 2 1 0 1st Level null 3.14 NULL DECIMAL 1 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 1 0 2nd Level null null NULL NULL 1 1 1 0 1st Level null "a" NULL STRING 1 3 1 0 1st Level [1, 2] "a" ARRAY STRING 5 3 0 1 1st Level null "1" NULL STRING 1 3 1 0 1st Level 12 "1" INTEGER STRING 2 3 1 0 1st Level 3.14 "1" DOUBLE STRING 2 3 1 0 1st Level null "3.14" NULL STRING 1 3 1 0 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 0 1 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 0 1 1st Level true [1, 2] BOOLEAN ARRAY 6 5 0 1 1st Level null "b,c" NULL STRING 1 3 1 0 1st Level [1, 2] "b,c" ARRAY STRING 5 3 0 1 1st Level null "b" NULL STRING 1 3 1 0 1st Level [1, 2] "b" ARRAY STRING 5 3 0 1 1st Level null "2015-01-15" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 1 0 1st Level null "23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 1 0 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 1 0 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 0 1 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 0 1 1st Level null "base64:type16:yv4=" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 0 1 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 0 1 "Testcase for Binary(255)" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Variable Binary" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for TinyBlob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for TinyText" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 1 0 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 1 DOUBLE INTEGER 2 2 1 0 1st Level null 12 NULL INTEGER 1 2 1 0 2nd Level 12 12 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 12 DOUBLE INTEGER 2 2 1 0 1st Level null 3 NULL INTEGER 1 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 3 DOUBLE INTEGER 2 2 1 0 1st Level null 3.14 NULL DECIMAL 1 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 1 0 2nd Level null null NULL NULL 1 1 1 0 1st Level null "a" NULL STRING 1 3 1 0 1st Level [1, 2] "a" ARRAY STRING 5 3 0 1 1st Level null "1" NULL STRING 1 3 1 0 1st Level 12 "1" INTEGER STRING 2 3 1 0 1st Level 3.14 "1" DOUBLE STRING 2 3 1 0 1st Level null "3.14" NULL STRING 1 3 1 0 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 0 1 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 0 1 1st Level true [1, 2] BOOLEAN ARRAY 6 5 0 1 1st Level null "b,c" NULL STRING 1 3 1 0 1st Level [1, 2] "b,c" ARRAY STRING 5 3 0 1 1st Level null "b" NULL STRING 1 3 1 0 1st Level [1, 2] "b" ARRAY STRING 5 3 0 1 1st Level null "2015-01-15" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 1 0 1st Level null "23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 1 0 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 1 0 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 0 1 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 0 1 1st Level null "base64:type16:yv4=" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 0 1 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 0 1 "Testcase for Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 1 0 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 1 DOUBLE INTEGER 2 2 1 0 1st Level null 12 NULL INTEGER 1 2 1 0 2nd Level 12 12 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 12 DOUBLE INTEGER 2 2 1 0 1st Level null 3 NULL INTEGER 1 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 3 DOUBLE INTEGER 2 2 1 0 1st Level null 3.14 NULL DECIMAL 1 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 1 0 2nd Level null null NULL NULL 1 1 1 0 1st Level null "a" NULL STRING 1 3 1 0 1st Level [1, 2] "a" ARRAY STRING 5 3 0 1 1st Level null "1" NULL STRING 1 3 1 0 1st Level 12 "1" INTEGER STRING 2 3 1 0 1st Level 3.14 "1" DOUBLE STRING 2 3 1 0 1st Level null "3.14" NULL STRING 1 3 1 0 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 0 1 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 0 1 1st Level true [1, 2] BOOLEAN ARRAY 6 5 0 1 1st Level null "b,c" NULL STRING 1 3 1 0 1st Level [1, 2] "b,c" ARRAY STRING 5 3 0 1 1st Level null "b" NULL STRING 1 3 1 0 1st Level [1, 2] "b" ARRAY STRING 5 3 0 1 1st Level null "2015-01-15" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 1 0 1st Level null "23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 1 0 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 1 0 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 0 1 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 0 1 1st Level null "base64:type16:yv4=" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 0 1 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 0 1 "Testcase for Medium Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Medium Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 1 0 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 1 DOUBLE INTEGER 2 2 1 0 1st Level null 12 NULL INTEGER 1 2 1 0 2nd Level 12 12 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 12 DOUBLE INTEGER 2 2 1 0 1st Level null 3 NULL INTEGER 1 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 3 DOUBLE INTEGER 2 2 1 0 1st Level null 3.14 NULL DECIMAL 1 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 1 0 2nd Level null null NULL NULL 1 1 1 0 1st Level null "a" NULL STRING 1 3 1 0 1st Level [1, 2] "a" ARRAY STRING 5 3 0 1 1st Level null "1" NULL STRING 1 3 1 0 1st Level 12 "1" INTEGER STRING 2 3 1 0 1st Level 3.14 "1" DOUBLE STRING 2 3 1 0 1st Level null "3.14" NULL STRING 1 3 1 0 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 0 1 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 0 1 1st Level true [1, 2] BOOLEAN ARRAY 6 5 0 1 1st Level null "b,c" NULL STRING 1 3 1 0 1st Level [1, 2] "b,c" ARRAY STRING 5 3 0 1 1st Level null "b" NULL STRING 1 3 1 0 1st Level [1, 2] "b" ARRAY STRING 5 3 0 1 1st Level null "2015-01-15" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 1 0 1st Level null "23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 1 0 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 1 0 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 0 1 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 0 1 1st Level null "base64:type16:yv4=" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 0 1 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 0 1 "Testcase for Long Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Long Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 1 0 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 1 DOUBLE INTEGER 2 2 1 0 1st Level null 12 NULL INTEGER 1 2 1 0 2nd Level 12 12 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 12 DOUBLE INTEGER 2 2 1 0 1st Level null 3 NULL INTEGER 1 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 3 DOUBLE INTEGER 2 2 1 0 1st Level null 3.14 NULL DECIMAL 1 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 1 0 2nd Level null null NULL NULL 1 1 1 0 1st Level null "a" NULL STRING 1 3 1 0 1st Level [1, 2] "a" ARRAY STRING 5 3 0 1 1st Level null "1" NULL STRING 1 3 1 0 1st Level 12 "1" INTEGER STRING 2 3 1 0 1st Level 3.14 "1" DOUBLE STRING 2 3 1 0 1st Level null "3.14" NULL STRING 1 3 1 0 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 0 1 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 0 1 1st Level true [1, 2] BOOLEAN ARRAY 6 5 0 1 1st Level null "b,c" NULL STRING 1 3 1 0 1st Level [1, 2] "b,c" ARRAY STRING 5 3 0 1 1st Level null "b" NULL STRING 1 3 1 0 1st Level [1, 2] "b" ARRAY STRING 5 3 0 1 1st Level null "2015-01-15" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 1 0 1st Level null "23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 1 0 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 1 0 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 0 1 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 0 1 1st Level null "base64:type16:yv4=" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 0 1 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 0 1 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 1 0 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 0 1 "Testcase for Enum" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Set" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Test for SQL vs JSON" "Comparator <=" "" "Testcase for Tinyint" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Boolean" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for small Int Signed" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Signed Medium Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for unsigned Medium Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 "Testcase for signed Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Unsigned Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 "Testcase for Big Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Big Int Unsigned" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 "Testcase for Decimal" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12.00 1 DECIMAL INTEGER 2 2 0 1 2nd Level 3.14 1 DECIMAL INTEGER 2 2 0 1 2nd Level 12.00 3 DECIMAL INTEGER 2 2 0 1 2nd Level 3.14 3 DECIMAL INTEGER 2 2 0 1 2nd Level 12.00 3.14 DECIMAL DECIMAL 2 2 0 1 "Testcase for Double" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 DOUBLE INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 DOUBLE INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3.14 DOUBLE DECIMAL 2 2 0 1 "Testcase for CHAR" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 0 1 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 1st Level null 12 NULL INTEGER 1 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 1st Level null 3 NULL INTEGER 1 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 1st Level null 3.14 NULL DECIMAL 1 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 1st Level null "a" NULL STRING 1 3 0 1 1st Level [1, 2] "a" ARRAY STRING 5 3 1 0 1st Level null "1" NULL STRING 1 3 0 1 1st Level 12 "1" INTEGER STRING 2 3 0 1 1st Level 3.14 "1" DOUBLE STRING 2 3 0 1 1st Level null "3.14" NULL STRING 1 3 0 1 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 1 0 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 1 0 1st Level true [1, 2] BOOLEAN ARRAY 6 5 1 0 1st Level null "b,c" NULL STRING 1 3 0 1 1st Level [1, 2] "b,c" ARRAY STRING 5 3 1 0 1st Level null "b" NULL STRING 1 3 0 1 1st Level [1, 2] "b" ARRAY STRING 5 3 1 0 1st Level null "2015-01-15" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 0 1 1st Level null "23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 0 1 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 0 1 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 1 0 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 1 0 1st Level null "base64:type16:yv4=" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 1 0 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 1 0 "Testcase for VARCHAR" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 0 1 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 1st Level null 12 NULL INTEGER 1 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 1st Level null 3 NULL INTEGER 1 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 1st Level null 3.14 NULL DECIMAL 1 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 1st Level null "a" NULL STRING 1 3 0 1 1st Level [1, 2] "a" ARRAY STRING 5 3 1 0 1st Level null "1" NULL STRING 1 3 0 1 1st Level 12 "1" INTEGER STRING 2 3 0 1 1st Level 3.14 "1" DOUBLE STRING 2 3 0 1 1st Level null "3.14" NULL STRING 1 3 0 1 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 1 0 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 1 0 1st Level true [1, 2] BOOLEAN ARRAY 6 5 1 0 1st Level null "b,c" NULL STRING 1 3 0 1 1st Level [1, 2] "b,c" ARRAY STRING 5 3 1 0 1st Level null "b" NULL STRING 1 3 0 1 1st Level [1, 2] "b" ARRAY STRING 5 3 1 0 1st Level null "2015-01-15" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 0 1 1st Level null "23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 0 1 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 0 1 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 1 0 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 1 0 1st Level null "base64:type16:yv4=" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 1 0 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 1 0 "Testcase for Binary(255)" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Variable Binary" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for TinyBlob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for TinyText" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 0 1 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 1st Level null 12 NULL INTEGER 1 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 1st Level null 3 NULL INTEGER 1 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 1st Level null 3.14 NULL DECIMAL 1 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 1st Level null "a" NULL STRING 1 3 0 1 1st Level [1, 2] "a" ARRAY STRING 5 3 1 0 1st Level null "1" NULL STRING 1 3 0 1 1st Level 12 "1" INTEGER STRING 2 3 0 1 1st Level 3.14 "1" DOUBLE STRING 2 3 0 1 1st Level null "3.14" NULL STRING 1 3 0 1 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 1 0 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 1 0 1st Level true [1, 2] BOOLEAN ARRAY 6 5 1 0 1st Level null "b,c" NULL STRING 1 3 0 1 1st Level [1, 2] "b,c" ARRAY STRING 5 3 1 0 1st Level null "b" NULL STRING 1 3 0 1 1st Level [1, 2] "b" ARRAY STRING 5 3 1 0 1st Level null "2015-01-15" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 0 1 1st Level null "23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 0 1 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 0 1 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 1 0 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 1 0 1st Level null "base64:type16:yv4=" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 1 0 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 1 0 "Testcase for Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 0 1 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 1st Level null 12 NULL INTEGER 1 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 1st Level null 3 NULL INTEGER 1 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 1st Level null 3.14 NULL DECIMAL 1 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 1st Level null "a" NULL STRING 1 3 0 1 1st Level [1, 2] "a" ARRAY STRING 5 3 1 0 1st Level null "1" NULL STRING 1 3 0 1 1st Level 12 "1" INTEGER STRING 2 3 0 1 1st Level 3.14 "1" DOUBLE STRING 2 3 0 1 1st Level null "3.14" NULL STRING 1 3 0 1 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 1 0 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 1 0 1st Level true [1, 2] BOOLEAN ARRAY 6 5 1 0 1st Level null "b,c" NULL STRING 1 3 0 1 1st Level [1, 2] "b,c" ARRAY STRING 5 3 1 0 1st Level null "b" NULL STRING 1 3 0 1 1st Level [1, 2] "b" ARRAY STRING 5 3 1 0 1st Level null "2015-01-15" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 0 1 1st Level null "23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 0 1 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 0 1 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 1 0 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 1 0 1st Level null "base64:type16:yv4=" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 1 0 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 1 0 "Testcase for Medium Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Medium Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 0 1 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 1st Level null 12 NULL INTEGER 1 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 1st Level null 3 NULL INTEGER 1 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 1st Level null 3.14 NULL DECIMAL 1 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 1st Level null "a" NULL STRING 1 3 0 1 1st Level [1, 2] "a" ARRAY STRING 5 3 1 0 1st Level null "1" NULL STRING 1 3 0 1 1st Level 12 "1" INTEGER STRING 2 3 0 1 1st Level 3.14 "1" DOUBLE STRING 2 3 0 1 1st Level null "3.14" NULL STRING 1 3 0 1 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 1 0 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 1 0 1st Level true [1, 2] BOOLEAN ARRAY 6 5 1 0 1st Level null "b,c" NULL STRING 1 3 0 1 1st Level [1, 2] "b,c" ARRAY STRING 5 3 1 0 1st Level null "b" NULL STRING 1 3 0 1 1st Level [1, 2] "b" ARRAY STRING 5 3 1 0 1st Level null "2015-01-15" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 0 1 1st Level null "23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 0 1 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 0 1 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 1 0 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 1 0 1st Level null "base64:type16:yv4=" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 1 0 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 1 0 "Testcase for Long Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Long Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 0 1 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 1st Level null 12 NULL INTEGER 1 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 1st Level null 3 NULL INTEGER 1 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 1st Level null 3.14 NULL DECIMAL 1 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 1st Level null "a" NULL STRING 1 3 0 1 1st Level [1, 2] "a" ARRAY STRING 5 3 1 0 1st Level null "1" NULL STRING 1 3 0 1 1st Level 12 "1" INTEGER STRING 2 3 0 1 1st Level 3.14 "1" DOUBLE STRING 2 3 0 1 1st Level null "3.14" NULL STRING 1 3 0 1 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 1 0 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 1 0 1st Level true [1, 2] BOOLEAN ARRAY 6 5 1 0 1st Level null "b,c" NULL STRING 1 3 0 1 1st Level [1, 2] "b,c" ARRAY STRING 5 3 1 0 1st Level null "b" NULL STRING 1 3 0 1 1st Level [1, 2] "b" ARRAY STRING 5 3 1 0 1st Level null "2015-01-15" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 0 1 1st Level null "23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 0 1 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 0 1 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 0 1 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 1 0 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 1 0 1st Level null "base64:type16:yv4=" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 1 0 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 1 0 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 0 1 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 1 0 "Testcase for Enum" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Set" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Test for SQL vs JSON" "Comparator >=" "" "Testcase for Tinyint" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Boolean" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for small Int Signed" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Signed Medium Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for unsigned Medium Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 "Testcase for signed Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Unsigned Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 "Testcase for Big Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Big Int Unsigned" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 "Testcase for Decimal" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1.00 12 DECIMAL INTEGER 2 2 0 1 2nd Level 3.14 12 DECIMAL INTEGER 2 2 0 1 2nd Level 1.00 3 DECIMAL INTEGER 2 2 0 1 2nd Level 1.00 3.14 DECIMAL DECIMAL 2 2 0 1 "Testcase for Double" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 1 12 DOUBLE INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 1 3 DOUBLE INTEGER 2 2 0 1 2nd Level 1 3.14 DOUBLE DECIMAL 2 2 0 1 "Testcase for CHAR" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 1 0 1st Level null 12 NULL INTEGER 1 2 1 0 1st Level null 3 NULL INTEGER 1 2 1 0 1st Level null 3.14 NULL DECIMAL 1 2 1 0 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 1st Level null "a" NULL STRING 1 3 1 0 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 1st Level [1, 2] "a" ARRAY STRING 5 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 1st Level null "1" NULL STRING 1 3 1 0 1st Level 12 "1" INTEGER STRING 2 3 1 0 1st Level 3.14 "1" DOUBLE STRING 2 3 1 0 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level null "3.14" NULL STRING 1 3 1 0 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 1st Level true [1, 2] BOOLEAN ARRAY 6 5 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 1st Level null "b,c" NULL STRING 1 3 1 0 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 1st Level [1, 2] "b,c" ARRAY STRING 5 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 1st Level null "b" NULL STRING 1 3 1 0 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 1st Level [1, 2] "b" ARRAY STRING 5 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 1st Level null "2015-01-15" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 1 0 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 1st Level null "23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 1 0 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 1 0 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 1st Level null "base64:type16:yv4=" NULL STRING 1 3 1 0 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 1 0 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for VARCHAR" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 1 0 1st Level null 12 NULL INTEGER 1 2 1 0 1st Level null 3 NULL INTEGER 1 2 1 0 1st Level null 3.14 NULL DECIMAL 1 2 1 0 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 1st Level null "a" NULL STRING 1 3 1 0 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 1st Level [1, 2] "a" ARRAY STRING 5 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 1st Level null "1" NULL STRING 1 3 1 0 1st Level 12 "1" INTEGER STRING 2 3 1 0 1st Level 3.14 "1" DOUBLE STRING 2 3 1 0 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level null "3.14" NULL STRING 1 3 1 0 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 1st Level true [1, 2] BOOLEAN ARRAY 6 5 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 1st Level null "b,c" NULL STRING 1 3 1 0 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 1st Level [1, 2] "b,c" ARRAY STRING 5 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 1st Level null "b" NULL STRING 1 3 1 0 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 1st Level [1, 2] "b" ARRAY STRING 5 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 1st Level null "2015-01-15" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 1 0 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 1st Level null "23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 1 0 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 1 0 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 1st Level null "base64:type16:yv4=" NULL STRING 1 3 1 0 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 1 0 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Binary(255)" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Variable Binary" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for TinyBlob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for TinyText" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 1 0 1st Level null 12 NULL INTEGER 1 2 1 0 1st Level null 3 NULL INTEGER 1 2 1 0 1st Level null 3.14 NULL DECIMAL 1 2 1 0 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 1st Level null "a" NULL STRING 1 3 1 0 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 1st Level [1, 2] "a" ARRAY STRING 5 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 1st Level null "1" NULL STRING 1 3 1 0 1st Level 12 "1" INTEGER STRING 2 3 1 0 1st Level 3.14 "1" DOUBLE STRING 2 3 1 0 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level null "3.14" NULL STRING 1 3 1 0 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 1st Level true [1, 2] BOOLEAN ARRAY 6 5 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 1st Level null "b,c" NULL STRING 1 3 1 0 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 1st Level [1, 2] "b,c" ARRAY STRING 5 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 1st Level null "b" NULL STRING 1 3 1 0 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 1st Level [1, 2] "b" ARRAY STRING 5 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 1st Level null "2015-01-15" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 1 0 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 1st Level null "23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 1 0 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 1 0 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 1st Level null "base64:type16:yv4=" NULL STRING 1 3 1 0 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 1 0 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 1 0 1st Level null 12 NULL INTEGER 1 2 1 0 1st Level null 3 NULL INTEGER 1 2 1 0 1st Level null 3.14 NULL DECIMAL 1 2 1 0 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 1st Level null "a" NULL STRING 1 3 1 0 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 1st Level [1, 2] "a" ARRAY STRING 5 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 1st Level null "1" NULL STRING 1 3 1 0 1st Level 12 "1" INTEGER STRING 2 3 1 0 1st Level 3.14 "1" DOUBLE STRING 2 3 1 0 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level null "3.14" NULL STRING 1 3 1 0 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 1st Level true [1, 2] BOOLEAN ARRAY 6 5 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 1st Level null "b,c" NULL STRING 1 3 1 0 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 1st Level [1, 2] "b,c" ARRAY STRING 5 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 1st Level null "b" NULL STRING 1 3 1 0 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 1st Level [1, 2] "b" ARRAY STRING 5 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 1st Level null "2015-01-15" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 1 0 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 1st Level null "23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 1 0 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 1 0 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 1st Level null "base64:type16:yv4=" NULL STRING 1 3 1 0 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 1 0 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Medium Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Medium Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 1 0 1st Level null 12 NULL INTEGER 1 2 1 0 1st Level null 3 NULL INTEGER 1 2 1 0 1st Level null 3.14 NULL DECIMAL 1 2 1 0 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 1st Level null "a" NULL STRING 1 3 1 0 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 1st Level [1, 2] "a" ARRAY STRING 5 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 1st Level null "1" NULL STRING 1 3 1 0 1st Level 12 "1" INTEGER STRING 2 3 1 0 1st Level 3.14 "1" DOUBLE STRING 2 3 1 0 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level null "3.14" NULL STRING 1 3 1 0 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 1st Level true [1, 2] BOOLEAN ARRAY 6 5 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 1st Level null "b,c" NULL STRING 1 3 1 0 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 1st Level [1, 2] "b,c" ARRAY STRING 5 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 1st Level null "b" NULL STRING 1 3 1 0 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 1st Level [1, 2] "b" ARRAY STRING 5 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 1st Level null "2015-01-15" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 1 0 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 1st Level null "23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 1 0 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 1 0 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 1st Level null "base64:type16:yv4=" NULL STRING 1 3 1 0 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 1 0 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Long Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Long Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 1st Level null 1 NULL INTEGER 1 2 1 0 1st Level null 12 NULL INTEGER 1 2 1 0 1st Level null 3 NULL INTEGER 1 2 1 0 1st Level null 3.14 NULL DECIMAL 1 2 1 0 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 1st Level null "a" NULL STRING 1 3 1 0 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 1st Level [1, 2] "a" ARRAY STRING 5 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 1st Level null "1" NULL STRING 1 3 1 0 1st Level 12 "1" INTEGER STRING 2 3 1 0 1st Level 3.14 "1" DOUBLE STRING 2 3 1 0 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level null "3.14" NULL STRING 1 3 1 0 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 1st Level true {"a": 3} BOOLEAN OBJECT 6 4 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 1st Level [1, 2] {"a": 3} ARRAY OBJECT 5 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 1st Level true [1, 2] BOOLEAN ARRAY 6 5 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 1st Level null "b,c" NULL STRING 1 3 1 0 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 1st Level [1, 2] "b,c" ARRAY STRING 5 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 1st Level null "b" NULL STRING 1 3 1 0 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 1st Level [1, 2] "b" ARRAY STRING 5 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 1st Level null "2015-01-15" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15" DOUBLE STRING 2 3 1 0 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 1st Level null "23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "23:24:25.000000" DOUBLE STRING 2 3 1 0 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 1st Level null "2015-01-15 23:24:25.000000" NULL STRING 1 3 1 0 1st Level 3.14 "2015-01-15 23:24:25.000000" DOUBLE STRING 2 3 1 0 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 1st Level true {"type": "Point", "coordinates": [1, 1]} BOOLEAN OBJECT 6 4 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 1st Level [1, 2] {"type": "Point", "coordinates": [1, 1]} ARRAY OBJECT 5 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 1st Level null "base64:type16:yv4=" NULL STRING 1 3 1 0 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type16:yv4=" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 1st Level null "base64:type13:MTk5Mg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type13:MTk5Mg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 1st Level null "base64:type252:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type252:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type251:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type251:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type250:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type250:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type249:yv66vg==" NULL STRING 1 3 1 0 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type249:yv66vg==" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 1st Level null "base64:type15:Zm9v" NULL STRING 1 3 1 0 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 1st Level [1, 2] "base64:type15:Zm9v" ARRAY STRING 5 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Enum" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Set" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Test for SQL vs JSON" "Comparator <>" "" "Testcase for Tinyint" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3 1 INTEGER INTEGER 2 2 1 0 2nd Level 1 12 INTEGER INTEGER 2 2 1 0 2nd Level 3 12 INTEGER INTEGER 2 2 1 0 2nd Level 1 3 INTEGER INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for Boolean" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3 1 INTEGER INTEGER 2 2 1 0 2nd Level 1 12 INTEGER INTEGER 2 2 1 0 2nd Level 3 12 INTEGER INTEGER 2 2 1 0 2nd Level 1 3 INTEGER INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for small Int Signed" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3 1 INTEGER INTEGER 2 2 1 0 2nd Level 1 12 INTEGER INTEGER 2 2 1 0 2nd Level 3 12 INTEGER INTEGER 2 2 1 0 2nd Level 1 3 INTEGER INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for Signed Medium Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3 1 INTEGER INTEGER 2 2 1 0 2nd Level 1 12 INTEGER INTEGER 2 2 1 0 2nd Level 3 12 INTEGER INTEGER 2 2 1 0 2nd Level 1 3 INTEGER INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for unsigned Medium Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 "Testcase for signed Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3 1 INTEGER INTEGER 2 2 1 0 2nd Level 1 12 INTEGER INTEGER 2 2 1 0 2nd Level 3 12 INTEGER INTEGER 2 2 1 0 2nd Level 1 3 INTEGER INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for Unsigned Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 "Testcase for Big Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3 1 INTEGER INTEGER 2 2 1 0 2nd Level 1 12 INTEGER INTEGER 2 2 1 0 2nd Level 3 12 INTEGER INTEGER 2 2 1 0 2nd Level 1 3 INTEGER INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 INTEGER DECIMAL 2 2 1 0 "Testcase for Big Int Unsigned" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 1 0 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 1 0 "Testcase for Decimal" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12.00 1 DECIMAL INTEGER 2 2 1 0 2nd Level 3.14 1 DECIMAL INTEGER 2 2 1 0 2nd Level 1.00 12 DECIMAL INTEGER 2 2 1 0 2nd Level 3.14 12 DECIMAL INTEGER 2 2 1 0 2nd Level 1.00 3 DECIMAL INTEGER 2 2 1 0 2nd Level 12.00 3 DECIMAL INTEGER 2 2 1 0 2nd Level 3.14 3 DECIMAL INTEGER 2 2 1 0 2nd Level 1.00 3.14 DECIMAL DECIMAL 2 2 1 0 2nd Level 12.00 3.14 DECIMAL DECIMAL 2 2 1 0 "Testcase for Double" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 DOUBLE INTEGER 2 2 1 0 2nd Level 3.14 1 DOUBLE INTEGER 2 2 1 0 2nd Level 1 12 DOUBLE INTEGER 2 2 1 0 2nd Level 3.14 12 DOUBLE INTEGER 2 2 1 0 2nd Level 1 3 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3 DOUBLE INTEGER 2 2 1 0 2nd Level 3.14 3 DOUBLE INTEGER 2 2 1 0 2nd Level 1 3.14 DOUBLE DECIMAL 2 2 1 0 2nd Level 12 3.14 DOUBLE DECIMAL 2 2 1 0 "Testcase for CHAR" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 1 DOUBLE INTEGER 2 2 1 0 2nd Level 12 12 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 12 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 3 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 1 0 2nd Level null null NULL NULL 1 1 1 0 2nd Level true true BOOLEAN BOOLEAN 6 6 1 0 2nd Level "a" "a" STRING STRING 3 3 1 0 2nd Level "1" "a" STRING STRING 3 3 1 0 2nd Level "3.14" "a" STRING STRING 3 3 1 0 2nd Level "b,c" "a" STRING STRING 3 3 1 0 2nd Level "b" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "a" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 1 0 2nd Level "a" "1" STRING STRING 3 3 1 0 2nd Level "1" "1" STRING STRING 3 3 1 0 2nd Level "3.14" "1" STRING STRING 3 3 1 0 2nd Level "b,c" "1" STRING STRING 3 3 1 0 2nd Level "b" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "1" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 1 0 1st Level 3.14 "3.14" DOUBLE STRING 2 3 0 1 2nd Level "a" "3.14" STRING STRING 3 3 1 0 2nd Level "1" "3.14" STRING STRING 3 3 1 0 2nd Level "3.14" "3.14" STRING STRING 3 3 1 0 2nd Level "b,c" "3.14" STRING STRING 3 3 1 0 2nd Level "b" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 1 0 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 1 0 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 1 0 2nd Level "a" "b,c" STRING STRING 3 3 1 0 2nd Level "1" "b,c" STRING STRING 3 3 1 0 2nd Level "3.14" "b,c" STRING STRING 3 3 1 0 2nd Level "b,c" "b,c" STRING STRING 3 3 1 0 2nd Level "b" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 1 0 2nd Level "a" "b" STRING STRING 3 3 1 0 2nd Level "1" "b" STRING STRING 3 3 1 0 2nd Level "3.14" "b" STRING STRING 3 3 1 0 2nd Level "b,c" "b" STRING STRING 3 3 1 0 2nd Level "b" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 1 0 2nd Level "a" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 1 0 "Testcase for VARCHAR" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 1 DOUBLE INTEGER 2 2 1 0 2nd Level 12 12 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 12 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 3 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 1 0 2nd Level null null NULL NULL 1 1 1 0 2nd Level true true BOOLEAN BOOLEAN 6 6 1 0 2nd Level "a" "a" STRING STRING 3 3 1 0 2nd Level "1" "a" STRING STRING 3 3 1 0 2nd Level "3.14" "a" STRING STRING 3 3 1 0 2nd Level "b,c" "a" STRING STRING 3 3 1 0 2nd Level "b" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "a" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 1 0 2nd Level "a" "1" STRING STRING 3 3 1 0 2nd Level "1" "1" STRING STRING 3 3 1 0 2nd Level "3.14" "1" STRING STRING 3 3 1 0 2nd Level "b,c" "1" STRING STRING 3 3 1 0 2nd Level "b" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "1" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 1 0 1st Level 3.14 "3.14" DOUBLE STRING 2 3 0 1 2nd Level "a" "3.14" STRING STRING 3 3 1 0 2nd Level "1" "3.14" STRING STRING 3 3 1 0 2nd Level "3.14" "3.14" STRING STRING 3 3 1 0 2nd Level "b,c" "3.14" STRING STRING 3 3 1 0 2nd Level "b" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 1 0 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 1 0 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 1 0 2nd Level "a" "b,c" STRING STRING 3 3 1 0 2nd Level "1" "b,c" STRING STRING 3 3 1 0 2nd Level "3.14" "b,c" STRING STRING 3 3 1 0 2nd Level "b,c" "b,c" STRING STRING 3 3 1 0 2nd Level "b" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 1 0 2nd Level "a" "b" STRING STRING 3 3 1 0 2nd Level "1" "b" STRING STRING 3 3 1 0 2nd Level "3.14" "b" STRING STRING 3 3 1 0 2nd Level "b,c" "b" STRING STRING 3 3 1 0 2nd Level "b" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 1 0 2nd Level "a" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 1 0 "Testcase for Binary(255)" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Variable Binary" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for TinyBlob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for TinyText" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 1 DOUBLE INTEGER 2 2 1 0 2nd Level 12 12 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 12 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 3 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 1 0 2nd Level null null NULL NULL 1 1 1 0 2nd Level true true BOOLEAN BOOLEAN 6 6 1 0 2nd Level "a" "a" STRING STRING 3 3 1 0 2nd Level "1" "a" STRING STRING 3 3 1 0 2nd Level "3.14" "a" STRING STRING 3 3 1 0 2nd Level "b,c" "a" STRING STRING 3 3 1 0 2nd Level "b" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "a" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 1 0 2nd Level "a" "1" STRING STRING 3 3 1 0 2nd Level "1" "1" STRING STRING 3 3 1 0 2nd Level "3.14" "1" STRING STRING 3 3 1 0 2nd Level "b,c" "1" STRING STRING 3 3 1 0 2nd Level "b" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "1" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 1 0 1st Level 3.14 "3.14" DOUBLE STRING 2 3 0 1 2nd Level "a" "3.14" STRING STRING 3 3 1 0 2nd Level "1" "3.14" STRING STRING 3 3 1 0 2nd Level "3.14" "3.14" STRING STRING 3 3 1 0 2nd Level "b,c" "3.14" STRING STRING 3 3 1 0 2nd Level "b" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 1 0 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 1 0 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 1 0 2nd Level "a" "b,c" STRING STRING 3 3 1 0 2nd Level "1" "b,c" STRING STRING 3 3 1 0 2nd Level "3.14" "b,c" STRING STRING 3 3 1 0 2nd Level "b,c" "b,c" STRING STRING 3 3 1 0 2nd Level "b" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 1 0 2nd Level "a" "b" STRING STRING 3 3 1 0 2nd Level "1" "b" STRING STRING 3 3 1 0 2nd Level "3.14" "b" STRING STRING 3 3 1 0 2nd Level "b,c" "b" STRING STRING 3 3 1 0 2nd Level "b" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 1 0 2nd Level "a" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 1 0 "Testcase for Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 1 DOUBLE INTEGER 2 2 1 0 2nd Level 12 12 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 12 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 3 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 1 0 2nd Level null null NULL NULL 1 1 1 0 2nd Level true true BOOLEAN BOOLEAN 6 6 1 0 2nd Level "a" "a" STRING STRING 3 3 1 0 2nd Level "1" "a" STRING STRING 3 3 1 0 2nd Level "3.14" "a" STRING STRING 3 3 1 0 2nd Level "b,c" "a" STRING STRING 3 3 1 0 2nd Level "b" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "a" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 1 0 2nd Level "a" "1" STRING STRING 3 3 1 0 2nd Level "1" "1" STRING STRING 3 3 1 0 2nd Level "3.14" "1" STRING STRING 3 3 1 0 2nd Level "b,c" "1" STRING STRING 3 3 1 0 2nd Level "b" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "1" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 1 0 1st Level 3.14 "3.14" DOUBLE STRING 2 3 0 1 2nd Level "a" "3.14" STRING STRING 3 3 1 0 2nd Level "1" "3.14" STRING STRING 3 3 1 0 2nd Level "3.14" "3.14" STRING STRING 3 3 1 0 2nd Level "b,c" "3.14" STRING STRING 3 3 1 0 2nd Level "b" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 1 0 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 1 0 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 1 0 2nd Level "a" "b,c" STRING STRING 3 3 1 0 2nd Level "1" "b,c" STRING STRING 3 3 1 0 2nd Level "3.14" "b,c" STRING STRING 3 3 1 0 2nd Level "b,c" "b,c" STRING STRING 3 3 1 0 2nd Level "b" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 1 0 2nd Level "a" "b" STRING STRING 3 3 1 0 2nd Level "1" "b" STRING STRING 3 3 1 0 2nd Level "3.14" "b" STRING STRING 3 3 1 0 2nd Level "b,c" "b" STRING STRING 3 3 1 0 2nd Level "b" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 1 0 2nd Level "a" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 1 0 "Testcase for Medium Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Medium Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 1 DOUBLE INTEGER 2 2 1 0 2nd Level 12 12 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 12 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 3 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 1 0 2nd Level null null NULL NULL 1 1 1 0 2nd Level true true BOOLEAN BOOLEAN 6 6 1 0 2nd Level "a" "a" STRING STRING 3 3 1 0 2nd Level "1" "a" STRING STRING 3 3 1 0 2nd Level "3.14" "a" STRING STRING 3 3 1 0 2nd Level "b,c" "a" STRING STRING 3 3 1 0 2nd Level "b" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "a" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 1 0 2nd Level "a" "1" STRING STRING 3 3 1 0 2nd Level "1" "1" STRING STRING 3 3 1 0 2nd Level "3.14" "1" STRING STRING 3 3 1 0 2nd Level "b,c" "1" STRING STRING 3 3 1 0 2nd Level "b" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "1" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 1 0 1st Level 3.14 "3.14" DOUBLE STRING 2 3 0 1 2nd Level "a" "3.14" STRING STRING 3 3 1 0 2nd Level "1" "3.14" STRING STRING 3 3 1 0 2nd Level "3.14" "3.14" STRING STRING 3 3 1 0 2nd Level "b,c" "3.14" STRING STRING 3 3 1 0 2nd Level "b" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 1 0 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 1 0 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 1 0 2nd Level "a" "b,c" STRING STRING 3 3 1 0 2nd Level "1" "b,c" STRING STRING 3 3 1 0 2nd Level "3.14" "b,c" STRING STRING 3 3 1 0 2nd Level "b,c" "b,c" STRING STRING 3 3 1 0 2nd Level "b" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 1 0 2nd Level "a" "b" STRING STRING 3 3 1 0 2nd Level "1" "b" STRING STRING 3 3 1 0 2nd Level "3.14" "b" STRING STRING 3 3 1 0 2nd Level "b,c" "b" STRING STRING 3 3 1 0 2nd Level "b" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 1 0 2nd Level "a" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 1 0 "Testcase for Long Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Long Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 1 DOUBLE INTEGER 2 2 1 0 2nd Level 12 12 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 12 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3 INTEGER INTEGER 2 2 1 0 2nd Level 3.14 3 DOUBLE INTEGER 2 2 1 0 2nd Level 12 3.14 INTEGER DECIMAL 2 2 1 0 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 1 0 2nd Level null null NULL NULL 1 1 1 0 2nd Level true true BOOLEAN BOOLEAN 6 6 1 0 2nd Level "a" "a" STRING STRING 3 3 1 0 2nd Level "1" "a" STRING STRING 3 3 1 0 2nd Level "3.14" "a" STRING STRING 3 3 1 0 2nd Level "b,c" "a" STRING STRING 3 3 1 0 2nd Level "b" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "a" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 1 0 2nd Level "a" "1" STRING STRING 3 3 1 0 2nd Level "1" "1" STRING STRING 3 3 1 0 2nd Level "3.14" "1" STRING STRING 3 3 1 0 2nd Level "b,c" "1" STRING STRING 3 3 1 0 2nd Level "b" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "1" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 1 0 1st Level 3.14 "3.14" DOUBLE STRING 2 3 0 1 2nd Level "a" "3.14" STRING STRING 3 3 1 0 2nd Level "1" "3.14" STRING STRING 3 3 1 0 2nd Level "3.14" "3.14" STRING STRING 3 3 1 0 2nd Level "b,c" "3.14" STRING STRING 3 3 1 0 2nd Level "b" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 1 0 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 1 0 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 1 0 2nd Level "a" "b,c" STRING STRING 3 3 1 0 2nd Level "1" "b,c" STRING STRING 3 3 1 0 2nd Level "3.14" "b,c" STRING STRING 3 3 1 0 2nd Level "b,c" "b,c" STRING STRING 3 3 1 0 2nd Level "b" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 1 0 2nd Level "a" "b" STRING STRING 3 3 1 0 2nd Level "1" "b" STRING STRING 3 3 1 0 2nd Level "3.14" "b" STRING STRING 3 3 1 0 2nd Level "b,c" "b" STRING STRING 3 3 1 0 2nd Level "b" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "b" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 1 0 2nd Level "a" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 1 0 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 1 0 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 1 0 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 1 0 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 1 0 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 1 0 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 1 0 "Testcase for Enum" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Set" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Test for SQL vs JSON" "Comparator <=>" "" "Testcase for Tinyint" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Boolean" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for small Int Signed" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Signed Medium Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for unsigned Medium Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 "Testcase for signed Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Unsigned Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 "Testcase for Big Int" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3 1 INTEGER INTEGER 2 2 0 1 2nd Level 1 12 INTEGER INTEGER 2 2 0 1 2nd Level 3 12 INTEGER INTEGER 2 2 0 1 2nd Level 1 3 INTEGER INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 INTEGER DECIMAL 2 2 0 1 "Testcase for Big Int Unsigned" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 1 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 3 12 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 12 3 UNSIGNED INTEGER INTEGER 2 2 0 1 2nd Level 1 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 12 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 2nd Level 3 3.14 UNSIGNED INTEGER DECIMAL 2 2 0 1 "Testcase for Decimal" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12.00 1 DECIMAL INTEGER 2 2 0 1 2nd Level 3.14 1 DECIMAL INTEGER 2 2 0 1 2nd Level 1.00 12 DECIMAL INTEGER 2 2 0 1 2nd Level 3.14 12 DECIMAL INTEGER 2 2 0 1 2nd Level 1.00 3 DECIMAL INTEGER 2 2 0 1 2nd Level 12.00 3 DECIMAL INTEGER 2 2 0 1 2nd Level 3.14 3 DECIMAL INTEGER 2 2 0 1 2nd Level 1.00 3.14 DECIMAL DECIMAL 2 2 0 1 2nd Level 12.00 3.14 DECIMAL DECIMAL 2 2 0 1 "Testcase for Double" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 DOUBLE INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 1 12 DOUBLE INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 1 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 DOUBLE INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 1 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level 12 3.14 DOUBLE DECIMAL 2 2 0 1 "Testcase for CHAR" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for VARCHAR" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Binary(255)" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Variable Binary" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for TinyBlob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for TinyText" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Medium Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Medium Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Long Blob" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Long Text" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation 2nd Level 12 1 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 1 DOUBLE INTEGER 2 2 0 1 2nd Level 12 12 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 12 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3 INTEGER INTEGER 2 2 0 1 2nd Level 3.14 3 DOUBLE INTEGER 2 2 0 1 2nd Level 12 3.14 INTEGER DECIMAL 2 2 0 1 2nd Level 3.14 3.14 DOUBLE DECIMAL 2 2 0 1 2nd Level null null NULL NULL 1 1 0 1 2nd Level true true BOOLEAN BOOLEAN 6 6 0 1 2nd Level "a" "a" STRING STRING 3 3 0 1 2nd Level "1" "a" STRING STRING 3 3 0 1 2nd Level "3.14" "a" STRING STRING 3 3 0 1 2nd Level "b,c" "a" STRING STRING 3 3 0 1 2nd Level "b" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "a" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "a" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "a" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "a" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "a" STRING STRING 3 3 0 1 2nd Level "a" "1" STRING STRING 3 3 0 1 2nd Level "1" "1" STRING STRING 3 3 0 1 2nd Level "3.14" "1" STRING STRING 3 3 0 1 2nd Level "b,c" "1" STRING STRING 3 3 0 1 2nd Level "b" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "1" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "1" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "1" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "1" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "1" STRING STRING 3 3 0 1 1st Level 3.14 "3.14" DOUBLE STRING 2 3 1 0 2nd Level "a" "3.14" STRING STRING 3 3 0 1 2nd Level "1" "3.14" STRING STRING 3 3 0 1 2nd Level "3.14" "3.14" STRING STRING 3 3 0 1 2nd Level "b,c" "3.14" STRING STRING 3 3 0 1 2nd Level "b" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "3.14" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "3.14" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "3.14" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"a": 3} OBJECT OBJECT 4 4 0 1 2nd Level [1, 2] [1, 2] ARRAY ARRAY 5 5 0 1 2nd Level "a" "b,c" STRING STRING 3 3 0 1 2nd Level "1" "b,c" STRING STRING 3 3 0 1 2nd Level "3.14" "b,c" STRING STRING 3 3 0 1 2nd Level "b,c" "b,c" STRING STRING 3 3 0 1 2nd Level "b" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b,c" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b,c" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b,c" STRING STRING 3 3 0 1 2nd Level "a" "b" STRING STRING 3 3 0 1 2nd Level "1" "b" STRING STRING 3 3 0 1 2nd Level "3.14" "b" STRING STRING 3 3 0 1 2nd Level "b,c" "b" STRING STRING 3 3 0 1 2nd Level "b" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "b" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "b" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "b" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "b" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "b" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15" STRING STRING 3 3 0 1 2nd Level "a" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "a" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "1" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "3.14" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b,c" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "b" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "2015-01-15 23:24:25.000000" STRING STRING 3 3 0 1 2nd Level {"a": 3} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level {"type": "Point", "coordinates": [1, 1]} {"type": "Point", "coordinates": [1, 1]} OBJECT OBJECT 4 4 0 1 2nd Level "a" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "1" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "b" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type16:yv4=" STRING STRING 3 3 0 1 2nd Level "a" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type13:MTk5Mg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type252:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type251:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type250:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "1" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "b" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type249:yv66vg==" STRING STRING 3 3 0 1 2nd Level "a" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "1" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "3.14" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b,c" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "b" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "2015-01-15 23:24:25.000000" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type16:yv4=" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type13:MTk5Mg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type252:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type251:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type250:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type249:yv66vg==" "base64:type15:Zm9v" STRING STRING 3 3 0 1 2nd Level "base64:type15:Zm9v" "base64:type15:Zm9v" STRING STRING 3 3 0 1 "Testcase for Enum" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation "Testcase for Set" validation_stage side1 side2 side1_json_type side2_json_type side1_json_weightage side2_json_weightage json_compare first_level_validation