create schema test_row_in;
set current_schema to 'test_row_in';
set dolphin.b_compatibility_mode to on;
create table all_types_table (
`int1` tinyint,
`uint1` tinyint unsigned,
`int2` smallint,
`uint2` smallint unsigned,
`int4` integer,
`uint4` integer unsigned,
`int8` bigint,
`uint8` bigint unsigned,
`float4` float4,
`float8` float8,
`numeric` decimal(20, 6),
`bit1` bit(1),
`bit64` bit(64),
`boolean` boolean,
`date` date,
`time` time,
`time4` time(4),
`datetime` datetime,
`datetime4` datetime(4) default '2023-12-30 12:00:12',
`timestamp` timestamp,
`timestamp4` timestamp(4) default '2023-12-30 12:00:12',
`year` year,
`char` char(100),
`varchar` varchar(100),
`binary` binary(100),
`varbinary` varbinary(100),
`tinyblob` tinyblob,
`blob` blob,
`mediumblob` mediumblob,
`longblob` longblob,
`text` text,
`enum_t` enum('a', 'b', 'c'),
`set_t` set('a', 'b', 'c'),
`json` json,
`null` integer
);
set dolphin.b_compatibility_mode = on;
INSERT INTO all_types_table
VALUES(
1,
1,
1,
1,
1,
1,
1,
1,
1.0,
1.0,
3.14259,
1,
10101100,
1,
'2024-01-11',
'11:47:58',
'11:47:58.7896',
'2024-01-11 11:49:25',
'2024-01-11 11:49:25.1234',
'2024-01-11 11:49:25',
'2024-01-11 11:49:25.1234',
'2024',
'62.345*67-89',
'62.345*67-89',
'67890 - 12345 = 55545',
'67890 - 12345 = 55545',
'67890 - 12345 = 55545',
'67890 - 12345 = 55545',
'67890 - 12345 = 55545',
'67890 - 12345 = 55545',
'67890 - 12345 = 55545',
'b',
'a,b',
json_object('a', 2, 'b', 3),
NULL
);
select row(1, row((select `int1` from all_types_table limit 1),(select `int1` from all_types_table limit 1))) in (row(1, row((select `int1` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))) in (row(1, row((select `uint1` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `int2` from all_types_table limit 1))) in (row(1, row((select `int2` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))) in (row(1, row((select `uint2` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `int4` from all_types_table limit 1))) in (row(1, row((select `int4` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))) in (row(1, row((select `uint4` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `int8` from all_types_table limit 1))) in (row(1, row((select `int8` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))) in (row(1, row((select `uint8` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `float4` from all_types_table limit 1))) in (row(1, row((select `float4` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `float8` from all_types_table limit 1))) in (row(1, row((select `float8` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))) in (row(1, row((select `numeric` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))) in (row(1, row((select `bit1` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))) in (row(1, row((select `bit64` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))) in (row(1, row((select `boolean` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `int1` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `int1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))) in (row(1, row((select `uint1` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `int2` from all_types_table limit 1))) in (row(1, row((select `int2` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))) in (row(1, row((select `uint2` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `int4` from all_types_table limit 1))) in (row(1, row((select `int4` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))) in (row(1, row((select `uint4` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `int8` from all_types_table limit 1))) in (row(1, row((select `int8` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))) in (row(1, row((select `uint8` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `float4` from all_types_table limit 1))) in (row(1, row((select `float4` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `float8` from all_types_table limit 1))) in (row(1, row((select `float8` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))) in (row(1, row((select `numeric` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))) in (row(1, row((select `bit1` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))) in (row(1, row((select `bit64` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))) in (row(1, row((select `boolean` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `uint1` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `uint1` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `int2` from all_types_table limit 1))) in (row(1, row((select `int2` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))) in (row(1, row((select `uint2` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `int4` from all_types_table limit 1))) in (row(1, row((select `int4` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))) in (row(1, row((select `uint4` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `int8` from all_types_table limit 1))) in (row(1, row((select `int8` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))) in (row(1, row((select `uint8` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `float4` from all_types_table limit 1))) in (row(1, row((select `float4` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `float8` from all_types_table limit 1))) in (row(1, row((select `float8` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))) in (row(1, row((select `numeric` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))) in (row(1, row((select `bit1` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))) in (row(1, row((select `bit64` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))) in (row(1, row((select `boolean` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `int2` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `int2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))) in (row(1, row((select `uint2` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `int4` from all_types_table limit 1))) in (row(1, row((select `int4` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))) in (row(1, row((select `uint4` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `int8` from all_types_table limit 1))) in (row(1, row((select `int8` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))) in (row(1, row((select `uint8` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `float4` from all_types_table limit 1))) in (row(1, row((select `float4` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `float8` from all_types_table limit 1))) in (row(1, row((select `float8` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))) in (row(1, row((select `numeric` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))) in (row(1, row((select `bit1` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))) in (row(1, row((select `bit64` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))) in (row(1, row((select `boolean` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `uint2` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `uint2` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `int4` from all_types_table limit 1))) in (row(1, row((select `int4` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))) in (row(1, row((select `uint4` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `int8` from all_types_table limit 1))) in (row(1, row((select `int8` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))) in (row(1, row((select `uint8` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `float4` from all_types_table limit 1))) in (row(1, row((select `float4` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `float8` from all_types_table limit 1))) in (row(1, row((select `float8` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))) in (row(1, row((select `numeric` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))) in (row(1, row((select `bit1` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))) in (row(1, row((select `bit64` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))) in (row(1, row((select `boolean` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `int4` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `int4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))) in (row(1, row((select `uint4` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `int8` from all_types_table limit 1))) in (row(1, row((select `int8` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))) in (row(1, row((select `uint8` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `float4` from all_types_table limit 1))) in (row(1, row((select `float4` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `float8` from all_types_table limit 1))) in (row(1, row((select `float8` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))) in (row(1, row((select `numeric` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))) in (row(1, row((select `bit1` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))) in (row(1, row((select `bit64` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))) in (row(1, row((select `boolean` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `uint4` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `uint4` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `int8` from all_types_table limit 1))) in (row(1, row((select `int8` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))) in (row(1, row((select `uint8` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `float4` from all_types_table limit 1))) in (row(1, row((select `float4` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `float8` from all_types_table limit 1))) in (row(1, row((select `float8` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))) in (row(1, row((select `numeric` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))) in (row(1, row((select `bit1` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))) in (row(1, row((select `bit64` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))) in (row(1, row((select `boolean` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `int8` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `int8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))) in (row(1, row((select `uint8` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `float4` from all_types_table limit 1))) in (row(1, row((select `float4` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `float8` from all_types_table limit 1))) in (row(1, row((select `float8` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))) in (row(1, row((select `numeric` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))) in (row(1, row((select `bit1` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))) in (row(1, row((select `bit64` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))) in (row(1, row((select `boolean` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `uint8` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `uint8` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `float4` from all_types_table limit 1))) in (row(1, row((select `float4` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `float8` from all_types_table limit 1))) in (row(1, row((select `float8` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))) in (row(1, row((select `numeric` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))) in (row(1, row((select `bit1` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))) in (row(1, row((select `bit64` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))) in (row(1, row((select `boolean` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float4` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `float4` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `float8` from all_types_table limit 1))) in (row(1, row((select `float8` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))) in (row(1, row((select `numeric` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))) in (row(1, row((select `bit1` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))) in (row(1, row((select `bit64` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))) in (row(1, row((select `boolean` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `float8` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `float8` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))) in (row(1, row((select `numeric` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))) in (row(1, row((select `bit1` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))) in (row(1, row((select `bit64` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))) in (row(1, row((select `boolean` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `numeric` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `numeric` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))) in (row(1, row((select `bit1` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))) in (row(1, row((select `bit64` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))) in (row(1, row((select `boolean` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit1` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `bit1` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))) in (row(1, row((select `bit64` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))) in (row(1, row((select `boolean` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `bit64` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `bit64` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))) in (row(1, row((select `boolean` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `boolean` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `boolean` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `date` from all_types_table limit 1))) in (row(1, row((select `date` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `date` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `date` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `time` from all_types_table limit 1))) in (row(1, row((select `time` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `time` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `time4` from all_types_table limit 1))) in (row(1, row((select `time4` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `time4` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `time4` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))) in (row(1, row((select `datetime` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `datetime` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))) in (row(1, row((select `datetime4` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `datetime4` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `datetime4` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))) in (row(1, row((select `timestamp` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `timestamp` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))) in (row(1, row((select `timestamp4` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `timestamp4` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `timestamp4` from all_types_table limit 1))));
select row(1, row((select `year` from all_types_table limit 1),(select `year` from all_types_table limit 1))) in (row(1, row((select `year` from all_types_table limit 1),(select `year` from all_types_table limit 1))));
select row(1, row((select `year` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `year` from all_types_table limit 1))));
select row(1, row((select `year` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `year` from all_types_table limit 1))));
select row(1, row((select `year` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `year` from all_types_table limit 1))));
select row(1, row((select `year` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `year` from all_types_table limit 1))));
select row(1, row((select `year` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `year` from all_types_table limit 1))));
select row(1, row((select `year` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `year` from all_types_table limit 1))));
select row(1, row((select `year` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `year` from all_types_table limit 1))));
select row(1, row((select `year` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `year` from all_types_table limit 1))));
select row(1, row((select `year` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `year` from all_types_table limit 1))));
select row(1, row((select `year` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `year` from all_types_table limit 1))));
select row(1, row((select `year` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `year` from all_types_table limit 1))));
select row(1, row((select `year` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `year` from all_types_table limit 1))));
select row(1, row((select `year` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `year` from all_types_table limit 1))));
select row(1, row((select `char` from all_types_table limit 1),(select `char` from all_types_table limit 1))) in (row(1, row((select `char` from all_types_table limit 1),(select `char` from all_types_table limit 1))));
select row(1, row((select `char` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `char` from all_types_table limit 1))));
select row(1, row((select `char` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `char` from all_types_table limit 1))));
select row(1, row((select `char` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `char` from all_types_table limit 1))));
select row(1, row((select `char` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `char` from all_types_table limit 1))));
select row(1, row((select `char` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `char` from all_types_table limit 1))));
select row(1, row((select `char` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `char` from all_types_table limit 1))));
select row(1, row((select `char` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `char` from all_types_table limit 1))));
select row(1, row((select `char` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `char` from all_types_table limit 1))));
select row(1, row((select `char` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `char` from all_types_table limit 1))));
select row(1, row((select `char` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `char` from all_types_table limit 1))));
select row(1, row((select `char` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `char` from all_types_table limit 1))));
select row(1, row((select `char` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `char` from all_types_table limit 1))));
select row(1, row((select `varchar` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))) in (row(1, row((select `varchar` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))));
select row(1, row((select `varchar` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))));
select row(1, row((select `varchar` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))));
select row(1, row((select `varchar` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))));
select row(1, row((select `varchar` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))));
select row(1, row((select `varchar` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))));
select row(1, row((select `varchar` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))));
select row(1, row((select `varchar` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))));
select row(1, row((select `varchar` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))));
select row(1, row((select `varchar` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))));
select row(1, row((select `varchar` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))));
select row(1, row((select `varchar` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `varchar` from all_types_table limit 1))));
select row(1, row((select `binary` from all_types_table limit 1),(select `binary` from all_types_table limit 1))) in (row(1, row((select `binary` from all_types_table limit 1),(select `binary` from all_types_table limit 1))));
select row(1, row((select `binary` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `binary` from all_types_table limit 1))));
select row(1, row((select `binary` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `binary` from all_types_table limit 1))));
select row(1, row((select `binary` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `binary` from all_types_table limit 1))));
select row(1, row((select `binary` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `binary` from all_types_table limit 1))));
select row(1, row((select `binary` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `binary` from all_types_table limit 1))));
select row(1, row((select `binary` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `binary` from all_types_table limit 1))));
select row(1, row((select `binary` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `binary` from all_types_table limit 1))));
select row(1, row((select `binary` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `binary` from all_types_table limit 1))));
select row(1, row((select `binary` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `binary` from all_types_table limit 1))));
select row(1, row((select `binary` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `binary` from all_types_table limit 1))));
select row(1, row((select `varbinary` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))) in (row(1, row((select `varbinary` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))));
select row(1, row((select `varbinary` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))));
select row(1, row((select `varbinary` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))));
select row(1, row((select `varbinary` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))));
select row(1, row((select `varbinary` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))));
select row(1, row((select `varbinary` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))));
select row(1, row((select `varbinary` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))));
select row(1, row((select `varbinary` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))));
select row(1, row((select `varbinary` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))));
select row(1, row((select `varbinary` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `varbinary` from all_types_table limit 1))));
select row(1, row((select `tinyblob` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))) in (row(1, row((select `tinyblob` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))));
select row(1, row((select `tinyblob` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))));
select row(1, row((select `tinyblob` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))));
select row(1, row((select `tinyblob` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))));
select row(1, row((select `tinyblob` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))));
select row(1, row((select `tinyblob` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))));
select row(1, row((select `tinyblob` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))));
select row(1, row((select `tinyblob` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))));
select row(1, row((select `tinyblob` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `tinyblob` from all_types_table limit 1))));
select row(1, row((select `blob` from all_types_table limit 1),(select `blob` from all_types_table limit 1))) in (row(1, row((select `blob` from all_types_table limit 1),(select `blob` from all_types_table limit 1))));
select row(1, row((select `blob` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `blob` from all_types_table limit 1))));
select row(1, row((select `blob` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `blob` from all_types_table limit 1))));
select row(1, row((select `blob` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `blob` from all_types_table limit 1))));
select row(1, row((select `blob` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `blob` from all_types_table limit 1))));
select row(1, row((select `blob` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `blob` from all_types_table limit 1))));
select row(1, row((select `blob` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `blob` from all_types_table limit 1))));
select row(1, row((select `blob` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `blob` from all_types_table limit 1))));
select row(1, row((select `mediumblob` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))) in (row(1, row((select `mediumblob` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))));
select row(1, row((select `mediumblob` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))));
select row(1, row((select `mediumblob` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))));
select row(1, row((select `mediumblob` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))));
select row(1, row((select `mediumblob` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))));
select row(1, row((select `mediumblob` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))));
select row(1, row((select `mediumblob` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `mediumblob` from all_types_table limit 1))));
select row(1, row((select `longblob` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))) in (row(1, row((select `longblob` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))));
select row(1, row((select `longblob` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))));
select row(1, row((select `longblob` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))));
select row(1, row((select `longblob` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))));
select row(1, row((select `longblob` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))));
select row(1, row((select `longblob` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `longblob` from all_types_table limit 1))));
select row(1, row((select `text` from all_types_table limit 1),(select `text` from all_types_table limit 1))) in (row(1, row((select `text` from all_types_table limit 1),(select `text` from all_types_table limit 1))));
select row(1, row((select `text` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `text` from all_types_table limit 1))));
select row(1, row((select `text` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `text` from all_types_table limit 1))));
select row(1, row((select `text` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `text` from all_types_table limit 1))));
select row(1, row((select `text` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `text` from all_types_table limit 1))));
select row(1, row((select `enum_t` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))) in (row(1, row((select `enum_t` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))));
select row(1, row((select `enum_t` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))));
select row(1, row((select `enum_t` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))));
select row(1, row((select `enum_t` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `enum_t` from all_types_table limit 1))));
select row(1, row((select `set_t` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))) in (row(1, row((select `set_t` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))));
select row(1, row((select `set_t` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))));
select row(1, row((select `set_t` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `set_t` from all_types_table limit 1))));
select row(1, row((select `json` from all_types_table limit 1),(select `json` from all_types_table limit 1))) in (row(1, row((select `json` from all_types_table limit 1),(select `json` from all_types_table limit 1))));
select row(1, row((select `json` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `json` from all_types_table limit 1))));
select row(1, row((select `NULL` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))) in (row(1, row((select `NULL` from all_types_table limit 1),(select `NULL` from all_types_table limit 1))));
drop table all_types_table;
set dolphin.b_compatibility_mode to off;
drop schema test_row_in cascade;
reset current_schema;