21052 lines
1.6 MiB
21052 lines
1.6 MiB
# 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 |