Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( KeylessSetup = [][]SetupScript{MydbData, KeylessData} VersionedSetup = [][]SetupScript{MydbData, MyhistorytableData} OrdinalSetup = [][]SetupScript{MydbData, Invert_pkData, Ordinals_ddlData} FooSetup = [][]SetupScript{MydbData, FooData} JsonSetup = [][]SetupScript{MydbData, JsontableData} SpatialSetup = [][]SetupScript{MydbData, SpatialData} PksSetup = [][]SetupScript{MydbData, Pk_tablesData} GraphSetup = [][]SetupScript{MydbData, Graph_tablesData} ReservedSetup = [][]SetupScript{MydbData, Reserved_keywordsData} GeneratedColumnSetup = [][]SetupScript{MydbData, Generated_column_tablesData} SysbenchSetup = [][]SetupScript{MydbData, SysbenchData} Mytable = [][]SetupScript{MydbData, MytableData} ChecksSetup = [][]SetupScript{MydbData, Check_constraintData} NullsSetup = [][]SetupScript{MydbData, Null_rangesData} ComplexIndexSetup = [][]SetupScript{MydbData, Comp_index_tablesData} ImdbPlanSetup = [][]SetupScript{MydbData, ImdbData} TpchPlanSetup = [][]SetupScript{MydbData, TpchData} TpccPlanSetup = [][]SetupScript{MydbData, TpccData} TpcdsPlanSetup = [][]SetupScript{MydbData, TpcdsData} LoadDataSetup = [][]SetupScript{MydbData, LoadtableData} XySetup = [][]SetupScript{MydbData, XyData} JoinsSetup = [][]SetupScript{MydbData, JoinData} IntegrationPlanSetup = [][]SetupScript{MydbData, Integration_testData} SpecialSetup = [][]SetupScript{ MydbData, AutoincrementData, BigtableData, DatetimetableData, EmptytableData, Fk_tblData, FloattableData, NewlinetableData, NiltableData, OthertableData, SpecialtableData, StringandtableData, TabletestData, TypestableData, PeopleData, Reserved_keywordsData, } SimpleSetup = [][]SetupScript{ MydbData, MytableData, AutoincrementData, BigtableData, DatetimetableData, EmptytableData, Fk_tblData, FloattableData, NewlinetableData, NiltableData, OthertableData, Invert_pkData, SpecialtableData, StringandtableData, TabletestData, TypestableData, PeopleData, Reserved_keywordsData, Pk_tablesData, Ordinals_ddlData, JsontableData, MyhistorytableData, KeylessData, FooData, Graph_tablesData, XyData, } PlanSetup = [][]SetupScript{ MydbData, MytableData, AutoincrementData, BigtableData, DatetimetableData, EmptytableData, Fk_tblData, FloattableData, NewlinetableData, NiltableData, OthertableData, SpecialtableData, StringandtableData, TabletestData, TypestableData, PeopleData, Reserved_keywordsData, Pk_tablesData, Ordinals_ddlData, JsontableData, MyhistorytableData, KeylessData, FooData, Graph_tablesData, XyData, Invert_pkData, JoinData, } )
View Source
var AutoincrementData = []SetupScript{{
`drop table if exists auto_increment_tbl`,
"CREATE TABLE `auto_increment_tbl` ( `pk` bigint NOT NULL AUTO_INCREMENT, `c0` bigint, PRIMARY KEY (`pk`) )",
`INSERT INTO auto_increment_tbl (c0) values
(11),
(22),
(33)`,
}}
View Source
var BigtableData = []SetupScript{{
`create table bigtable (t varchar(1) primary key, n bigint)`,
`insert into bigtable values
('a', 1),
('s', 2),
('f', 3),
('g', 1),
('h', 2),
('j', 3),
('k', 1),
('l', 2),
('ñ', 4),
('z', 5),
('x', 6),
('c', 7),
('v', 8),
('b', 9)`,
}}
View Source
var BlobData = []SetupScript{{
`create table blobt (i bigint primary key, b longblob);`,
`create table textt (i bigint primary key, t text);`,
`insert into blobt values
(1, 'first row'),
(2, 'second row'),
(3, 'third row')`,
`insert into textt values
(1, 'first row'),
(2, 'second row'),
(3, 'third row')`,
}}
View Source
var Check_constraintData = []SetupScript{{
`CREATE TABLE checks (a INTEGER PRIMARY KEY, b INTEGER, c varchar(20))`,
`ALTER TABLE checks ADD CONSTRAINT chk1 CHECK (B > 0)`,
`ALTER TABLE checks ADD CONSTRAINT chk2 CHECK (b > 0) NOT ENFORCED`,
`ALTER TABLE checks ADD CONSTRAINT chk3 CHECK (B > 1)`,
`ALTER TABLE checks ADD CONSTRAINT chk4 CHECK (upper(C) = c)`,
}}
View Source
var Comp_index_tablesData = []SetupScript{{
`CREATE TABLE comp_index_t0 (pk BIGINT PRIMARY KEY, v1 BIGINT, v2 BIGINT)`,
`create INDEX v_idx on comp_index_t0 (v1, v2)`,
`INSERT INTO comp_index_t0 VALUES (0,0,48),(1,0,52),(2,2,4),(3,2,10),(4,3,35),(5,5,36),(6,5,60),(7,6,1),(8,6,51),
(9,6,60),(10,6,73),(11,9,44),(12,9,97),(13,13,44),(14,14,53),(15,14,57),(16,14,98),(17,16,19),(18,16,53),(19,16,95),
(20,18,31),(21,19,48),(22,19,75),(23,19,97),(24,24,60),(25,25,14),(26,25,31),(27,27,9),(28,27,24),(29,28,24),(30,28,83),
(31,31,14),(32,33,39),(33,34,22),(34,34,91),(35,35,89),(36,38,20),(37,38,66),(38,39,55),(39,39,86),(40,40,97),(41,42,0),
(42,42,82),(43,43,63),(44,44,48),(45,44,67),(46,45,22),(47,45,31),(48,45,63),(49,45,86),(50,46,46),(51,47,5),(52,48,22),
(53,49,0),(54,50,0),(55,50,14),(56,51,35),(57,54,38),(58,56,0),(59,56,60),(60,57,29),(61,57,49),(62,58,12),(63,58,32),
(64,59,29),(65,59,45),(66,59,54),(67,60,66),(68,61,3),(69,61,34),(70,63,19),(71,63,69),(72,65,80),(73,65,97),(74,67,95),
(75,68,11),(76,69,34),(77,72,52),(78,74,81),(79,76,39),(80,78,0),(81,78,90),(82,79,36),(83,80,61),(84,80,88),(85,81,4),
(86,82,16),(87,83,30),(88,83,74),(89,84,9),(90,84,45),(91,86,56),(92,86,88),(93,87,51),(94,89,3),(95,93,19),(96,93,21),
(97,93,96),(98,98,0),(99,98,51),(100,98,61);`,
`CREATE TABLE comp_index_t1 (pk BIGINT PRIMARY KEY, v1 BIGINT, v2 BIGINT, v3 BIGINT)`,
`create INDEX v_idx on comp_index_t1 (v1, v2, v3)`,
`INSERT INTO comp_index_t1 VALUES (0,0,3,16),(1,2,65,9),(2,3,38,37),(3,3,99,99),(4,5,17,42),(5,6,6,76),(6,6,81,33),
(7,7,33,51),(8,7,37,42),(9,8,9,21),(10,8,37,90),(11,9,39,20),(12,9,71,82),(13,10,16,21),(14,10,32,46),(15,10,47,36),
(16,12,44,84),(17,12,66,40),(18,13,47,30),(19,13,56,41),(20,14,38,24),(21,14,91,1),(22,15,2,69),(23,16,40,36),
(24,20,29,93),(25,21,9,89),(26,21,42,76),(27,23,13,53),(28,23,28,68),(29,23,28,90),(30,23,30,44),(31,24,20,8),
(32,25,49,88),(33,26,15,28),(34,27,35,12),(35,28,39,84),(36,29,7,38),(37,29,21,74),(38,29,27,48),(39,29,77,46),
(40,31,47,21),(41,31,47,91),(42,32,40,76),(43,33,70,50),(44,34,27,58),(45,35,32,36),(46,36,4,36),(47,36,84,75),
(48,37,27,32),(49,38,88,68),(50,41,17,68),(51,41,77,26),(52,42,80,85),(53,45,1,57),(54,46,58,8),(55,49,26,11),
(56,50,49,20),(57,50,86,6),(58,54,13,78),(59,54,57,83),(60,55,45,46),(61,55,81,80),(62,56,0,97),(63,56,8,78),
(64,56,58,4),(65,56,66,33),(66,57,7,52),(67,59,77,53),(68,60,8,70),(69,61,11,25),(70,63,85,23),(71,65,17,9),
(72,66,46,46),(73,66,73,4),(74,67,55,27),(75,70,8,54),(76,70,58,33),(77,71,39,15),(78,72,65,64),(79,74,78,26),
(80,75,91,35),(81,76,40,52),(82,76,44,87),(83,81,32,4),(84,82,11,6),(85,82,46,32),(86,84,40,8),(87,84,93,37),
(88,85,53,50),(89,86,63,79),(90,87,22,34),(91,87,57,62),(92,88,88,42),(93,90,30,67),(94,91,15,15),(95,93,7,26),
(96,94,92,38),(97,95,89,66),(98,97,63,19),(99,98,31,21),(100,98,42,22)`,
`CREATE TABLE comp_index_t2 (pk BIGINT PRIMARY KEY, v1 BIGINT, v2 BIGINT, v3 BIGINT, v4 BIGINT)`,
`create INDEX v_idx on comp_index_t2 (v1, v2, v3, v4)`,
`INSERT INTO comp_index_t2 VALUES (0,0,33,2,67),(1,0,55,14,32),(2,1,43,13,36),(3,1,72,29,21),(4,2,27,1,75),
(5,3,31,22,81),(6,4,6,67,80),(7,4,10,53,69),(8,4,27,77,5),(9,5,17,52,13),(10,5,32,30,48),(11,5,76,70,46),(12,7,7,66,62),
(13,7,21,75,70),(14,7,76,26,47),(15,8,54,46,87),(16,8,99,43,1),(17,9,7,74,92),(18,9,19,38,35),(19,10,36,27,5),
(20,12,0,33,62),(21,12,42,15,31),(22,12,46,43,23),(23,15,42,17,60),(24,17,49,14,7),(25,17,75,86,18),(26,20,30,34,71),
(27,21,21,32,8),(28,22,21,28,78),(29,22,98,22,21),(30,23,43,13,11),(31,24,26,69,25),(32,24,45,96,0),(33,29,72,97,93),
(34,32,16,97,29),(35,33,29,69,6),(36,33,53,56,88),(37,33,86,12,22),(38,34,55,37,34),(39,34,87,13,51),(40,34,89,27,90),
(41,35,6,86,74),(42,36,7,40,16),(43,37,35,6,44),(44,37,41,36,10),(45,38,71,22,37),(46,39,45,75,55),(47,41,1,85,9),
(48,41,21,82,54),(49,43,23,15,0),(50,43,66,85,66),(51,45,9,76,9),(52,47,94,56,21),(53,48,3,11,18),(54,50,26,23,71),
(55,50,36,73,58),(56,50,39,26,37),(57,50,79,10,12),(58,50,97,0,79),(59,51,97,39,36),(60,52,72,44,2),(61,53,6,53,89),
(62,53,48,19,36),(63,55,31,29,92),(64,57,25,97,65),(65,63,50,20,43),(66,64,23,33,5),(67,64,26,77,97),(68,64,41,74,85),
(69,64,77,41,17),(70,66,97,6,39),(71,67,39,87,15),(72,69,81,70,37),(73,70,40,19,5),(74,70,56,21,22),(75,71,3,49,55),
(76,71,48,89,99),(77,73,10,2,0),(78,73,91,56,0),(79,74,22,42,16),(80,74,35,72,97),(81,76,74,97,18),(82,82,29,66,71),
(83,82,31,22,99),(84,82,70,5,47),(85,83,37,36,16),(86,83,41,53,57),(87,84,56,78,18),(88,85,2,3,88),(89,86,7,57,96),
(90,87,23,16,63),(91,87,66,8,22),(92,88,57,12,88),(93,89,1,27,50),(94,89,91,7,45),(95,90,25,0,17),(96,91,23,2,9),
(97,93,56,71,53),(98,94,43,71,43),(99,94,79,53,73),(100,96,73,38,38)`,
`CREATE TABLE comp_index_t3 (pk BIGINT PRIMARY KEY, v1 BLOB, v2 BLOB)`,
`create INDEX v_idx on comp_index_t3 (v1(3))`,
`INSERT INTO comp_index_t3 VALUES (0, 'a', 'a'), (1, 'ab', 'ab'), (2, 'abc', 'abc'), (3, 'abcde', 'abcde')`,
`create table pref_index_t2 (i int primary key, v1 varchar(10), v2 varchar(10), unique index (v1(3),v2(5))) collate utf8mb4_0900_ai_ci;`,
`create table pref_index_t1 (i int primary key, v1 text, v2 text, unique index (v1(3),v2(5)));`,
`create table pref_index_t3 (v1 varchar(10), v2 varchar(10), unique index (v1(3),v2(5)));`,
`create table pref_index_t4 (i int primary key, v1 varchar(10), v2 varchar(10), unique index (v1(3),v2(5)));`,
}}
View Source
var DatetimetableData = []SetupScript{{
"CREATE TABLE `datetime_table` ( `i` bigint NOT NULL, `date_col` date, `datetime_col` datetime, `timestamp_col` timestamp, `time_col` time(6), PRIMARY KEY (`i`) )",
`insert into datetime_table values
(1, '2019-12-31T12:00:00Z', '2020-01-01T12:00:00Z', '2020-01-02T12:00:00Z', '03:10:0'),
(2, '2020-01-03T12:00:00Z', '2020-01-04T12:00:00Z', '2020-01-05T12:00:00Z', '04:00:44'),
(3, '2020-01-07T00:00:00Z', '2020-01-07T12:00:00Z', '2020-01-07T12:00:01Z', '15:00:00.005000')`,
`create index datetime_table_d on datetime_table (date_col)`,
`create index datetime_table_dt on datetime_table (datetime_col)`,
`create index datetime_table_ts on datetime_table (timestamp_col)`,
}}
View Source
var EmptytableData = []SetupScript{{
`create table emptytable (i mediumint primary key, s varchar(20))`,
}}
View Source
var ExplodeData = []SetupScript{{
`create table explode (a bigint, b JSON, c varchar(20))`,
`insert into explode values
(1, '["a", "b"]', 'first'),
(2, '["c", "d"]', 'second'),
(3, '["e", "f"]', 'third')`,
}}
View Source
var Fk_tblData = []SetupScript{{
"CREATE TABLE `fk_tbl` ( `pk` bigint NOT NULL, `a` bigint, `b` varchar(20), PRIMARY KEY (`pk`) )",
`ALTER TABLE fk_tbl ADD CONSTRAINT fk1 FOREIGN KEY (a,b) REFERENCES mytable (i,s) ON DELETE CASCADE`,
}}
View Source
var FloattableData = []SetupScript{{
"CREATE TABLE `floattable` ( `i` bigint NOT NULL, `f32` float NOT NULL, `f64` double NOT NULL, PRIMARY KEY (`i`) )",
`insert into floattable values
(1, 1.0, 1.0),
(2, 1.5, 1.5),
(3, 2.0, 2.0),
(4, 2.5, 2.5),
(-1, -1.0, -1.0),
(-2, -1.5, -1.5)`,
`create index floattable_f on floattable (f64)`,
}}
View Source
var FooData = []SetupScript{{
`create database if not exists foo`,
`create table foo.othertable (text varchar(20) primary key, number mediumint)`,
`insert into foo.othertable values
('a', 4),
('b', 2),
('c', 0)`,
}}
View Source
var Generated_column_tablesData = []SetupScript{{
`create table generated_stored_1 (a int primary key, b int as (a + 1) stored)`,
`create index i1 on generated_stored_1(b)`,
`insert into generated_stored_1 (a) values (1), (2)`,
`create table generated_stored_2 (
a int primary key,
b int as (a + 1) stored,
c int
)`,
`insert into generated_stored_2 (a,c) values (1,3)`,
`create index i2 on generated_stored_2(b,c)`,
`create table generated_virtual_1 (
a int primary key,
b int,
c int generated always as (a + b) virtual,
index idx_c (c)
)`,
`insert into generated_virtual_1 (a, b) values (1, 2), (3, 4)`,
`create table generated_virtual_keyless (
j json,
v int generated always as (j->>'$.a') virtual,
index idx_v (v)
)`,
`insert into generated_virtual_keyless(j) values ('{"a": 1}'), ('{"a": 2}'), ('{"b": 3}')`,
}}
View Source
var Graph_tablesData = []SetupScript{{
"CREATE TABLE `bus_routes` ( `origin` varchar(20) NOT NULL, `dst` varchar(20) NOT NULL, PRIMARY KEY (`origin`,`dst`) )",
`insert into bus_routes values
('New York', 'Boston'),
('Boston', 'New York'),
('New York', 'Washington'),
('Washington', 'Boston'),
('Washington', 'Raleigh')`,
"CREATE TABLE `parts` ( `part` varchar(20) NOT NULL, `sub_part` varchar(20) NOT NULL, `quantity` bigint NOT NULL, PRIMARY KEY (`part`,`sub_part`) )",
`insert into parts values
('pie', 'crust', 1),
('pie', 'filling', 2),
('crust', 'flour', 20),
('crust', 'sugar', 2),
('crust', 'butter', 15),
('crust', 'salt', 15),
('filling', 'sugar', 5),
('filling', 'fruit', 9),
('filling', 'salt', 3),
('filling', 'butter', 3)`,
}}
View Source
var ImdbData = []SetupScript{{
`CREATE TABLE aka_name (
id integer NOT NULL PRIMARY KEY,
person_id integer NOT NULL,
name text NOT NULL,
imdb_index character varying(12),
name_pcode_cf character varying(5),
name_pcode_nf character varying(5),
surname_pcode character varying(5),
md5sum character varying(32)
);`,
`CREATE TABLE aka_title (
id integer NOT NULL PRIMARY KEY,
movie_id integer NOT NULL,
title text NOT NULL,
imdb_index character varying(12),
kind_id integer NOT NULL,
production_year integer,
phonetic_code character varying(5),
episode_of_id integer,
season_nr integer,
episode_nr integer,
note text,
md5sum character varying(32)
);`,
`CREATE TABLE cast_info (
id integer NOT NULL PRIMARY KEY,
person_id integer NOT NULL,
movie_id integer NOT NULL,
person_role_id integer,
note text,
nr_order integer,
role_id integer NOT NULL
);`,
`CREATE TABLE char_name (
id integer NOT NULL PRIMARY KEY,
name text NOT NULL,
imdb_index character varying(12),
imdb_id integer,
name_pcode_nf character varying(5),
surname_pcode character varying(5),
md5sum character varying(32)
);`,
`CREATE TABLE comp_cast_type (
id integer NOT NULL PRIMARY KEY,
kind character varying(32) NOT NULL
);`,
`CREATE TABLE company_name (
id integer NOT NULL PRIMARY KEY,
name text NOT NULL,
country_code character varying(255),
imdb_id integer,
name_pcode_nf character varying(5),
name_pcode_sf character varying(5),
md5sum character varying(32)
);`,
`CREATE TABLE company_type (
id integer NOT NULL PRIMARY KEY,
kind character varying(32) NOT NULL
);`,
`CREATE TABLE complete_cast (
id integer NOT NULL PRIMARY KEY,
movie_id integer,
subject_id integer NOT NULL,
status_id integer NOT NULL
);`,
`CREATE TABLE info_type (
id integer NOT NULL PRIMARY KEY,
info character varying(32) NOT NULL
);`,
`CREATE TABLE keyword (
id integer NOT NULL PRIMARY KEY,
keyword text NOT NULL,
phonetic_code character varying(5)
);`,
`CREATE TABLE kind_type (
id integer NOT NULL PRIMARY KEY,
kind character varying(15) NOT NULL
);`,
`CREATE TABLE link_type (
id integer NOT NULL PRIMARY KEY,
link character varying(32) NOT NULL
);`,
`CREATE TABLE movie_companies (
id integer NOT NULL PRIMARY KEY,
movie_id integer NOT NULL,
company_id integer NOT NULL,
company_type_id integer NOT NULL,
note text
);`,
`CREATE TABLE movie_info (
id integer NOT NULL PRIMARY KEY,
movie_id integer NOT NULL,
info_type_id integer NOT NULL,
info text NOT NULL,
note text
);`,
`CREATE TABLE movie_info_idx (
id integer NOT NULL PRIMARY KEY,
movie_id integer NOT NULL,
info_type_id integer NOT NULL,
info text NOT NULL,
note text
);`,
`CREATE TABLE movie_keyword (
id integer NOT NULL PRIMARY KEY,
movie_id integer NOT NULL,
keyword_id integer NOT NULL
);`,
`CREATE TABLE movie_link (
id integer NOT NULL PRIMARY KEY,
movie_id integer NOT NULL,
linked_movie_id integer NOT NULL,
link_type_id integer NOT NULL
);`,
`CREATE TABLE name (
id integer NOT NULL PRIMARY KEY,
name text NOT NULL,
imdb_index character varying(12),
imdb_id integer,
gender character varying(1),
name_pcode_cf character varying(5),
name_pcode_nf character varying(5),
surname_pcode character varying(5),
md5sum character varying(32)
);`,
`CREATE TABLE person_info (
id integer NOT NULL PRIMARY KEY,
person_id integer NOT NULL,
info_type_id integer NOT NULL,
info text NOT NULL,
note text
);`,
`CREATE TABLE role_type (
id integer NOT NULL PRIMARY KEY,
role character varying(32) NOT NULL
);`,
`CREATE TABLE title (
id integer NOT NULL PRIMARY KEY,
title text NOT NULL,
imdb_index character varying(12),
kind_id integer NOT NULL,
production_year integer,
imdb_id integer,
phonetic_code character varying(5),
episode_of_id integer,
season_nr integer,
episode_nr integer,
series_years character varying(49),
md5sum character varying(32)
);`,
`create index company_id_movie_companies on movie_companies(company_id);`,
`create index company_type_id_movie_companies on movie_companies(company_type_id);`,
`create index info_type_id_movie_info_idx on movie_info_idx(info_type_id);`,
`create index info_type_id_movie_info on movie_info(info_type_id);`,
`create index info_type_id_person_info on person_info(info_type_id);`,
`create index keyword_id_movie_keyword on movie_keyword(keyword_id);`,
`create index kind_id_aka_title on aka_title(kind_id);`,
`create index kind_id_title on title(kind_id);`,
`create index linked_movie_id_movie_link on movie_link(linked_movie_id);`,
`create index link_type_id_movie_link on movie_link(link_type_id);`,
`create index movie_id_aka_title on aka_title(movie_id);`,
`create index movie_id_cast_info on cast_info(movie_id);`,
`create index movie_id_complete_cast on complete_cast(movie_id);`,
`create index movie_id_movie_companies on movie_companies(movie_id);`,
`create index movie_id_movie_info_idx on movie_info_idx(movie_id);`,
`create index movie_id_movie_keyword on movie_keyword(movie_id);`,
`create index movie_id_movie_link on movie_link(movie_id);`,
`create index movie_id_movie_info on movie_info(movie_id);`,
`create index person_id_aka_name on aka_name(person_id);`,
`create index person_id_cast_info on cast_info(person_id);`,
`create index person_id_person_info on person_info(person_id);`,
`create index person_role_id_cast_info on cast_info(person_role_id);`,
`create index role_id_cast_info on cast_info(role_id);`,
`analyze table aka_name update histogram on id using data '{"row_count": 900662}';`,
}}
View Source
var Integration_testData = []SetupScript{{
`create table T52LX (
id varchar(24) not null,
DZLIM varchar(100) not null,
F3YUE varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY VAEXO (DZLIM)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table YYBCX (
id varchar(24) not null,
ESFVY varchar(100) not null,
SL76B varchar(100) not null,
GE5EL double,
F7A4Q double,
TUV25 double,
YKSSU varchar(1000),
FHCYT varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY WITSV (ESFVY),
UNIQUE KEY CEAF3 (SL76B)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table XGSJM (
id varchar(24) not null,
DZLIM varchar(100) not null,
F3YUE varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY CQIIE (DZLIM)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table WE72E (
id varchar(24) not null,
QZ7E7 varchar(100) not null,
SSHPJ varchar(100) not null,
FHCYT varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY SOCSM (SSHPJ),
UNIQUE KEY LOW5B (QZ7E7)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table TNMXI (
id varchar(24) not null,
DZLIM varchar(100) not null,
F3YUE varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY TCKRP (DZLIM)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table F35MI (
id varchar(24) not null,
DZLIM varchar(100) not null,
F3YUE varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY FTWOK (DZLIM)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table E2I7U (
id varchar(24) not null,
DKCAJ varchar(24) not null,
KNG7T varchar(24),
TW55N varchar(100) not null,
QRQXW double not null,
ECXAJ double not null,
FGG57 varchar(100),
ZH72S varchar(100),
FSK67 varchar(100) not null,
XQDYT varchar(24) not null,
TCE7A double,
IWV2H double,
HPCMS varchar(24) not null,
N5CC2 varchar(1000),
FHCYT varchar(1000),
ETAQ7 double,
A75X7 double,
PRIMARY KEY (id),
KEY XQDYT (XQDYT),
KEY KNG7T (KNG7T),
KEY URBSA (ZH72S),
KEY HPCMS (HPCMS),
KEY DKCAJ (DKCAJ),
UNIQUE KEY TKKOQ (FGG57),
UNIQUE KEY SFMWS (TW55N),
constraint NEPLHKGH foreign key (XQDYT) references XGSJM (id) on delete cascade on update cascade,
constraint ZANIGGZJ foreign key (KNG7T) references WE72E (id) on delete cascade on update cascade,
constraint GYIuPKNP foreign key (HPCMS) references TNMXI (id) on delete cascade on update cascade,
constraint VOLFAYOL foreign key (DKCAJ) references F35MI (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table IIISV (
id varchar(24) not null,
DZLIM varchar(100) not null,
F3YUE varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY PGYTV (DZLIM)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table ARLV5 (
id varchar(24) not null,
LUEVY varchar(24) not null,
F6NSZ varchar(24) not null,
PRIMARY KEY (id),
KEY F6NSZ (F6NSZ),
KEY LUEVY (LUEVY),
UNIQUE KEY G3AVB (LUEVY, F6NSZ),
constraint MPYOIDMG foreign key (LUEVY) references E2I7U (id) on delete cascade on update cascade,
constraint RMWuWBGS foreign key (F6NSZ) references IIISV (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table EPZU6 (
id varchar(24) not null,
TOFPN varchar(100) not null,
SJYN2 varchar(100) not null,
BTXC5 varchar(100) not null,
FVUCX varchar(100) not null,
SWCQV int not null,
YKSSU varchar(1000),
FHCYT varchar(1000),
PRIMARY KEY (id),
KEY EUOFY (BTXC5),
KEY SZ5IY (TOFPN),
KEY LJD63 (SJYN2),
KEY LP75T (FVUCX)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table S3FQX (
id varchar(24) not null,
ADWYM tinyint not null,
FPUYA tinyint not null,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table RLOHD (
id varchar(24) not null,
LUEVY varchar(24) not null,
LIILR double,
KSFXH double,
KLMAU double,
ecm double,
RQI4M varchar(1000),
FHCYT varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY HVHB5 (LUEVY),
constraint BPWTWuWC foreign key (LUEVY) references E2I7U (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table SFEGG (
id varchar(24) not null,
NO52D varchar(100) not null,
VYO5E varchar(100),
DKCAJ varchar(24) not null,
ADURZ int not null,
FHCYT varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY DKRQA (NO52D, VYO5E, DKCAJ),
KEY DKCAJ (DKCAJ),
constraint TLBCIFRR foreign key (DKCAJ) references F35MI (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table OUBDL (
id varchar(24) not null,
FTQLQ varchar(100),
ZH72S varchar(200),
SFJ6L varchar(2500),
V5DPX varchar(100),
LJLUM varchar(100),
IDPK7 varchar(100),
NO52D varchar(100),
ZRV3B varchar(100),
VYO5E varchar(100),
YKSSU text,
FHCYT text,
QZ6VT varchar(1000),
PRIMARY KEY (id),
KEY IRMAC (NO52D),
KEY SVIT7 (FTQLQ),
KEY CZWS6 (V5DPX),
KEY JFRPY (ZH72S)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table SISUT (
id varchar(24) not null,
T4IBQ varchar(100),
ZH72S varchar(100),
AMYXQ varchar(100),
KTNZ2 varchar(100),
HIID2 varchar(100),
DN3OQ varchar(100),
VVKNB varchar(100),
SH7TP varchar(100),
SRZZO varchar(100),
QZ6VT varchar(100),
PRIMARY KEY (id),
KEY TTQYJ (T4IBQ),
KEY Z7LT5 (ZH72S)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table NZKPM (
id varchar(24) not null,
T4IBQ varchar(100),
FGG57 varchar(100),
SSHPJ varchar(100),
NLA6O varchar(100),
SFJ6L varchar(100),
TJPT7 varchar(100),
ARN5P varchar(200),
SYPKF varchar(100),
IVFMK varchar(100),
IDE43 varchar(500),
AZ6SP varchar(500),
FSDY2 varchar(100),
XOSD4 varchar(200),
HMW4H varchar(100),
S76OM varchar(100),
vaf varchar(100),
ZROH6 varchar(100),
QCGTS varchar(100),
LNFM6 varchar(100),
TVAWL varchar(100),
HDLCL varchar(100),
BHHW6 varchar(100),
FHCYT varchar(1000),
QZ6VT varchar(1000),
PRIMARY KEY (id),
KEY UFF3F (T4IBQ),
KEY FXQHW (FGG57)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table JMRQL (
id varchar(24) not null,
DZLIM varchar(100) not null,
F3YUE varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY LYX3G (DZLIM)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table SZW6V (
id varchar(24) not null,
T4IBQ varchar(100) not null,
V7UFH varchar(100) not null,
SYPKF varchar(100) not null,
H4DMT varchar(100) not null,
SWCQV int not null,
YKSSU varchar(1000),
FHCYT varchar(1000),
PRIMARY KEY (id),
KEY SPZMU (T4IBQ),
KEY GGI5L (SYPKF),
KEY UTKLA (V7UFH),
KEY EMW6Y (H4DMT)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table XOAOP (
id varchar(24) not null,
DZLIM varchar(100) not null,
F3YUE varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY THCUL (DZLIM)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table JJGQT (
id varchar(24) not null,
CH3FR varchar(24) not null,
LUEVY varchar(24) not null,
PRIMARY KEY (id),
KEY CH3FR (CH3FR),
UNIQUE KEY QHY76 (LUEVY),
constraint DRBJBJAI foreign key (LUEVY) references E2I7U (id) on delete cascade on update cascade,
constraint HZHLDWSR foreign key (CH3FR) references XOAOP (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table TPXHZ (
id varchar(24) not null,
SVAZ4 varchar(100) not null,
PRIMARY KEY (id),
UNIQUE KEY SVAZ4 (SVAZ4)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table YK2GW (
id varchar(24) not null,
FTQLQ varchar(100) not null,
TUXML varchar(100),
PAEF5 varchar(100),
RUCY4 varchar(100),
TPNJ6 varchar(100) not null,
LBL53 varchar(100),
NB3QS varchar(100),
EO7IV varchar(100),
MUHJF varchar(100),
FM34L text,
TY5RF text,
ZHTLH text,
NPB7W text,
SX3HH text,
ISBNF text,
YA7YB text,
C5YKB text,
QK7KT text,
FFGE6 text,
FIIGJ text,
SH3NC text,
NTENA text,
M4AUB text,
X5AIR text,
SAB6M text,
G5QI5 text,
ZVQVD text,
YKSSU varchar(1000),
FHCYT varchar(1000),
PRIMARY KEY (id),
KEY TU5AX (LBL53),
KEY C7DFM (NB3QS),
KEY NFJNB (EO7IV),
KEY TWFWA (MUHJF),
UNIQUE KEY FEGLT (PAEF5),
UNIQUE KEY T3X5H (TUXML),
UNIQUE KEY EZCTT (FTQLQ)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table IJLXP (
id varchar(24) not null,
WZP3R varchar(100) not null,
IXUXU varchar(24) not null,
PRIMARY KEY (id),
KEY IXUXU (IXUXU),
UNIQUE KEY IFQUF (WZP3R, IXUXU),
constraint YWSOXPJG foreign key (IXUXU) references YK2GW (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table HU5A5 (
id varchar(24) not null,
TOFPN varchar(100) not null,
I3VTA varchar(200) not null,
SFJ6L varchar(2500),
V5DPX varchar(100) not null,
LJLUM varchar(100) not null,
IDPK7 varchar(100) not null,
NO52D varchar(100) not null,
ZRV3B varchar(100) not null,
VYO5E varchar(100),
SWCQV int not null,
YKSSU varchar(1000),
FHCYT varchar(1000),
PRIMARY KEY (id),
KEY UYQR2 (TOFPN),
KEY Z2WXS (I3VTA)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table JDLNA (
id varchar(24) not null,
FTQLQ varchar(100) not null,
FWWIQ varchar(100),
O3QXW varchar(100),
FHCYT text,
PRIMARY KEY (id),
UNIQUE KEY XDW7Z (FTQLQ)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table FCBVZ (
id varchar(24) not null,
FZ2R5 varchar(24) not null,
J6B7H double not null,
BMNNY double not null,
PRIMARY KEY (id),
UNIQUE KEY IC4BT (FZ2R5),
constraint XDGOFPLT foreign key (FZ2R5) references JDLNA (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table IMJ6V (
id varchar(24) not null,
FTQLQ varchar(100),
BACOW varchar(100),
PRIMARY KEY (id),
KEY EUAEL (BACOW),
KEY C7XE4 (FTQLQ)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table TPXBU (
id varchar(24) not null,
BTXC5 varchar(100),
FHCYT varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY UZ6GK (BTXC5)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table THNTS (
id varchar(24) not null,
NFRYN varchar(24) not null,
IXUXU varchar(24),
FHCYT varchar(1000),
PRIMARY KEY (id),
KEY NFRYN (NFRYN),
KEY IXUXU (IXUXU),
constraint PVRKLKKQ foreign key (NFRYN) references JMRQL (id) on delete cascade on update cascade,
constraint uIRGWEWQ foreign key (IXUXU) references YK2GW (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table HGMQ6 (
id varchar(24) not null,
GXLUB varchar(24) not null,
LUEVY varchar(24) not null,
M22QN varchar(24) not null,
TJPT7 varchar(100) not null,
ARN5P varchar(200) not null,
XOSD4 varchar(200) not null,
IDE43 varchar(500),
HMW4H varchar(100),
ZBT6R int,
FSDY2 varchar(100) not null,
LT7K6 double,
SPPYD double,
QCGTS double,
TEUJA varchar(24),
QQV4M varchar(24),
FHCYT varchar(1000),
PRIMARY KEY (id),
KEY M22QN (M22QN),
KEY GXLUB (GXLUB),
KEY QQV4M (QQV4M),
KEY LUEVY (LUEVY),
KEY TEUJA (TEUJA),
constraint ZTDIWKIu foreign key (TEUJA) references NZKPM (id) on delete cascade on update cascade,
constraint OPENAEGM foreign key (LUEVY) references E2I7U (id) on delete cascade on update cascade,
constraint GRXCIZOK foreign key (QQV4M) references SZW6V (id) on delete cascade on update cascade,
constraint VMJAAVNQ foreign key (M22QN) references TPXBU (id) on delete cascade on update cascade,
constraint XOVPPACH foreign key (GXLUB) references THNTS (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table D34QP (
id varchar(24) not null,
TWMSR varchar(100) not null,
QHMGE varchar(1000),
MLNPU varchar(100) not null,
FI3GA varchar(100) not null,
ZNP4P varchar(100) not null,
PRIMARY KEY (id),
UNIQUE KEY LZLGJ (FI3GA),
UNIQUE KEY F2C6B (TWMSR)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table SEQS3 (
id varchar(24) not null,
Z7CP5 varchar(24) not null,
YH4XB varchar(24) not null,
PRIMARY KEY (id),
KEY Z7CP5 (Z7CP5),
UNIQUE KEY SQKGT (Z7CP5, YH4XB),
KEY YH4XB (YH4XB),
constraint OCPWMCFX foreign key (YH4XB) references D34QP (id) on delete cascade on update cascade,
constraint CROMXATM foreign key (Z7CP5) references HGMQ6 (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table FEVH4 (
id varchar(24) not null,
DZLIM varchar(100) not null,
F3YUE varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY QPADP (DZLIM)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table NOXN3 (
id varchar(24) not null,
BRQP2 varchar(24) not null,
FFTBJ varchar(24) not null,
A7XO2 varchar(24),
KBO7R double not null,
ECDKM double,
NUMK2 int not null,
LETOE int not null,
YKSSU varchar(1000),
FHCYT varchar(1000),
PRIMARY KEY (id),
KEY A7XO2 (A7XO2),
KEY BRQP2 (BRQP2),
KEY FFTBJ (FFTBJ),
constraint YHuJBJOA foreign key (BRQP2) references E2I7U (id) on delete cascade on update cascade,
constraint MZZLFWKV foreign key (FFTBJ) references E2I7U (id) on delete cascade on update cascade,
constraint OOIIJMRS foreign key (A7XO2) references FEVH4 (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table FLQLP (
id varchar(24) not null,
FZ2R5 varchar(24) not null,
LUEVY varchar(24) not null,
M22QN varchar(24) not null,
OVE3E varchar(24) not null,
NRURT varchar(24),
OCA7E varchar(24),
XMM6Q varchar(24),
V5DPX varchar(100) not null,
S3Q3Y double not null,
ZRV3B varchar(100) not null,
FHCYT text,
PRIMARY KEY (id),
KEY M22QN (M22QN),
KEY XMM6Q (XMM6Q),
KEY OCA7E (OCA7E),
KEY OVE3E (OVE3E),
KEY FZ2R5 (FZ2R5),
KEY LUEVY (LUEVY),
KEY NRURT (NRURT),
constraint RSSVKRQV foreign key (OVE3E) references SFEGG (id) on delete cascade on update cascade,
constraint EXBYRKVB foreign key (XMM6Q) references HU5A5 (id) on delete cascade on update cascade,
constraint HCEKFTJK foreign key (M22QN) references TPXBU (id) on delete cascade on update cascade,
constraint KWNRRXuP foreign key (NRURT) references OUBDL (id) on delete cascade on update cascade,
constraint RQuDOGQu foreign key (OCA7E) references EPZU6 (id) on delete cascade on update cascade,
constraint uIRDRBRV foreign key (FZ2R5) references JDLNA (id) on delete cascade on update cascade,
constraint MSMuETPN foreign key (LUEVY) references E2I7U (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table AMYXQ (
id varchar(24) not null,
GXLUB varchar(24) not null,
LUEVY varchar(24) not null,
XQDYT varchar(24) not null,
AMYXQ double not null,
OZTQF double not null,
Z35GY double not null,
KKGN5 varchar(24),
PRIMARY KEY (id),
KEY GXLUB (GXLUB),
KEY XQDYT (XQDYT),
KEY LUEVY (LUEVY),
UNIQUE KEY VN3QP (GXLUB, LUEVY),
KEY KKGN5 (KKGN5),
constraint AVDTHRGA foreign key (XQDYT) references XGSJM (id) on delete cascade on update cascade,
constraint TTJXJHYD foreign key (GXLUB) references THNTS (id) on delete cascade on update cascade,
constraint uVMOASBI foreign key (KKGN5) references SISUT (id) on delete cascade on update cascade,
constraint RYPGYAZH foreign key (LUEVY) references E2I7U (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table ZTFET (
id varchar(24) not null,
CYZU6 varchar(200) not null,
AERTL varchar(200) not null,
PMM7A tinyint not null,
SIJCN varchar(200) not null,
RTLWN varchar(200) not null,
ZMABC varchar(200) not null,
W3GHO text not null,
U7IJ3 text,
PRIMARY KEY (id),
UNIQUE KEY CIMX7 (CYZU6, AERTL),
KEY BRPXE (CYZU6),
KEY SSO2T (AERTL)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table WRZVO (
id varchar(24) not null,
TVNW2 varchar(100),
ZHITY varchar(100),
SYPKF varchar(100),
IDUT2 varchar(200),
O6QJ3 varchar(1000),
NO2JA varchar(1000),
YKSSU text,
FHCYT text,
QZ6VT varchar(1000),
PRIMARY KEY (id),
KEY QKJKS (SYPKF),
KEY GAG3S (TVNW2),
KEY JH666 (ZHITY)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table WGSDC (
id varchar(24) not null,
NOHHR varchar(100) not null,
AVPYF varchar(100) not null,
SYPKF varchar(100) not null,
IDUT2 varchar(200) not null,
FZXV5 varchar(100),
DQYGV varchar(100),
SWCQV int not null,
YKSSU varchar(1000),
FHCYT varchar(1000),
PRIMARY KEY (id),
KEY X6K5N (IDUT2),
KEY M5B5R (SYPKF),
KEY XW5IP (NOHHR),
KEY F7H3Y (AVPYF),
KEY T65YI (FZXV5),
KEY XRKQ4 (DQYGV)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table HDDVB (
id varchar(24) not null,
FV24E varchar(24) not null,
UJ6XY varchar(24) not null,
M22QN varchar(24) not null,
NZ4MQ varchar(24) not null,
ETPQV varchar(24),
PRUV2 varchar(24),
YKSSU varchar(1000),
FHCYT varchar(1000),
PRIMARY KEY (id),
KEY M22QN (M22QN),
KEY PRUV2 (PRUV2),
KEY NZ4MQ (NZ4MQ),
KEY FV24E (FV24E),
KEY UJ6XY (UJ6XY),
KEY ETPQV (ETPQV),
constraint XDHAOISE foreign key (NZ4MQ) references YYBCX (id) on delete cascade on update cascade,
constraint CYXIDCXY foreign key (FV24E) references E2I7U (id) on delete cascade on update cascade,
constraint ZKROQGGX foreign key (ETPQV) references WRZVO (id) on delete cascade on update cascade,
constraint NTEDELZZ foreign key (PRUV2) references WGSDC (id) on delete cascade on update cascade,
constraint QCVKLYAS foreign key (UJ6XY) references E2I7U (id) on delete cascade on update cascade,
constraint LOQSITZQ foreign key (M22QN) references TPXBU (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table PG27A (
id varchar(24) not null,
DZLIM varchar(100) not null,
F3YUE varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY S4YPB (DZLIM)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table NPCYY (
id varchar(24) not null,
CH3FR varchar(24) not null,
XVSBH varchar(24),
B5OUF int,
PRIMARY KEY (id),
KEY CH3FR (CH3FR),
KEY XVSBH (XVSBH),
UNIQUE KEY S2DGA (CH3FR, XVSBH),
constraint LKKuNSTQ foreign key (CH3FR) references XOAOP (id) on delete cascade on update cascade,
constraint ZDHFJuOJ foreign key (XVSBH) references PG27A (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table SR2I6 (
id varchar(24) not null,
A7XO2 varchar(24) not null,
SSWZH varchar(24) not null,
PRIMARY KEY (id),
KEY SSWZH (SSWZH),
KEY A7XO2 (A7XO2),
UNIQUE KEY ZKOHZ (A7XO2, SSWZH),
constraint LXOBZQWX foreign key (A7XO2) references FEVH4 (id) on delete cascade on update cascade,
constraint PDDMDJJW foreign key (SSWZH) references T52LX (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table TTGWX (
id varchar(24) not null,
LUEVY varchar(24) not null,
CBVKT varchar(100) not null,
PRIMARY KEY (id),
KEY F7YYM (LUEVY),
UNIQUE KEY GKL7R (CBVKT),
constraint GWWPGJWX foreign key (LUEVY) references E2I7U (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table TDRVG (
id varchar(24) not null,
FGG57 varchar(100) not null,
SSHPJ varchar(100) not null,
SFJ6L varchar(100) not null,
ZH72S varchar(100) not null,
PRIMARY KEY (id),
KEY P62K5 (SSHPJ),
KEY XEGEF (SFJ6L),
KEY WJM3Z (ZH72S),
UNIQUE KEY TK2R2 (FGG57)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table ZYGMF (
id varchar(24) not null,
DZLIM varchar(100) not null,
F3YUE varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY JVSQT (DZLIM)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table FG26Y (
id varchar(24) not null,
T4IBQ varchar(100),
ner varchar(100),
ber varchar(100),
hr varchar(100),
mmr varchar(100),
QZ6VT varchar(1000),
PRIMARY KEY (id),
KEY SPAIF (T4IBQ)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table SZQWJ (
id varchar(24) not null,
GXLUB varchar(24) not null,
CH3FR varchar(24) not null,
D237E int not null,
JOGI6 varchar(24),
PRIMARY KEY (id),
KEY GXLUB (GXLUB),
KEY CH3FR (CH3FR),
UNIQUE KEY ZRLKW (GXLUB, CH3FR),
KEY JOGI6 (JOGI6),
constraint TJNEMQOD foreign key (GXLUB) references THNTS (id) on delete cascade on update cascade,
constraint HWEBZOML foreign key (CH3FR) references XOAOP (id) on delete cascade on update cascade,
constraint XVMMFQXM foreign key (JOGI6) references FG26Y (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table QYWQD (
id varchar(24) not null,
WNUNU varchar(24) not null,
HHVLX varchar(24) not null,
HVHRZ double not null,
YKSSU varchar(1000),
FHCYT varchar(1000),
PRIMARY KEY (id),
KEY HHVLX (HHVLX),
KEY WNUNU (WNUNU),
constraint DSGZOCYH foreign key (HHVLX) references NOXN3 (id) on delete cascade on update cascade,
constraint ZWNuDBuB foreign key (WNUNU) references NOXN3 (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table I66GN (
id varchar(24) not null,
FZ2R5 varchar(24),
GJBJC varchar(24),
PRIMARY KEY (id),
KEY FZ2R5 (FZ2R5),
UNIQUE KEY TBOZS (FZ2R5, GJBJC),
KEY GJBJC (GJBJC),
constraint RHXJuQZJ foreign key (FZ2R5) references JDLNA (id) on delete cascade on update cascade,
constraint OOTILHEG foreign key (GJBJC) references ZYGMF (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table BACOW (
id varchar(24) not null,
WZP3R varchar(100) not null,
FZ2R5 varchar(24) not null,
PRIMARY KEY (id),
KEY FZ2R5 (FZ2R5),
UNIQUE KEY CYVZQ (WZP3R),
constraint NDCWQFVN foreign key (FZ2R5) references JDLNA (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table moa (
id varchar(24) not null,
DZLIM varchar(100) not null,
F3YUE varchar(1000),
PRIMARY KEY (id),
UNIQUE KEY TTHMB (DZLIM)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table TA5EB (
id varchar(24) not null,
V34C7 varchar(24) not null,
GJBJC varchar(24) not null,
PRIMARY KEY (id),
KEY V34C7 (V34C7),
KEY GJBJC (GJBJC),
UNIQUE KEY B3QPZ (V34C7, GJBJC),
constraint HBCXAVLB foreign key (GJBJC) references ZYGMF (id) on delete cascade on update cascade,
constraint ZLSVFLDM foreign key (V34C7) references moa (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table NMYH3 (
id varchar(24) not null,
FTQLQ varchar(100),
RCRDD varchar(100),
FWWIQ varchar(100),
O3QXW varchar(100),
FHCYT text,
PRIMARY KEY (id),
KEY DQQLF (FTQLQ)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table FEIOE (
id varchar(24) not null,
LUEVY varchar(24) not null,
GMSGA varchar(24) not null,
FVGD2 int not null,
YP2CR int not null,
TQ7W3 int not null,
PRIMARY KEY (id),
KEY LUEVY (LUEVY),
KEY GMSGA (GMSGA),
UNIQUE KEY A7XUS (LUEVY, GMSGA),
constraint ILKPBIJV foreign key (GMSGA) references NPCYY (id) on delete cascade on update cascade,
constraint GDBYYSTF foreign key (LUEVY) references E2I7U (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`create table FBPKL (
id varchar(24) not null,
V34C7 varchar(24) not null,
CH3FR varchar(24) not null,
PRIMARY KEY (id),
KEY V34C7 (V34C7),
KEY CH3FR (CH3FR),
UNIQUE KEY ANGG7 (V34C7, CH3FR),
constraint AJZVSJXW foreign key (CH3FR) references XOAOP (id) on delete cascade on update cascade,
constraint ZFEIKGRF foreign key (V34C7) references moa (id) on delete cascade on update cascade
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;`,
`analyze table wgsdc update histogram on (id) using data '{"row_count": 68, "qualifier": {"database": "mydb", "table": "wgsdc", "index": "PRIMARY"}}';
---`,
`analyze table wgsdc update histogram on (AVPYF) using data '{"row_count": 68, "qualifier": {"database": "mydb", "table": "wgsdc", "index": "F7H3Y"}}';
---`,
`analyze table wgsdc update histogram on (SYPKF) using data '{"row_count": 68, "qualifier": {"database": "mydb", "table": "wgsdc", "index": "M5B5R"}}';
---`,
`analyze table wgsdc update histogram on (FZXV5) using data '{"row_count": 68, "qualifier": {"database": "mydb", "table": "wgsdc", "index": "T65YI"}}';
---`,
`analyze table wgsdc update histogram on (IDUT2) using data '{"row_count": 68, "qualifier": {"database": "mydb", "table": "wgsdc", "index": "X6K5N"}}';
---`,
`analyze table wgsdc update histogram on (DQYGV) using data '{"row_count": 68, "qualifier": {"database": "mydb", "table": "wgsdc", "index": "XRKQ4"}}';
---`,
`analyze table wgsdc update histogram on (NOHHR) using data '{"row_count": 68, "qualifier": {"database": "mydb", "table": "wgsdc", "index": "XW5IP"}}';
---`,
`analyze table hddvb update histogram on (id) using data '{"row_count": 1112, "qualifier": {"database": "mydb", "table": "hddvb", "index": "PRIMARY"}}';
---`,
`analyze table hddvb update histogram on (ETPQV) using data '{"row_count": 1112, "qualifier": {"database": "mydb", "table": "hddvb", "index": "ETPQV"}}';
---`,
`analyze table hddvb update histogram on (FV24E) using data '{"row_count": 1112, "qualifier": {"database": "mydb", "table": "hddvb", "index": "FV24E"}}';
---`,
`analyze table hddvb update histogram on (M22QN) using data '{"row_count": 1112, "qualifier": {"database": "mydb", "table": "hddvb", "index": "M22QN"}}';
---`,
`analyze table hddvb update histogram on (NZ4MQ) using data '{"row_count": 1112, "qualifier": {"database": "mydb", "table": "hddvb", "index": "NZ4MQ"}}';
---`,
`analyze table hddvb update histogram on (PRUV2) using data '{"row_count": 1112, "qualifier": {"database": "mydb", "table": "hddvb", "index": "PRUV2"}}';
---`,
`analyze table hddvb update histogram on (UJ6XY) using data '{"row_count": 1112, "qualifier": {"database": "mydb", "table": "hddvb", "index": "UJ6XY"}}';
---`,
`analyze table epzu6 update histogram on (id) using data '{"row_count": 213, "qualifier": {"database": "mydb", "table": "epzu6", "index": "PRIMARY"}}';
---`,
`analyze table epzu6 update histogram on (btxc5) using data '{"row_count": 213, "qualifier": {"database": "mydb", "table": "epzu6", "index": "EUOFY"}}';
---`,
`analyze table epzu6 update histogram on (sjyn2) using data '{"row_count": 213, "qualifier": {"database": "mydb", "table": "epzu6", "index": "LJD63"}}';
---`,
`analyze table epzu6 update histogram on (fvucx) using data '{"row_count": 213, "qualifier": {"database": "mydb", "table": "epzu6", "index": "LP75T"}}';
---`,
`analyze table epzu6 update histogram on (tofpn) using data '{"row_count": 213, "qualifier": {"database": "mydb", "table": "epzu6", "index": "SZ5IY"}}';
---`,
`analyze table flqlp update histogram on (id) using data '{"row_count": 14781, "qualifier": {"database": "mydb", "table": "flqlp", "index": "PRIMARY"}}';
---`,
`analyze table flqlp update histogram on (fz2r5) using data '{"row_count": 14781, "qualifier": {"database": "mydb", "table": "flqlp", "index": "FZ2R5"}}';
---`,
`analyze table flqlp update histogram on (luevy) using data '{"row_count": 14781, "qualifier": {"database": "mydb", "table": "flqlp", "index": "LUEVY"}}';
---`,
`analyze table flqlp update histogram on (m22qn) using data '{"row_count": 14781, "qualifier": {"database": "mydb", "table": "flqlp", "index": "M22QN"}}';
---`,
`analyze table flqlp update histogram on (nrurt) using data '{"row_count": 14781, "qualifier": {"database": "mydb", "table": "flqlp", "index": "NRURT"}}';
---`,
`analyze table flqlp update histogram on (oca7e) using data '{"row_count": 14781, "qualifier": {"database": "mydb", "table": "flqlp", "index": "OCA7E"}}';
---`,
`analyze table flqlp update histogram on (ove3e) using data '{"row_count": 14781, "qualifier": {"database": "mydb", "table": "flqlp", "index": "OVE3E"}}';
---`,
`analyze table flqlp update histogram on (xmm6q) using data '{"row_count": 14781, "qualifier": {"database": "mydb", "table": "flqlp", "index": "XMM6Q"}}';
---`,
`analyze table hu5a5 update histogram on (id) using data '{"row_count": 34, "qualifier": {"database": "mydb", "table": "hu5a5", "index": "PRIMARY"}}';
---`,
`analyze table hu5a5 update histogram on (tofpn) using data '{"row_count": 34, "qualifier": {"database": "mydb", "table": "hu5a5", "index": "UYQR2"}}';
---`,
`analyze table hu5a5 update histogram on (i3vta) using data '{"row_count": 34, "qualifier": {"database": "mydb", "table": "hu5a5", "index": "Z2WXS"}}';
---`,
`analyze table e2i7u update histogram on (id) using data '{"row_count": 3842, "qualifier": {"database": "mydb", "table": "e2i7u", "index": "PRIMARY"}}';
---`,
`analyze table e2i7u update histogram on (dkcaj) using data '{"row_count": 3842, "qualifier": {"database": "mydb", "table": "e2i7u", "index": "DKCAJ"}}';
---`,
`analyze table e2i7u update histogram on (hpcms) using data '{"row_count": 3842, "qualifier": {"database": "mydb", "table": "e2i7u", "index": "HPCMS"}}';
---`,
`analyze table e2i7u update histogram on (kng7t) using data '{"row_count": 3842, "qualifier": {"database": "mydb", "table": "e2i7u", "index": "KNG7T"}}';
---`,
`analyze table e2i7u update histogram on (tw55n) using data '{"row_count": 3842, "qualifier": {"database": "mydb", "table": "e2i7u", "index": "SFMWS"}}';
---`,
`analyze table e2i7u update histogram on (fgg57) using data '{"row_count": 3842, "qualifier": {"database": "mydb", "table": "e2i7u", "index": "TKKOQ"}}';
---`,
`analyze table e2i7u update histogram on (zh72s) using data '{"row_count": 3842, "qualifier": {"database": "mydb", "table": "e2i7u", "index": "URBSA"}}';
---`,
`analyze table e2i7u update histogram on (xqdyt) using data '{"row_count": 3842, "qualifier": {"database": "mydb", "table": "e2i7u", "index": "XQDYT"}}';
---`,
`analyze table szw6v update histogram on (id) using data '{"row_count": 1, "qualifier": {"database": "mydb", "table": "szw6v", "index": "PRIMARY"}}';
---`,
`analyze table szw6v update histogram on (h4dmt) using data '{"row_count": 1, "qualifier": {"database": "mydb", "table": "szw6v", "index": "EMW6Y"}}';
---`,
`analyze table szw6v update histogram on (sypkf) using data '{"row_count": 1, "qualifier": {"database": "mydb", "table": "szw6v", "index": "GGI5L"}}';
---`,
`analyze table szw6v update histogram on (t4ibq) using data '{"row_count": 1, "qualifier": {"database": "mydb", "table": "szw6v", "index": "SPZMU"}}';
---`,
`analyze table szw6v update histogram on (v7ufh) using data '{"row_count": 1, "qualifier": {"database": "mydb", "table": "szw6v", "index": "UTKLA"}}';
---`,
`analyze table hgmq6 update histogram on (id) using data '{"row_count": 511969, "qualifier": {"database": "mydb", "table": "hgmq6", "index": "PRIMARY"}}';
---`,
`analyze table hgmq6 update histogram on (gxlub) using data '{"row_count": 511969, "qualifier": {"database": "mydb", "table": "hgmq6", "index": "GXLUB"}}';
---`,
`analyze table hgmq6 update histogram on (luevy) using data '{"row_count": 511969, "qualifier": {"database": "mydb", "table": "hgmq6", "index": "LUEVY"}}';
---`,
`analyze table hgmq6 update histogram on (m22qn) using data '{"row_count": 511969, "qualifier": {"database": "mydb", "table": "hgmq6", "index": "M22QN"}}';
---`,
`analyze table hgmq6 update histogram on (qqv4m) using data '{"row_count": 511969, "qualifier": {"database": "mydb", "table": "hgmq6", "index": "QQV4M"}}';
---`,
`analyze table hgmq6 update histogram on (teuja) using data '{"row_count": 511969, "qualifier": {"database": "mydb", "table": "hgmq6", "index": "TEUJA"}}';
---`,
`analyze table nzkpm update histogram on (fgg57) using data '{"row_count": 18779716, "qualifier": {"database": "mydb", "table": "nzkpm", "index": "FXQHW"}}';
---`,
`analyze table nzkpm update histogram on (t4ibq) using data '{"row_count": 18779716, "qualifier": {"database": "mydb", "table": "nzkpm", "index": "UFF3F"}}';
---`,
`analyze table TPXBU update histogram on (id) using data '{"row_count": 123867}';`,
`analyze table yk2gw update histogram on (nb3qs) using data '{"row_count": 2498, "qualifier": {"database": "mydb", "table": "yk2gw", "index": "C7DFM"}}';
---`,
`analyze table yk2gw update histogram on (ftqlq) using data '{"row_count": 2498, "qualifier": {"database": "mydb", "table": "yk2gw", "index": "EZCTT"}}';
---`,
`analyze table yk2gw update histogram on (paef5) using data '{"row_count": 2498, "qualifier": {"database": "mydb", "table": "yk2gw", "index": "FEGLT"}}';
---`,
`analyze table yk2gw update histogram on (eo7iv) using data '{"row_count": 2498, "qualifier": {"database": "mydb", "table": "yk2gw", "index": "NFJNB"}}';
---`,
`analyze table yk2gw update histogram on (tuxml) using data '{"row_count": 2498, "qualifier": {"database": "mydb", "table": "yk2gw", "index": "T3X5H"}}';
---`,
`analyze table yk2gw update histogram on (lbl53) using data '{"row_count": 2498, "qualifier": {"database": "mydb", "table": "yk2gw", "index": "TU5AX"}}';
---`,
`analyze table yk2gw update histogram on (muhjf) using data '{"row_count": 2498, "qualifier": {"database": "mydb", "table": "yk2gw", "index": "TWFWA"}}';
---`,
`analyze table jdlna update histogram on (ftqlq) using data '{"row_count": 399, "qualifier": {"database": "mydb", "table": "jdlna", "index": "XDW7Z"}}';
---`,
`analyze table jdlna update histogram on (ftqlq) using data '{"row_count": 399, "qualifier": {"database": "mydb", "table": "jdlna", "index": "XDW7Z"}}';
---`,
`analyze table tpxbu update histogram on (btxc5) using data '{"row_count": 123867, "qualifier": {"database": "mydb", "table": "tpxbu", "index": "UZ6GK"}}';
---`,
`analyze table sisut update histogram on (t4ibq) using data '{"row_count": 103907130, "qualifier": {"database": "mydb", "table": "sisut", "index": "TTQYJ"}}';
---`,
`analyze table sisut update histogram on (zh72s) using data '{"row_count": 103907130, "qualifier": {"database": "mydb", "table": "sisut", "index": "Z7LT5"}}';
---`,
`analyze table wrzvo update histogram on (tvnw2) using data '{"row_count": 39091, "qualifier": {"database": "mydb", "table": "wrzvo", "index": "GAG3S"}}';
---`,
`analyze table wrzvo update histogram on (zhity) using data '{"row_count": 39091, "qualifier": {"database": "mydb", "table": "wrzvo", "index": "JH666"}}';
---`,
`analyze table wrzvo update histogram on (sypkf) using data '{"row_count": 39091, "qualifier": {"database": "mydb", "table": "wrzvo", "index": "QKJKS"}}';
---`,
`analyze table wrzvo update histogram on (tvnw2) using data '{"row_count": 39091, "qualifier": {"database": "mydb", "table": "wrzvo", "index": "GAG3S"}}';
---`,
`analyze table wrzvo update histogram on (zhity) using data '{"row_count": 39091, "qualifier": {"database": "mydb", "table": "wrzvo", "index": "JH666"}}';
---`,
`analyze table wrzvo update histogram on (sypkf) using data '{"row_count": 39091, "qualifier": {"database": "mydb", "table": "wrzvo", "index": "QKJKS"}}';
---`,
`analyze table oubdl update histogram on (v5dpx) using data '{"row_count": 18395, "qualifier": {"database": "mydb", "table": "oubdl", "index": "CZWS6"}}';
---`,
`analyze table oubdl update histogram on (no52d) using data '{"row_count": 18395, "qualifier": {"database": "mydb", "table": "oubdl", "index": "IRMAC"}}';
---`,
`analyze table oubdl update histogram on (zh72s) using data '{"row_count": 18395, "qualifier": {"database": "mydb", "table": "oubdl", "index": "JFRPY"}}';
---`,
`analyze table oubdl update histogram on (ftqlq) using data '{"row_count": 18395, "qualifier": {"database": "mydb", "table": "oubdl", "index": "SVIT7"}}';
---`,
`analyze table sfegg update histogram on (dkcaj) using data '{"row_count": 380, "qualifier": {"database": "mydb", "table": "sfegg", "index": "DKCAJ"}}';
---`,
`analyze table sfegg update histogram on (no52d,vyo5e,dkcaj) using data '{"row_count": 380, "qualifier": {"database": "mydb", "table": "sfegg", "index": "DKRQA"}}';
---`,
`analyze table sfegg update histogram on (dkcaj) using data '{"row_count": 380, "qualifier": {"database": "mydb", "table": "sfegg", "index": "DKCAJ"}}';
---`,
`analyze table sfegg update histogram on (no52d,vyo5e,dkcaj) using data '{"row_count": 380, "qualifier": {"database": "mydb", "table": "sfegg", "index": "DKRQA"}}';
---`,
`analyze table THNTS update histogram on (id) using data '{"row_count": 2498}';`,
`analyze table JMRQL update histogram on (id) using data '{"row_count": 3}';`,
`analyze table YK2GW update histogram on (id) using data '{"row_count": 2498}';`,
`analyze table IJLXP update histogram on (id) using data '{"row_count": 5661}';`,
`analyze table HU5A5 update histogram on (id) using data '{"row_count": 34}';`,
`analyze table EPZU6 update histogram on (id) using data '{"row_count": 213}';`,
`analyze table WGSDC update histogram on (id) using data '{"row_count": 68}';`,
`analyze table SZW6V update histogram on (id) using data '{"row_count": 1}';`,
`analyze table SFEGG update histogram on (id) using data '{"row_count": 380}';`,
`analyze table JDLNA update histogram on (id) using data '{"row_count": 399}';`,
`analyze table I66GN update histogram on (id) using data '{"row_count": 239}';`,
`analyze table BACOW update histogram on (id) using data '{"row_count": 5148}';`,
`analyze table FLQLP update histogram on (id) using data '{"row_count": 14781}';`,
`analyze table S3FQX update histogram on (id) using data '{"row_count": 1}';`,
`analyze table JJGQT update histogram on (id) using data '{"row_count": 6}';`,
`analyze table AMYXQ update histogram on (id) using data '{"row_count": 4786678}';`,
`analyze table XGSJM update histogram on (id) using data '{"row_count": 5}';`,
`analyze table WE72E update histogram on (id) using data '{"row_count": 3181}';`,
`analyze table FCBVZ update histogram on (id) using data '{"row_count": 0}';`,
`analyze table RLOHD update histogram on (id) using data '{"row_count": 226}';`,
`analyze table T52LX update histogram on (id) using data '{"row_count": 10}';`,
`analyze table HDDVB update histogram on (id) using data '{"row_count": 1112}';`,
`analyze table YYBCX update histogram on (id) using data '{"row_count": 12}';`,
`analyze table FEVH4 update histogram on (id) using data '{"row_count": 56}';`,
`analyze table SR2I6 update histogram on (id) using data '{"row_count": 71}';`,
`analyze table NMYH3 update histogram on (id) using data '{"row_count": 415}';`,
`analyze table IMJ6V update histogram on (id) using data '{"row_count": 6140}';`,
`analyze table TDRVG update histogram on (id) using data '{"row_count": 47285}';`,
`analyze table IIISV update histogram on (id) using data '{"row_count": 13}';`,
`analyze table moa update histogram on (id) using data '{"row_count": 36}';`,
`analyze table FBPKL update histogram on (id) using data '{"row_count": 60}';`,
`analyze table TA5EB update histogram on (id) using data '{"row_count": 70}';`,
`analyze table HGMQ6 update histogram on (id) using data '{"row_count": 511969}';`,
`analyze table SEQS3 update histogram on (id) using data '{"row_count": 535843}';`,
`analyze table SZQWJ update histogram on (id) using data '{"row_count": 3936}';`,
`analyze table E2I7U update histogram on (id) using data '{"row_count": 3842}';`,
`analyze table ARLV5 update histogram on (id) using data '{"row_count": 291}';`,
`analyze table FEIOE update histogram on (id) using data '{"row_count": 6367}';`,
`analyze table TNMXI update histogram on (id) using data '{"row_count": 5}';`,
`analyze table F35MI update histogram on (id) using data '{"row_count": 5}';`,
`analyze table XOAOP update histogram on (id) using data '{"row_count": 74}';`,
`analyze table PG27A update histogram on (id) using data '{"row_count": 11}';`,
`analyze table NPCYY update histogram on (id) using data '{"row_count": 89}';`,
`analyze table TTGWX update histogram on (id) using data '{"row_count": 3}';`,
`analyze table QYWQD update histogram on (id) using data '{"row_count": 70692}';`,
`analyze table NOXN3 update histogram on (id) using data '{"row_count": 11813}';`,
`analyze table ZYGMF update histogram on (id) using data '{"row_count": 81}';`,
`analyze table TPXHZ update histogram on (id) using data '{"row_count": 16}';`,
`analyze table OUBDL update histogram on (id) using data '{"row_count": 18395}';`,
`analyze table SISUT update histogram on (id) using data '{"row_count": 103907130}';`,
`analyze table WRZVO update histogram on (id) using data '{"row_count": 39091}';`,
`analyze table NZKPM update histogram on (id) using data '{"row_count": 18779716}';`,
`analyze table FG26Y update histogram on (id) using data '{"row_count": 1001}';`,
`analyze table D34QP update histogram on (id) using data '{"row_count": 36}';`,
`analyze table ZTFET update histogram on (id) using data '{"row_count": 64}';`,
`CREATE TRIGGER SZW6V_on_insert BEFORE INSERT ON SZW6V
FOR EACH ROW
BEGIN
IF
NEW.T4IBQ IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.V7UFH IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.SYPKF IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.H4DMT IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF NEW.SWCQV NOT IN (0, 1)
THEN
-- SET @custom_error_message = 'The SWCQV field is an int boolean (0/1) meaning if record is fully SWCQV.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The SWCQV field is an int boolean (0/1) meaning if fully SWCQV.';
END IF;
UPDATE S3FQX SET ADWYM = 1;
END//`,
`CREATE TRIGGER SZW6V_on_update BEFORE UPDATE ON SZW6V
FOR EACH ROW
BEGIN
IF
NEW.T4IBQ IS NOT NULL AND (NEW.T4IBQ <> OLD.T4IBQ)
OR
NEW.V7UFH IS NOT NULL AND (NEW.V7UFH <> OLD.V7UFH)
OR
NEW.SYPKF IS NOT NULL AND (NEW.SYPKF <> OLD.SYPKF)
THEN
-- SET @custom_error_message = 'The fields identifying what to override can not be changed! Please use the ignore field and create new one if necessary.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The fields identifying what to override can not be changed! Please use the ignore field and create new one if necessary.';
END IF;
IF
NEW.H4DMT IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF NEW.SWCQV NOT IN (0, 1)
THEN
-- SET @custom_error_message = 'The SWCQV field is an int boolean (0/1) meaning if record is fully SWCQV.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The SWCQV field is an int boolean (0/1) meaning if fully SWCQV.';
END IF;
UPDATE S3FQX SET ADWYM = 1;
END//`,
`CREATE TRIGGER SZW6V_on_delete BEFORE DELETE ON SZW6V
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'Deletion is forbidden from override and additional tables. Please use the SWCQV field instead.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Deletion is forbidden from override and additional tables. Please use the SWCQV field instead.';
END//`,
`CREATE TRIGGER WGSDC_on_insert BEFORE INSERT ON WGSDC
FOR EACH ROW
BEGIN
IF
NEW.NOHHR IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.AVPYF IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.SYPKF IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.IDUT2 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.FZXV5 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.DQYGV IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF NEW.SWCQV NOT IN (0, 1)
THEN
-- SET @custom_error_message = 'The SWCQV field is an int boolean (0/1) meaning if record is fully SWCQV.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The SWCQV field is an int boolean (0/1) meaning if fully SWCQV.';
END IF;
IF NEW.FZXV5 IS NULL AND NEW.DQYGV IS NULL
THEN
-- SET @custom_error_message = 'Either the mutant or partner overridden field must have value!';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Either the mutant or partner overridden field must have value!';
END IF;
IF NEW.FZXV5 IS NOT NULL AND NEW.DQYGV IS NOT NULL
THEN
-- SET @custom_error_message = 'Only one of the mutant or partner overridden field can have value!';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Only one of the mutant or partner overridden field can have value!';
END IF;
UPDATE S3FQX SET ADWYM = 1;
END//`,
`CREATE TRIGGER WGSDC_on_update BEFORE UPDATE ON WGSDC
FOR EACH ROW
BEGIN
IF
NEW.NOHHR IS NOT NULL AND (NEW.NOHHR <> OLD.NOHHR)
OR
NEW.AVPYF IS NOT NULL AND (NEW.AVPYF <> OLD.AVPYF)
OR
NEW.SYPKF IS NOT NULL AND (NEW.SYPKF <> OLD.SYPKF)
OR
NEW.IDUT2 IS NOT NULL AND (NEW.IDUT2 <> OLD.IDUT2)
THEN
-- SET @custom_error_message = 'The fields identifying what to override can not be changed! Please use the ignore field and create new one if necessary.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The fields identifying what to override can not be changed! Please use the ignore field and create new one if necessary.';
END IF;
IF
NEW.FZXV5 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.DQYGV IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF NEW.SWCQV NOT IN (0, 1)
THEN
-- SET @custom_error_message = 'The SWCQV field is an int boolean (0/1) meaning if record is fully SWCQV.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The SWCQV field is an int boolean (0/1) meaning if fully SWCQV.';
END IF;
IF NEW.FZXV5 IS NULL AND NEW.DQYGV IS NULL
THEN
-- SET @custom_error_message = 'Either the mutant or partner overridden field must have value!';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Either the mutant or partner overridden field must have value!';
END IF;
IF NEW.FZXV5 IS NOT NULL AND NEW.DQYGV IS NOT NULL
THEN
-- SET @custom_error_message = 'Only one of the mutant or partner overridden field can have value!';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Only one of the mutant or partner overridden field can have value!';
END IF;
UPDATE S3FQX SET ADWYM = 1;
END//`,
`CREATE TRIGGER WGSDC_on_delete BEFORE DELETE ON WGSDC
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'Deletion is forbidden from override and additional tables. Please use the SWCQV field instead.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Deletion is forbidden from override and additional tables. Please use the SWCQV field instead.';
END//`,
`CREATE TRIGGER EPZU6_on_insert BEFORE INSERT ON EPZU6
FOR EACH ROW
BEGIN
IF
NEW.TOFPN IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.SJYN2 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.FVUCX IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.BTXC5 IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF NEW.SWCQV NOT IN (0, 1)
THEN
-- SET @custom_error_message = 'The SWCQV field is an int boolean (0/1) meaning if record is fully SWCQV.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The SWCQV field is an int boolean (0/1) meaning if fully SWCQV.';
END IF;
UPDATE S3FQX SET ADWYM = 1;
END//`,
`CREATE TRIGGER EPZU6_on_update BEFORE UPDATE ON EPZU6
FOR EACH ROW
BEGIN
IF
NEW.TOFPN IS NOT NULL AND (NEW.TOFPN <> OLD.TOFPN)
OR
NEW.SJYN2 IS NOT NULL AND (NEW.SJYN2 <> OLD.SJYN2)
OR
NEW.BTXC5 IS NOT NULL AND (NEW.BTXC5 <> OLD.BTXC5)
THEN
-- SET @custom_error_message = 'The fields identifying what to override can not be changed! Please use the ignore field and create new one if necessary.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The fields identifying what to override can not be changed! Please use the ignore field and create new one if necessary.';
END IF;
IF
NEW.FVUCX IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF NEW.SWCQV NOT IN (0, 1)
THEN
-- SET @custom_error_message = 'The SWCQV field is an int boolean (0/1) meaning if record is fully SWCQV.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The SWCQV field is an int boolean (0/1) meaning if fully SWCQV.';
END IF;
UPDATE S3FQX SET ADWYM = 1;
END//`,
`CREATE TRIGGER EPZU6_on_delete BEFORE DELETE ON EPZU6
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'Deletion is forbidden from override and additional tables. Please use the SWCQV field instead.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Deletion is forbidden from override and additional tables. Please use the SWCQV field instead.';
END//`,
`CREATE TRIGGER HU5A5_on_insert BEFORE INSERT ON HU5A5
FOR EACH ROW
BEGIN
IF
NEW.TOFPN IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.I3VTA IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.SFJ6L IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.V5DPX IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.LJLUM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.IDPK7 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.NO52D IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.ZRV3B IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.VYO5E IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF NEW.SWCQV NOT IN (0, 1)
THEN
-- SET @custom_error_message = 'The SWCQV field is an int boolean (0/1) meaning if record is fully SWCQV.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The SWCQV field is an int boolean (0/1) meaning if fully SWCQV.';
END IF;
UPDATE S3FQX SET ADWYM = 1;
END//`,
`CREATE TRIGGER HU5A5_on_update BEFORE UPDATE ON HU5A5
FOR EACH ROW
BEGIN
IF
NEW.TOFPN IS NOT NULL AND (NEW.TOFPN <> OLD.TOFPN)
OR
NEW.I3VTA IS NOT NULL AND (NEW.I3VTA <> OLD.I3VTA)
OR
NEW.V5DPX IS NOT NULL AND (NEW.V5DPX <> OLD.V5DPX)
OR
NEW.LJLUM IS NOT NULL AND (NEW.LJLUM <> OLD.LJLUM)
OR
NEW.IDPK7 IS NOT NULL AND (NEW.IDPK7 <> OLD.IDPK7)
OR
NEW.NO52D IS NOT NULL AND (NEW.NO52D <> OLD.NO52D)
OR
NEW.ZRV3B IS NOT NULL AND (NEW.ZRV3B <> OLD.ZRV3B)
OR
NEW.VYO5E IS NOT NULL AND (NEW.VYO5E <> OLD.VYO5E)
THEN
-- SET @custom_error_message = 'Only the SWCQV, SFJ6L, YKSSU and user RNVLS field can be changed of additionals. Please use that field and add a new one if necessary.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Only the SWCQV and non functional fields can be changed of additionals.';
END IF;
IF
NEW.SFJ6L IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF NEW.SWCQV NOT IN (0, 1)
THEN
-- SET @custom_error_message = 'The SWCQV field is an int boolean (0/1) meaning if record is fully SWCQV.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The SWCQV field is an int boolean (0/1) meaning if fully SWCQV.';
END IF;
UPDATE S3FQX SET ADWYM = 1;
END//`,
`CREATE TRIGGER HU5A5_on_delete BEFORE DELETE ON HU5A5
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'Deletion is forbidden from override and additional tables. Please use the SWCQV field instead.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Deletion is forbidden from override and additional tables. Please use the SWCQV field instead.';
END//`,
`CREATE TRIGGER WE72E_on_insert BEFORE INSERT ON WE72E
FOR EACH ROW
BEGIN
IF
NEW.QZ7E7 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.SSHPJ IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER WE72E_on_update BEFORE UPDATE ON WE72E
FOR EACH ROW
BEGIN
IF
NEW.QZ7E7 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.SSHPJ IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER WE72E_on_delete BEFORE DELETE ON WE72E
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'A WE72E can not be deleted now. If it is a use-case please contact platform team.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'A WE72E can not be deleted now. If it is a use-case please contact platform team.';
END//`,
`CREATE TRIGGER F35MI_on_insert BEFORE INSERT ON F35MI
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER F35MI_on_update BEFORE UPDATE ON F35MI
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER F35MI_on_delete BEFORE DELETE ON F35MI
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'A F35MI can not be deleted now. If it is a use-case please contact platform team.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'A F35MI can not be deleted now. If it is a use-case please contact platform team.';
END//`,
`CREATE TRIGGER TNMXI_on_insert BEFORE INSERT ON TNMXI
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER TNMXI_on_update BEFORE UPDATE ON TNMXI
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER TNMXI_on_delete BEFORE DELETE ON TNMXI
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'A TNMXI can not be deleted now. If it is a use-case please contact platform team.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'A TNMXI can not be deleted now. If it is a use-case please contact platform team.';
END//`,
`CREATE TRIGGER XGSJM_on_insert BEFORE INSERT ON XGSJM
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER XGSJM_on_update BEFORE UPDATE ON XGSJM
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER XGSJM_on_delete BEFORE DELETE ON XGSJM
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'A XGSJM can not be deleted now. If it is a use-case please contact platform team.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'A XGSJM can not be deleted now. If it is a use-case please contact platform team.';
END//`,
`CREATE TRIGGER IIISV_on_insert BEFORE INSERT ON IIISV
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER IIISV_on_update BEFORE UPDATE ON IIISV
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER TTGWX_on_insert BEFORE INSERT ON TTGWX
FOR EACH ROW
BEGIN
IF
NEW.CBVKT IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER TTGWX_on_update BEFORE UPDATE ON TTGWX
FOR EACH ROW
BEGIN
IF
NEW.CBVKT IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER FEVH4_on_insert BEFORE INSERT ON FEVH4
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER FEVH4_on_update BEFORE UPDATE ON FEVH4
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER FEVH4_on_delete BEFORE DELETE ON FEVH4
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'An FEVH4 can not be deleted now. If it is a use-case please contact platform team.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'An FEVH4 can not be deleted now. If it is a use-case please contact platform team.';
END//`,
`CREATE TRIGGER T52LX_on_insert BEFORE INSERT ON T52LX
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER T52LX_on_update BEFORE UPDATE ON T52LX
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER NOXN3_on_insert BEFORE INSERT ON NOXN3
FOR EACH ROW
BEGIN
IF
NEW.NUMK2 = 1 AND NEW.ECDKM IS NOT NULL
THEN
-- SET @custom_error_message = 'If the edge TAFAX is activity (1), ECDKM must be NULL.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'If the edge TAFAX is activity (1), ECDKM must be NULL.';
END IF;
IF
NEW.NUMK2 <> 1 AND NEW.ECDKM IS NULL
THEN
-- SET @custom_error_message = 'If the edge TAFAX is not activity (1), ECDKM must have value.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'If the edge TAFAX is not activity (1), ECDKM must have value.';
END IF;
UPDATE S3FQX SET ADWYM = 1;
END//`,
`CREATE TRIGGER NOXN3_on_update BEFORE UPDATE ON NOXN3
FOR EACH ROW
BEGIN
IF
NEW.NUMK2 = 1 AND NEW.ECDKM IS NOT NULL
THEN
-- SET @custom_error_message = 'If the edge TAFAX is activity (1), ECDKM must be NULL.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'If the edge TAFAX is activity (1), ECDKM must be NULL.';
END IF;
IF
NEW.NUMK2 <> 1 AND NEW.ECDKM IS NULL
THEN
-- SET @custom_error_message = 'If the edge TAFAX is not activity (1), ECDKM must have value.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'If the edge TAFAX is not activity (1), ECDKM must have value.';
END IF;
IF
NEW.BRQP2 IS NOT NULL AND (NEW.BRQP2 <> OLD.BRQP2)
OR
NEW.FFTBJ IS NOT NULL AND (NEW.FFTBJ <> OLD.FFTBJ)
OR
(NEW.NUMK2 IS NOT NULL) AND (NEW.NUMK2 <> OLD.NUMK2) AND (NEW.NUMK2 = 1 OR OLD.NUMK2 = 1)
THEN
UPDATE S3FQX SET ADWYM = 1;
END IF;
END//`,
`CREATE TRIGGER QYWQD_on_insert BEFORE INSERT ON QYWQD
FOR EACH ROW
BEGIN
IF
(SELECT FFTBJ FROM NOXN3 WHERE id = NEW.WNUNU) <> (SELECT BRQP2 FROM NOXN3 WHERE id = NEW.HHVLX)
THEN
-- SET @custom_error_message = 'The target UWBAI of the upstream edge must be the same as the source UWBAI of the downstream edge (the enzyme UWBAI).';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The target UWBAI of the upstream edge must be the same as the source UWBAI of the downstream edge (the enzyme UWBAI).';
END IF;
END//`,
`CREATE TRIGGER QYWQD_on_update BEFORE UPDATE ON QYWQD
FOR EACH ROW
BEGIN
IF
(SELECT FFTBJ FROM NOXN3 WHERE id = NEW.WNUNU) <> (SELECT BRQP2 FROM NOXN3 WHERE id = NEW.HHVLX)
THEN
-- SET @custom_error_message = 'The target UWBAI of the upstream edge must be the same as the source UWBAI of the downstream edge (the enzyme UWBAI).';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The target UWBAI of the upstream edge must be the same as the source UWBAI of the downstream edge (the enzyme UWBAI).';
END IF;
END//`,
`CREATE TRIGGER RLOHD_on_insert BEFORE INSERT ON RLOHD
FOR EACH ROW
BEGIN
IF
(SELECT DKCAJ FROM E2I7U WHERE id = NEW.LUEVY) NOT IN (SELECT id FROM F35MI WHERE DZLIM = 'extra_cellular' OR DZLIM = 'OROPK')
THEN
-- SET @custom_error_message = 'The choosen UWBAI is not TAFAX of extra_cellular or OROPK. Input layer is only defined for these.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The choosen UWBAI is not TAFAX of extra_cellular or OROPK. Input layer is only defined for these.';
END IF;
IF
NEW.KLMAU IS NULL AND NEW.ecm IS NULL
THEN
-- SET @custom_error_message = 'Either KLMAU or ecm must be set.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Either KLMAU or ecm must be set.';
END IF;
END//`,
`CREATE TRIGGER RLOHD_on_update BEFORE UPDATE ON RLOHD
FOR EACH ROW
BEGIN
IF
(SELECT DKCAJ FROM E2I7U WHERE id = NEW.LUEVY) NOT IN (SELECT id FROM F35MI WHERE DZLIM = 'extra_cellular' OR DZLIM = 'OROPK')
THEN
-- SET @custom_error_message = 'The choosen UWBAI is not TAFAX of extra_cellular or OROPK. Input layer is only defined for these.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The choosen UWBAI is not TAFAX of extra_cellular or OROPK. Input layer is only defined for these.';
END IF;
IF
NEW.KLMAU IS NULL AND NEW.ecm IS NULL
THEN
-- SET @custom_error_message = 'Either KLMAU or ecm must be set.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Either KLMAU or ecm must be set.';
END IF;
END//`,
`CREATE TRIGGER YK2GW_on_insert BEFORE INSERT ON YK2GW
FOR EACH ROW
BEGIN
IF
NEW.FTQLQ IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.TUXML IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.PAEF5 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.RUCY4 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.TPNJ6 IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
UPDATE S3FQX SET ADWYM = 1, FPUYA = 1;
END//`,
`CREATE TRIGGER YK2GW_on_update BEFORE UPDATE ON YK2GW
FOR EACH ROW
BEGIN
IF
NEW.FTQLQ IS NOT NULL AND (NEW.FTQLQ <> OLD.FTQLQ)
THEN
-- SET @custom_error_message = 'The FTQLQ of a cell line can not be modified. Delete and re-add if necessary.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The FTQLQ of a cell line can not be modified. Delete and re-add if necessary.';
END IF;
IF
NEW.FTQLQ IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.TUXML IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.PAEF5 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.RUCY4 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.TPNJ6 IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER IJLXP_on_insert BEFORE INSERT ON IJLXP
FOR EACH ROW
BEGIN
IF
NEW.WZP3R IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER IJLXP_on_update BEFORE UPDATE ON IJLXP
FOR EACH ROW
BEGIN
IF
NEW.WZP3R IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER JMRQL_on_insert BEFORE INSERT ON JMRQL
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER JMRQL_on_update BEFORE UPDATE ON JMRQL
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER JMRQL_on_delete BEFORE DELETE ON JMRQL
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'A JMRQL can not be deleted now. If it is a use-case please contact platform team.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'A JMRQL can not be deleted now. If it is a use-case please contact platform team.';
END//`,
`CREATE TRIGGER AMYXQ_on_insert BEFORE INSERT ON AMYXQ
FOR EACH ROW
BEGIN
IF
(SELECT FGG57 FROM E2I7U WHERE id = NEW.LUEVY) IS NULL
THEN
-- SET @custom_error_message = 'The given UWBAI can not be connected to a AMYXQ record as it does not have IYDZV.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The given UWBAI can not be connected to a AMYXQ record as it does not have IYDZV.';
END IF;
IF
NEW.AMYXQ < 0 OR NEW.OZTQF < 0 OR NEW.Z35GY < 0
THEN
-- SET @custom_error_message = 'All values in AMYXQ must ne non-negative.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'All values in AMYXQ must ne non-negative.';
END IF;
END//`,
`CREATE TRIGGER AMYXQ_on_update BEFORE UPDATE ON AMYXQ
FOR EACH ROW
BEGIN
IF
NEW.GXLUB IS NOT NULL AND (NEW.GXLUB <> OLD.GXLUB)
OR
NEW.LUEVY IS NOT NULL AND (NEW.LUEVY <> OLD.LUEVY)
OR
NEW.KKGN5 IS NOT NULL AND (NEW.KKGN5 <> OLD.KKGN5)
THEN
-- SET @custom_error_message = 'For a built-in table, fields identifying where to apply and from where it originates can not be changed!';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'For a built-in table, fields identifying where to apply and from where it originates can not be changed!';
END IF;
IF
NEW.AMYXQ < 0 OR NEW.OZTQF < 0 OR NEW.Z35GY < 0
THEN
-- SET @custom_error_message = 'All values in AMYXQ must ne non-negative.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'All values in AMYXQ must ne non-negative.';
END IF;
END//`,
`CREATE TRIGGER D34QP_on_insert BEFORE INSERT ON D34QP
FOR EACH ROW
BEGIN
IF
NEW.TWMSR IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.QHMGE IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.MLNPU IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.FI3GA IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.ZNP4P IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER D34QP_on_update BEFORE UPDATE ON D34QP
FOR EACH ROW
BEGIN
IF
NEW.TWMSR IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.QHMGE IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.MLNPU IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.FI3GA IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.ZNP4P IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER HGMQ6_on_insert BEFORE INSERT ON HGMQ6
FOR EACH ROW
BEGIN
IF
NEW.TJPT7 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.ARN5P IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.XOSD4 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.IDE43 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.HMW4H IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF
NEW.FSDY2 NOT IN ('benign', 'VUS', 'SRARY', 'UBQWG')
THEN
-- SET @custom_error_message = 'FSDY2 must be either ''benign'', ''VUS'', ''SRARY'' or ''UBQWG''.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'FSDY2 must be either ''benign'', ''VUS'', ''SRARY'' or ''UBQWG''.';
END IF;
IF NEW.LT7K6 IS NOT NULL AND NEW.SPPYD IS NOT NULL
THEN
-- SET @custom_error_message = 'If LT7K6 has value, SPPYD must be NULL.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'If LT7K6 has value, SPPYD must be NULL.';
END IF;
IF NEW.LT7K6 IS NULL AND (NEW.SPPYD IS NULL OR NEW.SPPYD <> 0.5)
THEN
-- SET @custom_error_message = 'If LT7K6 does not have value, SPPYD must be 0.5.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'If LT7K6 does not have value, SPPYD must be 0.5.';
END IF;
END//`,
`CREATE TRIGGER HGMQ6_on_update BEFORE UPDATE ON HGMQ6
FOR EACH ROW
BEGIN
IF
NEW.GXLUB IS NOT NULL AND (NEW.GXLUB <> OLD.GXLUB)
OR
NEW.LUEVY IS NOT NULL AND (NEW.LUEVY <> OLD.LUEVY)
OR
NEW.M22QN IS NOT NULL AND (NEW.M22QN <> OLD.M22QN)
OR
NEW.TEUJA IS NOT NULL AND (NEW.TEUJA <> OLD.TEUJA)
OR
NEW.QQV4M IS NOT NULL AND (NEW.QQV4M <> OLD.QQV4M)
THEN
-- SET @custom_error_message = 'For a built-in table, fields identifying where to apply and from where it originates can not be changed!';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'For a built-in table, fields identifying where to apply and from where it originates can not be changed!';
END IF;
IF
NEW.TJPT7 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.ARN5P IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.XOSD4 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.IDE43 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.HMW4H IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF
NEW.FSDY2 NOT IN ('benign', 'VUS', 'SRARY', 'UBQWG')
THEN
-- SET @custom_error_message = 'FSDY2 must be either ''benign'', ''VUS'', ''SRARY'' or ''UBQWG''.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'FSDY2 must be either ''benign'', ''VUS'', ''SRARY'' or ''UBQWG''.';
END IF;
IF NEW.LT7K6 IS NOT NULL AND NEW.SPPYD IS NOT NULL
THEN
-- SET @custom_error_message = 'If LT7K6 has value, SPPYD must be NULL.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'If LT7K6 has value, SPPYD must be NULL.';
END IF;
IF NEW.LT7K6 IS NULL AND (NEW.SPPYD IS NULL OR NEW.SPPYD <> 0.5)
THEN
-- SET @custom_error_message = 'If LT7K6 does not have value, SPPYD must be 0.5.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'If LT7K6 does not have value, SPPYD must be 0.5.';
END IF;
END//`,
`CREATE TRIGGER TPXBU_on_insert BEFORE INSERT ON TPXBU
FOR EACH ROW
BEGIN
IF
NEW.BTXC5 IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER TPXBU_on_update BEFORE UPDATE ON TPXBU
FOR EACH ROW
BEGIN
IF
NEW.BTXC5 IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER YYBCX_on_insert BEFORE INSERT ON YYBCX
FOR EACH ROW
BEGIN
IF
NEW.ESFVY IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.SL76B IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER YYBCX_on_update BEFORE UPDATE ON YYBCX
FOR EACH ROW
BEGIN
IF
NEW.ESFVY IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.SL76B IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER YYBCX_on_delete BEFORE DELETE ON YYBCX
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'An YYBCX can not be deleted now. If it is a use-case please contact platform team.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'An YYBCX can not be deleted now. If it is a use-case please contact platform team.';
END//`,
`CREATE TRIGGER HDDVB_on_update BEFORE UPDATE ON HDDVB
FOR EACH ROW
BEGIN
IF
NEW.FV24E IS NOT NULL AND (NEW.FV24E <> OLD.FV24E)
OR
NEW.UJ6XY IS NOT NULL AND (NEW.UJ6XY <> OLD.UJ6XY)
OR
NEW.M22QN IS NOT NULL AND (NEW.M22QN <> OLD.M22QN)
OR
NEW.ETPQV IS NOT NULL AND (NEW.ETPQV <> OLD.ETPQV)
OR
NEW.PRUV2 IS NOT NULL AND (NEW.PRUV2 <> OLD.PRUV2)
THEN
-- SET @custom_error_message = 'For a built-in table, fields identifying where to apply and from where it originates can not be changed!';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'For a built-in table, fields identifying where to apply and from where it originates can not be changed!';
END IF;
END//`,
`CREATE TRIGGER ZYGMF_on_insert BEFORE INSERT ON ZYGMF
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER ZYGMF_on_update BEFORE UPDATE ON ZYGMF
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER ZYGMF_on_delete BEFORE DELETE ON ZYGMF
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'A ZYGMF can not be deleted now. If it is a use-case please contact platform team.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'A ZYGMF can not be deleted now. If it is a use-case please contact platform team.';
END//`,
`CREATE TRIGGER JDLNA_on_insert BEFORE INSERT ON JDLNA
FOR EACH ROW
BEGIN
IF
NEW.FTQLQ IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.FWWIQ IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.O3QXW IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
UPDATE S3FQX SET ADWYM = 1;
END//`,
`CREATE TRIGGER JDLNA_on_update BEFORE UPDATE ON JDLNA
FOR EACH ROW
BEGIN
IF
NEW.FTQLQ IS NOT NULL AND (NEW.FTQLQ <> OLD.FTQLQ)
THEN
-- SET @custom_error_message = 'The FTQLQ of a VCGT3 can not be modified. Delete and re-add if necessary.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The FTQLQ of a VCGT3 can not be modified. Delete and re-add if necessary.';
END IF;
IF
NEW.FTQLQ IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.FWWIQ IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.O3QXW IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER BACOW_on_insert BEFORE INSERT ON BACOW
FOR EACH ROW
BEGIN
IF
NEW.WZP3R IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER BACOW_on_update BEFORE UPDATE ON BACOW
FOR EACH ROW
BEGIN
IF
NEW.WZP3R IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER SFEGG_on_insert BEFORE INSERT ON SFEGG
FOR EACH ROW
BEGIN
IF
NEW.NO52D IN (SELECT SVAZ4 FROM TPXHZ)
OR NEW.VYO5E IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF
NEW.ADURZ <= 0
THEN
-- SET @custom_error_message = 'ADURZ must be positive.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'ADURZ must be positive.';
END IF;
END//`,
`CREATE TRIGGER SFEGG_on_update BEFORE UPDATE ON SFEGG
FOR EACH ROW
BEGIN
IF
NEW.NO52D IN (SELECT SVAZ4 FROM TPXHZ)
OR NEW.VYO5E IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF
NEW.ADURZ <= 0
THEN
-- SET @custom_error_message = 'ADURZ must be positive.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'ADURZ must be positive.';
END IF;
END//`,
`CREATE TRIGGER FLQLP_on_insert BEFORE INSERT ON FLQLP
FOR EACH ROW
BEGIN
IF
NEW.V5DPX IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF
NEW.ZRV3B NOT IN ('=', '<=', '>=', '<', '>')
THEN
-- SET @custom_error_message = 'The ZRV3B must be on of the following: ''='', ''<='', ''>='', ''<'', ''>''.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The ZRV3B must be on of the following: ''='', ''<='', ''>='', ''<'', ''>''.';
END IF;
END//`,
`CREATE TRIGGER FLQLP_on_update BEFORE UPDATE ON FLQLP
FOR EACH ROW
BEGIN
IF
NEW.FZ2R5 IS NOT NULL AND (NEW.FZ2R5 <> OLD.FZ2R5)
OR
NEW.LUEVY IS NOT NULL AND (NEW.LUEVY <> OLD.LUEVY)
OR
NEW.M22QN IS NOT NULL AND (NEW.M22QN <> OLD.M22QN)
OR
NEW.NRURT IS NOT NULL AND (NEW.NRURT <> OLD.NRURT)
OR
NEW.OCA7E IS NOT NULL AND (NEW.OCA7E <> OLD.OCA7E)
OR
NEW.XMM6Q IS NOT NULL AND (NEW.XMM6Q <> OLD.XMM6Q)
THEN
-- SET @custom_error_message = 'For a built-in table, fields identifying where to apply and from where it originates can not be changed!';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'For a built-in table, fields identifying where to apply and from where it originates can not be changed!';
END IF;
IF
NEW.V5DPX IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF
NEW.ZRV3B NOT IN ('=', '<=', '>=', '<', '>')
THEN
-- SET @custom_error_message = 'The ZRV3B must be on of the following: ''='', ''<='', ''>='', ''<'', ''>''.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The ZRV3B must be on of the following: ''='', ''<='', ''>='', ''<'', ''>''.';
END IF;
END//`,
`CREATE TRIGGER XOAOP_on_insert BEFORE INSERT ON XOAOP
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER XOAOP_on_update BEFORE UPDATE ON XOAOP
FOR EACH ROW
BEGIN
IF
OLD.DZLIM = 'NER' AND NEW.DZLIM <> 'NER'
OR
OLD.DZLIM = 'BER' AND NEW.DZLIM <> 'BER'
OR
OLD.DZLIM = 'HR' AND NEW.DZLIM <> 'HR'
OR
OLD.DZLIM = 'MMR' AND NEW.DZLIM <> 'MMR'
THEN
-- SET @custom_error_message = 'NER, BER, HR and MMR ECUWUs can not be modified to another PV2SV.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'NER, BER, HR and MMR ECUWUs can not be modified to another PV2SV.';
END IF;
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER XOAOP_on_delete BEFORE DELETE ON XOAOP
FOR EACH ROW
BEGIN
IF
OLD.DZLIM IN ('NER', 'BER', 'HR', 'MMR')
THEN
-- SET @custom_error_message = 'NER, BER, HR and MMR ECUWUs can not be deleted.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'NER, BER, HR and MMR ECUWUs can not be deleted.';
END IF;
END//`,
`CREATE TRIGGER PG27A_on_insert BEFORE INSERT ON PG27A
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER PG27A_on_update BEFORE UPDATE ON PG27A
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER NPCYY_on_insert BEFORE INSERT ON NPCYY
FOR EACH ROW
BEGIN
IF
NEW.B5OUF <= 0
THEN
-- SET @custom_error_message = 'B5OUF must be positive.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'B5OUF must be positive.';
END IF;
END//`,
`CREATE TRIGGER NPCYY_on_update BEFORE UPDATE ON NPCYY
FOR EACH ROW
BEGIN
IF
NEW.B5OUF <= 0
THEN
-- SET @custom_error_message = 'B5OUF must be positive.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'B5OUF must be positive.';
END IF;
END//`,
`CREATE TRIGGER FEIOE_on_insert BEFORE INSERT ON FEIOE
FOR EACH ROW
BEGIN
IF
NEW.FVGD2 NOT IN (0, 1)
OR
NEW.YP2CR NOT IN (0, 1)
OR
NEW.TQ7W3 NOT IN (0, 1)
THEN
-- SET @custom_error_message = 'FVGD2, YP2CR, and TQ7W3 fields must be either 0 or 1.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'FVGD2, YP2CR, and TQ7W3 fields must be either 0 or 1.';
END IF;
END//`,
`CREATE TRIGGER FEIOE_on_update BEFORE UPDATE ON FEIOE
FOR EACH ROW
BEGIN
IF
NEW.FVGD2 NOT IN (0, 1)
OR
NEW.YP2CR NOT IN (0, 1)
OR
NEW.TQ7W3 NOT IN (0, 1)
THEN
-- SET @custom_error_message = 'FVGD2, YP2CR, and TQ7W3 fields must be either 0 or 1.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'FVGD2, YP2CR, and TQ7W3 fields must be either 0 or 1.';
END IF;
END//`,
`CREATE TRIGGER SZQWJ_on_insert BEFORE INSERT ON SZQWJ
FOR EACH ROW
BEGIN
IF
(SELECT DZLIM FROM XOAOP WHERE id = NEW.CH3FR) NOT IN ('NER', 'BER', 'HR', 'MMR')
THEN
-- SET @custom_error_message = 'The ECUWU must be one of the following: ''NER'', ''BER'', ''HR'', ''MMR''.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The ECUWU must be one of the following: ''NER'', ''BER'', ''HR'', ''MMR''.';
END IF;
IF
NEW.D237E NOT IN (0, 1)
THEN
-- SET @custom_error_message = 'The D237E field must be either 0 or 1.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The D237E field must be either 0 or 1.';
END IF;
END//`,
`CREATE TRIGGER SZQWJ_on_update BEFORE UPDATE ON SZQWJ
FOR EACH ROW
BEGIN
IF
NEW.CH3FR IS NOT NULL AND (NEW.CH3FR <> OLD.CH3FR)
OR
NEW.GXLUB IS NOT NULL AND (NEW.GXLUB <> OLD.GXLUB)
OR
NEW.JOGI6 IS NOT NULL AND (NEW.JOGI6 <> OLD.JOGI6)
THEN
-- SET @custom_error_message = 'For a built-in table, fields identifying where to apply and from where it originates can not be changed!';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'For a built-in table, fields identifying where to apply and from where it originates can not be changed!';
END IF;
IF
(SELECT DZLIM FROM XOAOP WHERE id = NEW.CH3FR) NOT IN ('NER', 'BER', 'HR', 'MMR')
THEN
-- SET @custom_error_message = 'The ECUWU must be one of the following: ''NER'', ''BER'', ''HR'', ''MMR''.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The ECUWU must be one of the following: ''NER'', ''BER'', ''HR'', ''MMR''.';
END IF;
IF
NEW.D237E NOT IN (0, 1)
THEN
-- SET @custom_error_message = 'The D237E field must be either 0 or 1.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The D237E field must be either 0 or 1.';
END IF;
END//`,
`CREATE TRIGGER JJGQT_on_insert BEFORE INSERT ON JJGQT
FOR EACH ROW
BEGIN
IF
(SELECT DZLIM FROM XOAOP WHERE id = NEW.CH3FR) NOT IN ('NER', 'BER', 'HR', 'MMR')
THEN
-- SET @custom_error_message = 'The ECUWU must be one of the following: ''NER'', ''BER'', ''HR'', ''MMR''.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The ECUWU must be one of the following: ''NER'', ''BER'', ''HR'', ''MMR''.';
END IF;
END//`,
`CREATE TRIGGER JJGQT_on_update BEFORE UPDATE ON JJGQT
FOR EACH ROW
BEGIN
IF
(SELECT DZLIM FROM XOAOP WHERE id = NEW.CH3FR) NOT IN ('NER', 'BER', 'HR', 'MMR')
THEN
-- SET @custom_error_message = 'The ECUWU must be one of the following: ''NER'', ''BER'', ''HR'', ''MMR''.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The ECUWU must be one of the following: ''NER'', ''BER'', ''HR'', ''MMR''.';
END IF;
END//`,
`CREATE TRIGGER moa_on_insert BEFORE INSERT ON moa
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER moa_on_update BEFORE UPDATE ON moa
FOR EACH ROW
BEGIN
IF
NEW.DZLIM IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.F3YUE IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER ZTFET_on_insert BEFORE INSERT ON ZTFET
FOR EACH ROW
BEGIN
IF
NEW.CYZU6 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.AERTL IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.SIJCN IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.RTLWN IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.ZMABC IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER ZTFET_on_update BEFORE UPDATE ON ZTFET
FOR EACH ROW
BEGIN
IF
NEW.CYZU6 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.AERTL IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.SIJCN IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.RTLWN IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.ZMABC IN (SELECT SVAZ4 FROM TPXHZ)
THEN
-- SET @custom_error_message = (SELECT error_message FROM trigger_helper_error_message WHERE DZLIM = 'SVAZ4');
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
END//`,
`CREATE TRIGGER S3FQX_on_insert BEFORE INSERT ON S3FQX
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'Insertion is forbidden to S3FQX.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Insertion is forbidden to S3FQX.';
END//`,
`CREATE TRIGGER S3FQX_on_update BEFORE UPDATE ON S3FQX
FOR EACH ROW
BEGIN
IF NEW.ADWYM NOT IN (0, 1)
THEN
-- SET @custom_error_message = 'The ADWYM field is an int boolean (0/1).';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The ADWYM field is an int boolean (0/1).';
END IF;
IF NEW.FPUYA NOT IN (0, 1)
THEN
-- SET @custom_error_message = 'The FPUYA field is an int boolean (0/1).';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The FPUYA field is an int boolean (0/1).';
END IF;
END//`,
`CREATE TRIGGER S3FQX_on_delete BEFORE DELETE ON S3FQX
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'Deletion is forbidden from S3FQX.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Deletion is forbidden from S3FQX.';
END//`,
`CREATE TRIGGER TPXBU_on_delete BEFORE DELETE ON TPXBU
FOR EACH ROW
BEGIN
-- SET @custom_error_message = 'An TPXBU can not be deleted now. If it is a use-case please contact platform team.';
-- SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = @custom_error_message;
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'An TPXBU can not be deleted now. If it is a use-case please contact platform team.';
END//`,
`CREATE TRIGGER THNTS_on_insert BEFORE INSERT ON THNTS
FOR EACH ROW
BEGIN
IF
NEW.IXUXU IS NULL
THEN
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The IXUXU field is mandatory.';
END IF;
END//`,
`CREATE TRIGGER THNTS_on_update BEFORE UPDATE ON THNTS
FOR EACH ROW
BEGIN
IF
NEW.IXUXU IS NULL
THEN
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'The IXUXU field is mandatory.';
END IF;
END//`,
`CREATE TRIGGER E2I7U_on_insert BEFORE INSERT ON E2I7U
FOR EACH ROW
BEGIN
IF
NEW.TW55N IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.FGG57 IS NOT NULL AND NEW.FGG57 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.ZH72S IS NOT NULL AND NEW.ZH72S IN (SELECT SVAZ4 FROM TPXHZ)
THEN
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF
NEW.FSK67 NOT IN ('zero_based', 'one_based', 'O7VZD')
THEN
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'FSK67 must be either zero_based, one_based, or O7VZD.';
END IF;
IF
NEW.FGG57 IS NOT NULL AND NEW.DKCAJ NOT IN (SELECT id FROM F35MI WHERE DZLIM = 'protein' OR DZLIM = 'micro_rna')
THEN
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Only protein or micro_rna TAFAX UWBAIs can have IYDZV.';
END IF;
IF
NEW.ZH72S IS NOT NULL AND NEW.DKCAJ NOT IN (SELECT id FROM F35MI WHERE DZLIM = 'protein')
THEN
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Only protein TAFAX UWBAIs can have ZH72S.';
END IF;
IF
NEW.FGG57 IS NOT NULL AND NEW.TCE7A IS NULL
THEN
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'TCE7A is mandatory if UWBAI has IYDZV.';
END IF;
IF
NEW.KNG7T IS NOT NULL
THEN
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'On insertion KNG7T must be null. The build-in process will find a correspondig for it.';
END IF;
IF
NEW.FGG57 IS NOT NULL OR NEW.ZH72S IS NOT NULL
THEN
UPDATE S3FQX SET ADWYM = 1, FPUYA = 1;
END IF;
END//`,
`CREATE TRIGGER E2I7U_on_update BEFORE UPDATE ON E2I7U
FOR EACH ROW
BEGIN
IF
NEW.TW55N IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.FGG57 IS NOT NULL AND NEW.FGG57 IN (SELECT SVAZ4 FROM TPXHZ)
OR
NEW.ZH72S IS NOT NULL AND NEW.ZH72S IN (SELECT SVAZ4 FROM TPXHZ)
THEN
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'String field contains invalid value, like empty string, ''none'', ''null'', ''n/a'', ''nan'' etc.';
END IF;
IF
NEW.FSK67 NOT IN ('zero_based', 'one_based', 'O7VZD')
THEN
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'FSK67 must be either zero_based, one_based, or O7VZD.';
END IF;
IF
NEW.FGG57 IS NOT NULL AND NEW.DKCAJ NOT IN (SELECT id FROM F35MI WHERE DZLIM = 'protein' OR DZLIM = 'micro_rna')
THEN
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Only protein or micro_rna TAFAX UWBAIs can have IYDZV.';
END IF;
IF
NEW.ZH72S IS NOT NULL AND NEW.DKCAJ NOT IN (SELECT id FROM F35MI WHERE DZLIM = 'protein')
THEN
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Only protein TAFAX UWBAIs can have ZH72S.';
END IF;
IF
NEW.FGG57 IS NOT NULL AND NEW.TCE7A IS NULL
THEN
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'TCE7A is mandatory if UWBAI has IYDZV.';
END IF;
END//`,
}}
View Source
var Invert_pkData = []SetupScript{{
"CREATE TABLE `invert_pk` ( `x` bigint NOT NULL, `y` bigint NOT NULL, `z` bigint NOT NULL, PRIMARY KEY (`y`,`z`,`x`) )",
`insert into invert_pk values
(0, 2, 2),
(1, 1, 0),
(2, 0, 1)`,
}}
View Source
var JoinData = []SetupScript{{
`create table asset (
id int primary key,
orgId varchar(10),
assetId varchar(10),
name varchar(20),
val varchar(20),
key idx1 (orgId, assetId),
unique key (orgId, name, assetId),
key (orgId, name, val)
);`,
`insert into asset values
(0, 'org1', 'small', 'style', 'curve'),
(1, 'org1', 'small', 'dimension', 'wide'),
(2, 'org1', 'small', 'color', 'blue'),
(3, 'org1', 'small', 'retries', 'curve'),
(4, 'org1', 'medium', 'style', 'straight'),
(5, 'org1', 'medium', 'color', 'green'),
(6, 'org1', 'medium', 'dimension', 'narrow'),
(7, 'org1', 'medium', 'retries', 'straight'),
(8, 'org1', 'large', 'style', 'bendy'),
(9, 'org1', 'large', 'color', 'red'),
(10, 'org1', 'large', 'dimension', 'round'),
(11, 'org1', 'large', 'retries', 'bendy');`,
"CREATE TABLE `warehouse1` ( `w_id` smallint NOT NULL, `w_name` varchar(10), `w_street_1` varchar(20), `w_street_2` varchar(20), `w_city` varchar(20), `w_state` char(2), `w_zip` char(9), `w_tax` decimal(4,2), `w_ytd` decimal(12,2), PRIMARY KEY (`w_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
"CREATE TABLE `district1` ( `d_id` tinyint NOT NULL, `d_w_id` smallint NOT NULL, `d_name` varchar(10), `d_street_1` varchar(20), `d_street_2` varchar(20), `d_city` varchar(20), `d_state` char(2), `d_zip` char(9), `d_tax` decimal(4,2), `d_ytd` decimal(12,2), `d_next_o_id` int, PRIMARY KEY (`d_w_id`,`d_id`), CONSTRAINT `fkey_district_1_1` FOREIGN KEY (`d_w_id`) REFERENCES `warehouse1` (`w_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
"CREATE TABLE `item1` ( `i_id` int NOT NULL, `i_im_id` int, `i_name` varchar(24), `i_price` decimal(5,2), `i_data` varchar(50), PRIMARY KEY (`i_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
"CREATE TABLE `customer1` ( `c_id` int NOT NULL, `c_d_id` tinyint NOT NULL, `c_w_id` smallint NOT NULL, `c_first` varchar(16), `c_middle` char(2), `c_last` varchar(16), `c_street_1` varchar(20), `c_street_2` varchar(20), `c_city` varchar(20), `c_state` char(2), `c_zip` char(9), `c_phone` char(16), `c_since` datetime(6), `c_credit` char(2), `c_credit_lim` bigint, `c_discount` decimal(4,2), `c_balance` decimal(12,2), `c_ytd_payment` decimal(12,2), `c_payment_cnt` smallint, `c_delivery_cnt` smallint, `c_data` text, PRIMARY KEY (`c_w_id`,`c_d_id`,`c_id`), KEY `idx_customer1` (`c_w_id`,`c_d_id`,`c_last`,`c_first`), CONSTRAINT `fkey_customer_1_1` FOREIGN KEY (`c_w_id`,`c_d_id`) REFERENCES `district1` (`d_w_id`,`d_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin; ---",
"CREATE TABLE `orders1` ( `o_id` int NOT NULL, `o_d_id` tinyint NOT NULL, `o_w_id` smallint NOT NULL, `o_c_id` int, `o_entry_d` datetime(6), `o_carrier_id` tinyint, `o_ol_cnt` tinyint, `o_all_local` tinyint, PRIMARY KEY (`o_w_id`,`o_d_id`,`o_id`), KEY `idx_orders1` (`o_w_id`,`o_d_id`,`o_c_id`,`o_id`), CONSTRAINT `fkey_orders_1_1` FOREIGN KEY (`o_w_id`,`o_d_id`,`o_c_id`) REFERENCES `customer1` (`c_w_id`,`c_d_id`,`c_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
"CREATE TABLE `stock1` ( `s_i_id` int NOT NULL, `s_w_id` smallint NOT NULL, `s_quantity` smallint, `s_dist_01` char(24), `s_dist_02` char(24), `s_dist_03` char(24), `s_dist_04` char(24), `s_dist_05` char(24), `s_dist_06` char(24), `s_dist_07` char(24), `s_dist_08` char(24), `s_dist_09` char(24), `s_dist_10` char(24), `s_ytd` decimal(8,0), `s_order_cnt` smallint, `s_remote_cnt` smallint, `s_data` varchar(50), PRIMARY KEY (`s_w_id`,`s_i_id`), KEY `fkey_stock_21` (`s_i_id`), CONSTRAINT `fkey_stock_1_1` FOREIGN KEY (`s_w_id`) REFERENCES `warehouse1` (`w_id`), CONSTRAINT `fkey_stock_2_1` FOREIGN KEY (`s_i_id`) REFERENCES `item1` (`i_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
"CREATE TABLE `order_line1` ( `ol_o_id` int NOT NULL, `ol_d_id` tinyint NOT NULL, `ol_w_id` smallint NOT NULL, `ol_number` tinyint NOT NULL, `ol_i_id` int, `ol_supply_w_id` smallint, `ol_delivery_d` datetime(6), `ol_quantity` tinyint, `ol_amount` decimal(6,2), `ol_dist_info` char(24), PRIMARY KEY (`ol_w_id`,`ol_d_id`,`ol_o_id`,`ol_number`), KEY `fkey_order_line_21` (`ol_supply_w_id`,`ol_i_id`), CONSTRAINT `fkey_order_line_1_1` FOREIGN KEY (`ol_w_id`,`ol_d_id`,`ol_o_id`) REFERENCES `orders1` (`o_w_id`,`o_d_id`,`o_id`), CONSTRAINT `fkey_order_line_2_1` FOREIGN KEY (`ol_supply_w_id`,`ol_i_id`) REFERENCES `stock1` (`s_w_id`,`s_i_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
"analyze table customer1 update histogram on (`c_w_id`,`c_d_id`,`c_id`) using data '{\"row_count\": 300000}';",
`analyze table warehouse1 update histogram on (w_id) using data '{\"row_count\": 10}';`,
"analyze table stock1 update histogram on (`s_w_id`,`s_i_id`) using data '{\"row_count\": 1000000}';",
"analyze table order_line1 update histogram on (`ol_w_id`,`ol_d_id`,`ol_o_id`,`ol_number`) using data '{\"row_count\": 3006058}';",
"analyze table district1 update histogram on (`d_w_id`,`d_id`) using data '{\"row_count\": 100}';",
`analyze table item1 update histogram on (i_id) using data '{\"row_count\": 100000}';`,
"analyze table orders1 update histogram on (`o_w_id`,`o_d_id`,`o_id`) using data '{\"row_count\": 300520}';",
}}
View Source
var JsontableData = []SetupScript{{
`create table jsontable (pk smallint primary key, c1 varchar(20), c2 JSON, c3 JSON)`,
`insert into jsontable values
(1, 'row one', '[1,2]', '{"a": 2}'),
(2, 'row two', '[3,4]', '{"b": 2}'),
(3, 'row three', '[5,6]', '{"c": 2}'),
(4, 'row four', '[7,8]', '{"d": 2}')`,
}}
View Source
var KeylessData = []SetupScript{{
"CREATE TABLE `unique_keyless` ( `c0` bigint, `c1` bigint )",
`insert into unique_keyless values
(0,0),
(1,1),
(2,2)`,
"CREATE TABLE `keyless` ( `c0` bigint, `c1` bigint )",
`insert into keyless values
(0,0),
(1,1),
(1,1),
(2,2)`,
}}
View Source
var Keyless_idxData = []SetupScript{{
`CREATE INDEX keyless_c0_idx ON keyless (c0)`,
`CREATE INDEX keyless_c0_c1_idx ON keyless (c0, c1)`,
`CREATE INDEX keyless_c1_c0_odx ON keyless (c1, c0)`,
}}
View Source
var LoadtableData = []SetupScript{{
`create table loadtable(pk int primary key)`,
}}
View Source
var MydbData = []SetupScript{{
`create database if not exists mydb`,
`use mydb`,
}}
View Source
var MyhistorytableData = []SetupScript{{
"CREATE TABLE `myhistorytable` ( `i` bigint NOT NULL, `s` varchar(20) NOT NULL, `c` varchar(20) NOT NULL, PRIMARY KEY (`i`) )",
}}
View Source
var MytableData = []SetupScript{{
`create table mytable (i bigint primary key, s varchar(20) comment 'column s' NOT NULL)`,
`insert into mytable values
(1, 'first row'),
(2, 'second row'),
(3, 'third row')`,
`create unique index mytable_s on mytable (s)`,
`create index mytable_i_s on mytable (i,s)`,
"create index `idx_si` on mytable (`s`,`i`)",
`create view myview as SELECT * FROM mytable`,
}}
View Source
var Mytable_del_idxData = []SetupScript{{
`drop index mytable_s on mytable;`,
`drop index mytable_i_s on mytable;`,
`drop index idx_si on mytable;`,
}}
View Source
var NewlinetableData = []SetupScript{{
"CREATE TABLE `newlinetable` ( `i` bigint NOT NULL, `s` varchar(32) NOT NULL, PRIMARY KEY (`i`) )",
`insert into newlinetable values
(1, '\nthere is some text in here'),
(2, 'there is some\ntext in here'),
(3, 'there is some text\nin here'),
(4, 'there is some text in here\n'),
(5, 'there is some text in here')`,
}}
View Source
var NiltableData = []SetupScript{{
"CREATE TABLE `niltable` ( `i` bigint NOT NULL, `i2` bigint, `b` tinyint, `f` double, PRIMARY KEY (`i`) )",
`insert into niltable values
(1,null,null,null),
(2,2,1,null),
(3,null,0,null),
(4,4,null,4.0),
(5,null,1,5.0),
(6,6,0,6.0)`,
`create index niltable_i2 on niltable (i2)`,
}}
View Source
var Null_rangesData = []SetupScript{{
`create table null_ranges (x int primary key, y int)`,
`create index idx1 on null_ranges (y);`,
`insert into null_ranges values
(0,0),
(1,1),
(2,2),
(3,null),
(4,null)`,
}}
View Source
var Ordinals_ddlData = []SetupScript{{
`CREATE TABLE short_ord_pk (x int not null, y int not null, primary key (y,x))`,
`CREATE TABLE long_ord_pk1 (u int, v int, w int, x int, y int, z int, PRIMARY KEY (y,v))`,
`CREATE TABLE long_ord_pk2 (u int, v int, w int, x int, y int, z int, PRIMARY KEY (y,v,x,z,u))`,
`CREATE TABLE long_ord_pk3 (u int, v int, w int, ww int, x int, y int, z int, PRIMARY KEY (y,v,x,z,u))`,
`CREATE TABLE ord_kl (u int, v int, w int, x int, y int, z int)`,
}}
View Source
var OthertableData = []SetupScript{{
`create table othertable (s2 varchar(20) not null, i2 bigint primary key)`,
`insert into othertable values
('first', 3),
('second', 2),
('third', 1)`,
`create index othertable_s2 on othertable (s2)`,
`create index othertable_s2_i2 on othertable (s2,i2)`,
}}
View Source
var Othertable_del_idxData = []SetupScript{{
`drop index othertable_s2 on othertable;`,
`drop index othertable_s2_i2 on othertable;`,
}}
View Source
var Parent_childData = []SetupScript{{
`CREATE TABLE parent (id INT PRIMARY KEY, v1 INT, v2 INT)`,
`create index v1 on parent (v1)`,
`create index v2 on parent (v2)`,
`CREATE TABLE child (id INT PRIMARY KEY, v1 INT, v2 INT)`,
}}
View Source
var PeopleData = []SetupScript{{
"CREATE TABLE `people` ( `dob` date NOT NULL, `first_name` varchar(20) NOT NULL, `last_name` varchar(20) NOT NULL, `middle_name` varchar(20) NOT NULL, `height_inches` bigint NOT NULL, `gender` bigint NOT NULL, PRIMARY KEY (`dob`,`first_name`,`last_name`,`middle_name`) )",
`insert into people values
('1970-12-1', 'jon', 'smith', '', 72, 0),
('1980-1-11', 'jon', 'smith', '', 67, 0),
('1990-2-21', 'jane', 'doe', '', 68, 1),
('2000-12-31', 'frank', 'franklin', '', 70, 2),
('2010-3-15', 'jane', 'doe', '', 69, 1)`,
`create index people_l_f on people (last_name,first_name)`,
}}
View Source
var Pk_tablesData = []SetupScript{{
`create table one_pk (pk smallint primary key, c1 smallint, c2 smallint, c3 smallint, c4 smallint, c5 smallint)`,
`insert into one_pk values
(0,0,1,2,3,4),
(1,10,11,12,13,14),
(2,20,21,22,23,24),
(3,30,31,32,33,34)`,
`create table two_pk (
pk1 tinyint,
pk2 tinyint,
c1 tinyint NOT NULL,
c2 tinyint NOT NULL,
c3 tinyint NOT NULL,
c4 tinyint NOT NULL,
c5 tinyint NOT NULL,
primary key (pk1, pk2)
)`,
`insert into two_pk values
(0,0,0,1,2,3,4),
(0,1,10,11,12,13,14),
(1,0,20,21,22,23,24),
(1,1,30,31,32,33,34)`,
`create table one_pk_two_idx (
pk bigint primary key,
v1 bigint,
v2 bigint
)`,
`insert into one_pk_two_idx values
(0,0,0),
(1,1,1),
(2,2,2),
(3,3,3),
(4,4,4),
(5,5,5),
(6,6,6),
(7,7,7)`,
`create table one_pk_three_idx (
pk bigint primary key,
v1 bigint,
v2 bigint,
v3 bigint
)`,
`insert into one_pk_three_idx values
(0,0,0,0),
(1,0,0,1),
(2,0,1,0),
(3,0,2,2),
(4,1,0,0),
(5,2,0,3),
(6,3,3,0),
(7,4,4,4)`,
`create index one_pk_two_idx_1 on one_pk_two_idx (v1)`,
`create index one_pk_two_idx_2 on one_pk_two_idx (v1, v2)`,
`create index one_pk_three_idx_idx on one_pk_three_idx (v1, v2, v3)`,
}}
View Source
var Reserved_keywordsData = []SetupScript{{
"CREATE TABLE `reservedWordsTable` ( `Timestamp` varchar(20) NOT NULL, `and` varchar(20), `or` varchar(20), `select` varchar(20), PRIMARY KEY (`Timestamp`) )",
`insert into reservedWordsTable values
('1', '1.1', 'aaa', 'create')`,
}}
View Source
var SpatialData = []SetupScript{{
`create table stringtogeojson_table (i bigint primary key, s blob)`,
`insert into stringtogeojson_table values
(0, '{"type": "Point", "coordinates": [1,2]}'),
(1, '{"type": "Point", "coordinates": [123.45,56.789]}'),
(2, '{"type": "LineString", "coordinates": [[1,2],[3,4]]}'),
(3, '{"type": "LineString", "coordinates": [[1.23,2.345],[3.56789,4.56]]}'),
(4, '{"type": "Polygon", "coordinates": [[[1.1,2.2],[3.3,4.4],[5.5,6.6],[1.1,2.2]]]}'),
(5, '{"type": "Polygon", "coordinates": [[[0,0],[1,1],[2,2],[0,0]]]}'),
(6, '{"type": "MultiPoint", "coordinates": [[1,2],[3,4]]}'),
(7, '{"type": "MultiPoint", "coordinates": [[1.23,2.345],[3.56789,4.56]]}'),
(8, '{"type": "MultiLineString", "coordinates": [[[1.1,2.2],[3.3,4.4]],[[5.5,6.6],[7.7,8.8]]]}'),
(9, '{"type": "MultiPolygon", "coordinates": [[[[0.0, 0.0],[1.1,2.2],[3.3,4.4],[0.0,0.0]]],[[[1.1,1.1],[1.1,2.2],[3.3,4.4],[1.1,1.1]]]]}'),
(10, '{"type": "GeometryCollection", "geometries": [{"type": "GeometryCollection", "geometries":[]}]}')`,
`create table geometry_table (i bigint primary key, g geometry NOT NULL)`,
`insert into geometry_table values
(1, ST_GeomFromText('Point(1 2)')),
(2, ST_SRID(ST_GeomFromText('Point(1 2)'), 4326)),
(3, ST_GeomFromText('Linestring(1 2,3 4)')),
(4, ST_SRID(ST_GeomFromText('Linestring(1 2,3 4)'), 4326)),
(5, ST_GeomFromText('POLYGON((0 0,0 1,1 1,0 0))')),
(6, ST_SRID(ST_GeomFromText('POLYGON((0 0,0 1,1 1,0 0))'), 4326)),
(7, ST_GeomFromText('MultiPoint(1 2,3 4)')),
(8, ST_SRID(ST_GeomFromText('MultiPoint(1 2,3 4)'), 4326)),
(9, ST_GeomFromText('MULTILINESTRING((1 2,3 4))')),
(10, ST_SRID(ST_GeomFromText('MULTILINESTRING((1 2,3 4))'), 4326)),
(11, ST_GeomFromText('MultiPolygon(((0 0,1 2,3 4,0 0)))')),
(12, ST_SRID(ST_GeomFromText('MultiPolygon(((0 0,1 2,3 4,0 0)))'), 4326)),
(13, ST_GeomFromText('GeometryCollection(GeometryCollection())')),
(14, ST_SRID(ST_GeomFromText('GeometryCollection(GeometryCollection())'), 4326))`,
`create table point_table (i bigint primary key, p point NOT NULL);`,
`insert into point_table values (5, ST_GeomFromText('Point(1 2)'))`,
`create table line_table (i bigint primary key, l linestring NOT NULL);`,
`insert into line_table values
(0, ST_GeomFromText('Linestring(1 2,3 4)')),
(1, ST_GeomFromText('Linestring(1 2,3 4,5 6)'))`,
`create table polygon_table (i bigint primary key, p polygon NOT NULL);`,
`insert into polygon_table values
(0, ST_GeomFromText('Polygon((0 0,0 1,1 1,0 0))')),
(1, ST_GeomFromText('Polygon((0 0,0 1,1 1,0 0),(0 0,0 1,1 1,0 0))'))`,
`create table mpoint_table (i bigint primary key, p multipoint NOT NULL);`,
`insert into mpoint_table values
(0, ST_GeomFromText('MultiPoint(1 2,3 4)')),
(1, ST_GeomFromText('MultiPoint(1 2,3 4,5 6)'))`,
`create table mline_table (i bigint primary key, l multilinestring NOT NULL);`,
`insert into mline_table values
(0, ST_GeomFromText('MultiLineString((1 2,3 4))')),
(1, ST_GeomFromText('MultiLineString((1 2,3 4,5 6))'))`,
`create table mpoly_table (i bigint primary key, p multipolygon NOT NULL);`,
`insert into mpoly_table values
(0, ST_GeomFromText('MultiPolygon(((0 0,1 2,3 4,0 0)))')),
(1, ST_GeomFromText('MultiPolygon(((0 0,1 2,3 4,0 0)),((1 1,2 3,4 5,1 1)))'))`,
`create table geom_coll_table (i bigint primary key, g geometrycollection NOT NULL);`,
`insert into geom_coll_table values
(0, ST_GeomFromText('GeometryCollection(GeometryCollection())'))`,
}}
View Source
var SpecialtableData = []SetupScript{{
`create table specialtable (id bigint primary key, name varchar(20))`,
`insert into specialtable values
(1, 'first_row'),
(2, 'second_row'),
(3, 'third_row'),
(4, '%'),
(5, '\''),
(6, '\"'),
(7, '\t'),
(8, '\n'),
(9, "\v"),
(10, 'test%test'),
(11, 'test\'test'),
(12, 'test\"test'),
(13, 'test\ttest'),
(14, 'test\ntest'),
(15, 'test\vtest')`,
}}
View Source
var StringandtableData = []SetupScript{{
"CREATE TABLE `stringandtable` ( `k` bigint NOT NULL, `i` bigint, `v` varchar(20), PRIMARY KEY (`k`) );",
`insert into stringandtable values
(0, 0, '0'),
(1, 1, '1'),
(2, 2, ''),
(3, 3, 'true'),
(4, 4, 'false'),
(5, 5, null),
(6, null, '2');`,
}}
View Source
var SysbenchData = []SetupScript{{
"CREATE TABLE `sbtest1` ( `id` int NOT NULL, `tiny_int_col` tinyint NOT NULL, `unsigned_tiny_int_col` tinyint unsigned NOT NULL, `small_int_col` smallint NOT NULL, `unsigned_small_int_col` smallint unsigned NOT NULL, `medium_int_col` mediumint NOT NULL, `unsigned_medium_int_col` mediumint unsigned NOT NULL, `int_col` int NOT NULL, `unsigned_int_col` int unsigned NOT NULL, `big_int_col` bigint NOT NULL, `unsigned_big_int_col` bigint unsigned NOT NULL, `decimal_col` decimal(10,0) NOT NULL, `float_col` float NOT NULL, `double_col` double NOT NULL, `bit_col` bit(1) NOT NULL, `char_col` char(1) NOT NULL, `var_char_col` varchar(64) NOT NULL, `enum_col` enum('val0','val1','val2') NOT NULL, `set_col` set('val0','val1','val2') NOT NULL, `date_col` date NOT NULL, `time_col` time(6) NOT NULL, `datetime_col` datetime NOT NULL, `timestamp_col` timestamp NOT NULL, `year_col` year NOT NULL, PRIMARY KEY (`id`), KEY `big_int_col` (`big_int_col`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin ---",
"CREATE TABLE `sbtest2` ( `id` int NOT NULL, `int_col` int NOT NULL, `unsigned_int_col` int unsigned NOT NULL, `char_col` char(1) NOT NULL, `var_char_col` varchar(64) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin",
`analyze table sbtest1 update histogram on id using data '{\"row_count\": 10000}';`,
`analyze table sbtest2 update histogram on id using data '{\"row_count\": 10000}';`,
}}
View Source
var TabletestData = []SetupScript{{
`create table tabletest (
i int primary key,
s varchar(20) not null
)`,
`insert into tabletest values
(1, 'first row'),
(2, 'second row'),
(3, 'third row')`,
}}
View Source
var TestdbData = []SetupScript{{
`create database test;`,
}}
View Source
var TpccData = []SetupScript{{
`SET FOREIGN_KEY_CHECKS=0;`,
"CREATE TABLE `customer2` ( `c_id` int NOT NULL, `c_d_id` tinyint NOT NULL, `c_w_id` smallint NOT NULL, `c_first` varchar(16), `c_middle` char(2), `c_last` varchar(16), `c_street_1` varchar(20), `c_street_2` varchar(20), `c_city` varchar(20), `c_state` char(2), `c_zip` char(9), `c_phone` char(16), `c_since` datetime, `c_credit` char(2), `c_credit_lim` bigint, `c_discount` decimal(4,2), `c_balance` decimal(12,2), `c_ytd_payment` decimal(12,2), `c_payment_cnt` smallint, `c_delivery_cnt` smallint, `c_data` text, primary KEY (`c_w_id`,`c_d_id`,`c_id`), KEY `idx_customer2` (`c_w_id`,`c_d_id`,`c_last`,`c_first`), CONSTRAINT `fkey_customer_1_2` FOREIGN KEY (`c_w_id`,`c_d_id`) REFERENCES `district2` (`d_w_id`,`d_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
"CREATE TABLE `district2` ( `d_id` tinyint NOT NULL, `d_w_id` smallint NOT NULL, `d_name` varchar(10), `d_street_1` varchar(20), `d_street_2` varchar(20), `d_city` varchar(20), `d_state` char(2), `d_zip` char(9), `d_tax` decimal(4,2), `d_ytd` decimal(12,2), `d_next_o_id` int, primary KEY (`d_w_id`,`d_id`), CONSTRAINT `fkey_district_1_2` FOREIGN KEY (`d_w_id`) REFERENCES `warehouse2` (`w_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
"CREATE TABLE `history2` ( `h_c_id` int, `h_c_d_id` tinyint, `h_c_w_id` smallint, `h_d_id` tinyint, `h_w_id` smallint, `h_date` datetime, `h_amount` decimal(6,2), `h_data` varchar(24), KEY `fkey_history_12` (`h_c_w_id`,`h_c_d_id`,`h_c_id`), KEY `fkey_history_22` (`h_w_id`,`h_d_id`), CONSTRAINT `fkey_history_1_2` FOREIGN KEY (`h_c_w_id`,`h_c_d_id`,`h_c_id`) REFERENCES `customer2` (`c_w_id`,`c_d_id`,`c_id`), CONSTRAINT `fkey_history_2_2` FOREIGN KEY (`h_w_id`,`h_d_id`) REFERENCES `district2` (`d_w_id`,`d_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
"CREATE TABLE `item2` ( `i_id` int NOT NULL, `i_im_id` int, `i_name` varchar(24), `i_price` decimal(5,2), `i_data` varchar(50), primary KEY (`i_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
"CREATE TABLE `new_orders2` ( `no_o_id` int NOT NULL, `no_d_id` tinyint NOT NULL, `no_w_id` smallint NOT NULL, primary KEY (`no_w_id`,`no_d_id`,`no_o_id`), CONSTRAINT `fkey_new_orders_1_2` FOREIGN KEY (`no_w_id`,`no_d_id`,`no_o_id`) REFERENCES `orders2` (`o_w_id`,`o_d_id`,`o_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
"CREATE TABLE `order_line2` ( `ol_o_id` int NOT NULL, `ol_d_id` tinyint NOT NULL, `ol_w_id` smallint NOT NULL, `ol_number` tinyint NOT NULL, `ol_i_id` int, `ol_supply_w_id` smallint, `ol_delivery_d` datetime, `ol_quantity` tinyint, `ol_amount` decimal(6,2), `ol_dist_info` char(24), primary KEY (`ol_w_id`,`ol_d_id`,`ol_o_id`,`ol_number`), KEY `fkey_order_line_22` (`ol_supply_w_id`,`ol_i_id`), CONSTRAINT `fkey_order_line_1_2` FOREIGN KEY (`ol_w_id`,`ol_d_id`,`ol_o_id`) REFERENCES `orders2` (`o_w_id`,`o_d_id`,`o_id`), CONSTRAINT `fkey_order_line_2_2` FOREIGN KEY (`ol_supply_w_id`,`ol_i_id`) REFERENCES `stock2` (`s_w_id`,`s_i_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
"CREATE TABLE `orders2` ( `o_id` int NOT NULL, `o_d_id` tinyint NOT NULL, `o_w_id` smallint NOT NULL, `o_c_id` int, `o_entry_d` datetime, `o_carrier_id` tinyint, `o_ol_cnt` tinyint, `o_all_local` tinyint, primary KEY (`o_w_id`,`o_d_id`,`o_id`), KEY `idx_orders2` (`o_w_id`,`o_d_id`,`o_c_id`,`o_id`), CONSTRAINT `fkey_orders_1_2` FOREIGN KEY (`o_w_id`,`o_d_id`,`o_c_id`) REFERENCES `customer2` (`c_w_id`,`c_d_id`,`c_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
"CREATE TABLE `stock2` ( `s_i_id` int NOT NULL, `s_w_id` smallint NOT NULL, `s_quantity` smallint, `s_dist_01` char(24), `s_dist_02` char(24), `s_dist_03` char(24), `s_dist_04` char(24), `s_dist_05` char(24), `s_dist_06` char(24), `s_dist_07` char(24), `s_dist_08` char(24), `s_dist_09` char(24), `s_dist_10` char(24), `s_ytd` decimal(8,0), `s_order_cnt` smallint, `s_remote_cnt` smallint, `s_data` varchar(50), primary KEY (`s_w_id`,`s_i_id`), KEY `fkey_stock_22` (`s_i_id`), CONSTRAINT `fkey_stock_1_2` FOREIGN KEY (`s_w_id`) REFERENCES `warehouse2` (`w_id`), CONSTRAINT `fkey_stock_2_2` FOREIGN KEY (`s_i_id`) REFERENCES `item2` (`i_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
"CREATE TABLE `warehouse2` ( `w_id` smallint NOT NULL, `w_name` varchar(10), `w_street_1` varchar(20), `w_street_2` varchar(20), `w_city` varchar(20), `w_state` char(2), `w_zip` char(9), `w_tax` decimal(4,2), `w_ytd` decimal(12,2), primary KEY (`w_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
`SET FOREIGN_KEY_CHECKS=1;`,
`analyze table history2 update histogram on (h_w_id, h_d_id) using data '{"types": ["smallint", "tinyint"], "buckets": [{"mcvs": [[1, 1]], "row_count": 96, "mcv_counts": [96], "null_count": 0, "bound_count": 96, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 177, "mcv_counts": [177], "null_count": 0, "bound_count": 177, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 171, "mcv_counts": [171], "null_count": 0, "bound_count": 171, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 153, "mcv_counts": [153], "null_count": 0, "bound_count": 153, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 127, "mcv_counts": [127], "null_count": 0, "bound_count": 127, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 203, "mcv_counts": [203], "null_count": 0, "bound_count": 203, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 126, "mcv_counts": [126], "null_count": 0, "bound_count": 126, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 98, "mcv_counts": [98], "null_count": 0, "bound_count": 98, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 133, "mcv_counts": [133], "null_count": 0, "bound_count": 133, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 157, "mcv_counts": [157], "null_count": 0, "bound_count": 157, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 198, "mcv_counts": [198], "null_count": 0, "bound_count": 198, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 159, "mcv_counts": [159], "null_count": 0, "bound_count": 159, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 117, "mcv_counts": [117], "null_count": 0, "bound_count": 117, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 153, "mcv_counts": [153], "null_count": 0, "bound_count": 153, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 119, "mcv_counts": [119], "null_count": 0, "bound_count": 119, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 91, "mcv_counts": [91], "null_count": 0, "bound_count": 91, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 134, "mcv_counts": [134], "null_count": 0, "bound_count": 134, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 195, "mcv_counts": [195], "null_count": 0, "bound_count": 195, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 101, "mcv_counts": [101], "null_count": 0, "bound_count": 101, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 153, "mcv_counts": [153], "null_count": 0, "bound_count": 153, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 158, "mcv_counts": [158], "null_count": 0, "bound_count": 158, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 1]], "row_count": 95, "mcv_counts": [95], "null_count": 0, "bound_count": 95, "upper_bound": [1, 1], "distinct_count": 1}, {"mcvs": [[1, 2], [1, 1]], "row_count": 128, "mcv_counts": [39, 89], "null_count": 0, "bound_count": 39, "upper_bound": [1, 2], "distinct_count": 2}, {"mcvs": [[1, 2]], "row_count": 160, "mcv_counts": [160], "null_count": 0, "bound_count": 160, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 154, "mcv_counts": [154], "null_count": 0, "bound_count": 154, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 149, "mcv_counts": [149], "null_count": 0, "bound_count": 149, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 173, "mcv_counts": [173], "null_count": 0, "bound_count": 173, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 184, "mcv_counts": [184], "null_count": 0, "bound_count": 184, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 133, "mcv_counts": [133], "null_count": 0, "bound_count": 133, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 123, "mcv_counts": [123], "null_count": 0, "bound_count": 123, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 114, "mcv_counts": [114], "null_count": 0, "bound_count": 114, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 148, "mcv_counts": [148], "null_count": 0, "bound_count": 148, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 91, "mcv_counts": [91], "null_count": 0, "bound_count": 91, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 205, "mcv_counts": [205], "null_count": 0, "bound_count": 205, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 107, "mcv_counts": [107], "null_count": 0, "bound_count": 107, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 194, "mcv_counts": [194], "null_count": 0, "bound_count": 194, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 180, "mcv_counts": [180], "null_count": 0, "bound_count": 180, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 165, "mcv_counts": [165], "null_count": 0, "bound_count": 165, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 138, "mcv_counts": [138], "null_count": 0, "bound_count": 138, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 153, "mcv_counts": [153], "null_count": 0, "bound_count": 153, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 133, "mcv_counts": [133], "null_count": 0, "bound_count": 133, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 118, "mcv_counts": [118], "null_count": 0, "bound_count": 118, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 190, "mcv_counts": [190], "null_count": 0, "bound_count": 190, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 2]], "row_count": 113, "mcv_counts": [113], "null_count": 0, "bound_count": 113, "upper_bound": [1, 2], "distinct_count": 1}, {"mcvs": [[1, 3], [1, 2]], "row_count": 144, "mcv_counts": [66, 78], "null_count": 0, "bound_count": 66, "upper_bound": [1, 3], "distinct_count": 2}, {"mcvs": [[1, 3]], "row_count": 119, "mcv_counts": [119], "null_count": 0, "bound_count": 119, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 187, "mcv_counts": [187], "null_count": 0, "bound_count": 187, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 94, "mcv_counts": [94], "null_count": 0, "bound_count": 94, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 116, "mcv_counts": [116], "null_count": 0, "bound_count": 116, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 165, "mcv_counts": [165], "null_count": 0, "bound_count": 165, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 152, "mcv_counts": [152], "null_count": 0, "bound_count": 152, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 95, "mcv_counts": [95], "null_count": 0, "bound_count": 95, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 188, "mcv_counts": [188], "null_count": 0, "bound_count": 188, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 189, "mcv_counts": [189], "null_count": 0, "bound_count": 189, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 75, "mcv_counts": [75], "null_count": 0, "bound_count": 75, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 91, "mcv_counts": [91], "null_count": 0, "bound_count": 91, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 187, "mcv_counts": [187], "null_count": 0, "bound_count": 187, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 98, "mcv_counts": [98], "null_count": 0, "bound_count": 98, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 144, "mcv_counts": [144], "null_count": 0, "bound_count": 144, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 161, "mcv_counts": [161], "null_count": 0, "bound_count": 161, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 149, "mcv_counts": [149], "null_count": 0, "bound_count": 149, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 190, "mcv_counts": [190], "null_count": 0, "bound_count": 190, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 184, "mcv_counts": [184], "null_count": 0, "bound_count": 184, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 189, "mcv_counts": [189], "null_count": 0, "bound_count": 189, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 178, "mcv_counts": [178], "null_count": 0, "bound_count": 178, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 3]], "row_count": 109, "mcv_counts": [109], "null_count": 0, "bound_count": 109, "upper_bound": [1, 3], "distinct_count": 1}, {"mcvs": [[1, 4], [1, 3]], "row_count": 118, "mcv_counts": [46, 72], "null_count": 0, "bound_count": 46, "upper_bound": [1, 4], "distinct_count": 2}, {"mcvs": [[1, 4]], "row_count": 86, "mcv_counts": [86], "null_count": 0, "bound_count": 86, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 120, "mcv_counts": [120], "null_count": 0, "bound_count": 120, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 179, "mcv_counts": [179], "null_count": 0, "bound_count": 179, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 209, "mcv_counts": [209], "null_count": 0, "bound_count": 209, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 122, "mcv_counts": [122], "null_count": 0, "bound_count": 122, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 100, "mcv_counts": [100], "null_count": 0, "bound_count": 100, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 185, "mcv_counts": [185], "null_count": 0, "bound_count": 185, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 137, "mcv_counts": [137], "null_count": 0, "bound_count": 137, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 121, "mcv_counts": [121], "null_count": 0, "bound_count": 121, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 186, "mcv_counts": [186], "null_count": 0, "bound_count": 186, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 191, "mcv_counts": [191], "null_count": 0, "bound_count": 191, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 121, "mcv_counts": [121], "null_count": 0, "bound_count": 121, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 189, "mcv_counts": [189], "null_count": 0, "bound_count": 189, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 71, "mcv_counts": [71], "null_count": 0, "bound_count": 71, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 158, "mcv_counts": [158], "null_count": 0, "bound_count": 158, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 138, "mcv_counts": [138], "null_count": 0, "bound_count": 138, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 100, "mcv_counts": [100], "null_count": 0, "bound_count": 100, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 172, "mcv_counts": [172], "null_count": 0, "bound_count": 172, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 169, "mcv_counts": [169], "null_count": 0, "bound_count": 169, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 107, "mcv_counts": [107], "null_count": 0, "bound_count": 107, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 4]], "row_count": 214, "mcv_counts": [214], "null_count": 0, "bound_count": 214, "upper_bound": [1, 4], "distinct_count": 1}, {"mcvs": [[1, 5], [1, 4]], "row_count": 119, "mcv_counts": [27, 92], "null_count": 0, "bound_count": 27, "upper_bound": [1, 5], "distinct_count": 2}, {"mcvs": [[1, 5]], "row_count": 160, "mcv_counts": [160], "null_count": 0, "bound_count": 160, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 160, "mcv_counts": [160], "null_count": 0, "bound_count": 160, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 129, "mcv_counts": [129], "null_count": 0, "bound_count": 129, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 102, "mcv_counts": [102], "null_count": 0, "bound_count": 102, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 188, "mcv_counts": [188], "null_count": 0, "bound_count": 188, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 166, "mcv_counts": [166], "null_count": 0, "bound_count": 166, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 101, "mcv_counts": [101], "null_count": 0, "bound_count": 101, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 122, "mcv_counts": [122], "null_count": 0, "bound_count": 122, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 123, "mcv_counts": [123], "null_count": 0, "bound_count": 123, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 190, "mcv_counts": [190], "null_count": 0, "bound_count": 190, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 140, "mcv_counts": [140], "null_count": 0, "bound_count": 140, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 179, "mcv_counts": [179], "null_count": 0, "bound_count": 179, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 155, "mcv_counts": [155], "null_count": 0, "bound_count": 155, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 151, "mcv_counts": [151], "null_count": 0, "bound_count": 151, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 65, "mcv_counts": [65], "null_count": 0, "bound_count": 65, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 154, "mcv_counts": [154], "null_count": 0, "bound_count": 154, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 95, "mcv_counts": [95], "null_count": 0, "bound_count": 95, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 186, "mcv_counts": [186], "null_count": 0, "bound_count": 186, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 56, "mcv_counts": [56], "null_count": 0, "bound_count": 56, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 130, "mcv_counts": [130], "null_count": 0, "bound_count": 130, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 155, "mcv_counts": [155], "null_count": 0, "bound_count": 155, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5]], "row_count": 161, "mcv_counts": [161], "null_count": 0, "bound_count": 161, "upper_bound": [1, 5], "distinct_count": 1}, {"mcvs": [[1, 5], [1, 6]], "row_count": 216, "mcv_counts": [106, 110], "null_count": 0, "bound_count": 110, "upper_bound": [1, 6], "distinct_count": 2}, {"mcvs": [[1, 6]], "row_count": 86, "mcv_counts": [86], "null_count": 0, "bound_count": 86, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 132, "mcv_counts": [132], "null_count": 0, "bound_count": 132, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 171, "mcv_counts": [171], "null_count": 0, "bound_count": 171, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 123, "mcv_counts": [123], "null_count": 0, "bound_count": 123, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 174, "mcv_counts": [174], "null_count": 0, "bound_count": 174, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 127, "mcv_counts": [127], "null_count": 0, "bound_count": 127, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 156, "mcv_counts": [156], "null_count": 0, "bound_count": 156, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 108, "mcv_counts": [108], "null_count": 0, "bound_count": 108, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 127, "mcv_counts": [127], "null_count": 0, "bound_count": 127, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 194, "mcv_counts": [194], "null_count": 0, "bound_count": 194, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 132, "mcv_counts": [132], "null_count": 0, "bound_count": 132, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 112, "mcv_counts": [112], "null_count": 0, "bound_count": 112, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 134, "mcv_counts": [134], "null_count": 0, "bound_count": 134, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 81, "mcv_counts": [81], "null_count": 0, "bound_count": 81, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 162, "mcv_counts": [162], "null_count": 0, "bound_count": 162, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 131, "mcv_counts": [131], "null_count": 0, "bound_count": 131, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 143, "mcv_counts": [143], "null_count": 0, "bound_count": 143, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 195, "mcv_counts": [195], "null_count": 0, "bound_count": 195, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 100, "mcv_counts": [100], "null_count": 0, "bound_count": 100, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 141, "mcv_counts": [141], "null_count": 0, "bound_count": 141, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 147, "mcv_counts": [147], "null_count": 0, "bound_count": 147, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 6]], "row_count": 149, "mcv_counts": [149], "null_count": 0, "bound_count": 149, "upper_bound": [1, 6], "distinct_count": 1}, {"mcvs": [[1, 7], [1, 6]], "row_count": 138, "mcv_counts": [43, 95], "null_count": 0, "bound_count": 43, "upper_bound": [1, 7], "distinct_count": 2}, {"mcvs": [[1, 7]], "row_count": 127, "mcv_counts": [127], "null_count": 0, "bound_count": 127, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 173, "mcv_counts": [173], "null_count": 0, "bound_count": 173, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 155, "mcv_counts": [155], "null_count": 0, "bound_count": 155, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 138, "mcv_counts": [138], "null_count": 0, "bound_count": 138, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 193, "mcv_counts": [193], "null_count": 0, "bound_count": 193, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 85, "mcv_counts": [85], "null_count": 0, "bound_count": 85, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 164, "mcv_counts": [164], "null_count": 0, "bound_count": 164, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 127, "mcv_counts": [127], "null_count": 0, "bound_count": 127, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 126, "mcv_counts": [126], "null_count": 0, "bound_count": 126, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 161, "mcv_counts": [161], "null_count": 0, "bound_count": 161, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 90, "mcv_counts": [90], "null_count": 0, "bound_count": 90, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 203, "mcv_counts": [203], "null_count": 0, "bound_count": 203, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 150, "mcv_counts": [150], "null_count": 0, "bound_count": 150, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 119, "mcv_counts": [119], "null_count": 0, "bound_count": 119, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 117, "mcv_counts": [117], "null_count": 0, "bound_count": 117, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 134, "mcv_counts": [134], "null_count": 0, "bound_count": 134, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 177, "mcv_counts": [177], "null_count": 0, "bound_count": 177, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 159, "mcv_counts": [159], "null_count": 0, "bound_count": 159, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 107, "mcv_counts": [107], "null_count": 0, "bound_count": 107, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 142, "mcv_counts": [142], "null_count": 0, "bound_count": 142, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 124, "mcv_counts": [124], "null_count": 0, "bound_count": 124, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7]], "row_count": 159, "mcv_counts": [159], "null_count": 0, "bound_count": 159, "upper_bound": [1, 7], "distinct_count": 1}, {"mcvs": [[1, 7], [1, 8]], "row_count": 176, "mcv_counts": [35, 141], "null_count": 0, "bound_count": 141, "upper_bound": [1, 8], "distinct_count": 2}, {"mcvs": [[1, 8]], "row_count": 188, "mcv_counts": [188], "null_count": 0, "bound_count": 188, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 71, "mcv_counts": [71], "null_count": 0, "bound_count": 71, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 220, "mcv_counts": [220], "null_count": 0, "bound_count": 220, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 112, "mcv_counts": [112], "null_count": 0, "bound_count": 112, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 173, "mcv_counts": [173], "null_count": 0, "bound_count": 173, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 175, "mcv_counts": [175], "null_count": 0, "bound_count": 175, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 73, "mcv_counts": [73], "null_count": 0, "bound_count": 73, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 167, "mcv_counts": [167], "null_count": 0, "bound_count": 167, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 178, "mcv_counts": [178], "null_count": 0, "bound_count": 178, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 88, "mcv_counts": [88], "null_count": 0, "bound_count": 88, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 116, "mcv_counts": [116], "null_count": 0, "bound_count": 116, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 26, "mcv_counts": [26], "null_count": 0, "bound_count": 26, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 87, "mcv_counts": [87], "null_count": 0, "bound_count": 87, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 52, "mcv_counts": [52], "null_count": 0, "bound_count": 52, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 85, "mcv_counts": [85], "null_count": 0, "bound_count": 85, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 139, "mcv_counts": [139], "null_count": 0, "bound_count": 139, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 151, "mcv_counts": [151], "null_count": 0, "bound_count": 151, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 158, "mcv_counts": [158], "null_count": 0, "bound_count": 158, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 80, "mcv_counts": [80], "null_count": 0, "bound_count": 80, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 168, "mcv_counts": [168], "null_count": 0, "bound_count": 168, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 119, "mcv_counts": [119], "null_count": 0, "bound_count": 119, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 151, "mcv_counts": [151], "null_count": 0, "bound_count": 151, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 116, "mcv_counts": [116], "null_count": 0, "bound_count": 116, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8]], "row_count": 169, "mcv_counts": [169], "null_count": 0, "bound_count": 169, "upper_bound": [1, 8], "distinct_count": 1}, {"mcvs": [[1, 8], [1, 9]], "row_count": 130, "mcv_counts": [23, 107], "null_count": 0, "bound_count": 107, "upper_bound": [1, 9], "distinct_count": 2}, {"mcvs": [[1, 9]], "row_count": 147, "mcv_counts": [147], "null_count": 0, "bound_count": 147, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 175, "mcv_counts": [175], "null_count": 0, "bound_count": 175, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 118, "mcv_counts": [118], "null_count": 0, "bound_count": 118, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 176, "mcv_counts": [176], "null_count": 0, "bound_count": 176, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 158, "mcv_counts": [158], "null_count": 0, "bound_count": 158, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 130, "mcv_counts": [130], "null_count": 0, "bound_count": 130, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 140, "mcv_counts": [140], "null_count": 0, "bound_count": 140, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 126, "mcv_counts": [126], "null_count": 0, "bound_count": 126, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 96, "mcv_counts": [96], "null_count": 0, "bound_count": 96, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 169, "mcv_counts": [169], "null_count": 0, "bound_count": 169, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 176, "mcv_counts": [176], "null_count": 0, "bound_count": 176, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 133, "mcv_counts": [133], "null_count": 0, "bound_count": 133, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 166, "mcv_counts": [166], "null_count": 0, "bound_count": 166, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 102, "mcv_counts": [102], "null_count": 0, "bound_count": 102, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 174, "mcv_counts": [174], "null_count": 0, "bound_count": 174, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 115, "mcv_counts": [115], "null_count": 0, "bound_count": 115, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 102, "mcv_counts": [102], "null_count": 0, "bound_count": 102, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 112, "mcv_counts": [112], "null_count": 0, "bound_count": 112, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 183, "mcv_counts": [183], "null_count": 0, "bound_count": 183, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 152, "mcv_counts": [152], "null_count": 0, "bound_count": 152, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 9]], "row_count": 169, "mcv_counts": [169], "null_count": 0, "bound_count": 169, "upper_bound": [1, 9], "distinct_count": 1}, {"mcvs": [[1, 10], [1, 9]], "row_count": 100, "mcv_counts": [28, 72], "null_count": 0, "bound_count": 28, "upper_bound": [1, 10], "distinct_count": 2}, {"mcvs": [[1, 10]], "row_count": 145, "mcv_counts": [145], "null_count": 0, "bound_count": 145, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 142, "mcv_counts": [142], "null_count": 0, "bound_count": 142, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 157, "mcv_counts": [157], "null_count": 0, "bound_count": 157, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 171, "mcv_counts": [171], "null_count": 0, "bound_count": 171, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 136, "mcv_counts": [136], "null_count": 0, "bound_count": 136, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 197, "mcv_counts": [197], "null_count": 0, "bound_count": 197, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 196, "mcv_counts": [196], "null_count": 0, "bound_count": 196, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 138, "mcv_counts": [138], "null_count": 0, "bound_count": 138, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 151, "mcv_counts": [151], "null_count": 0, "bound_count": 151, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 138, "mcv_counts": [138], "null_count": 0, "bound_count": 138, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 162, "mcv_counts": [162], "null_count": 0, "bound_count": 162, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 160, "mcv_counts": [160], "null_count": 0, "bound_count": 160, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 147, "mcv_counts": [147], "null_count": 0, "bound_count": 147, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 86, "mcv_counts": [86], "null_count": 0, "bound_count": 86, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 157, "mcv_counts": [157], "null_count": 0, "bound_count": 157, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 198, "mcv_counts": [198], "null_count": 0, "bound_count": 198, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 123, "mcv_counts": [123], "null_count": 0, "bound_count": 123, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 173, "mcv_counts": [173], "null_count": 0, "bound_count": 173, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 165, "mcv_counts": [165], "null_count": 0, "bound_count": 165, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 143, "mcv_counts": [143], "null_count": 0, "bound_count": 143, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 128, "mcv_counts": [128], "null_count": 0, "bound_count": 128, "upper_bound": [1, 10], "distinct_count": 1}, {"mcvs": [[1, 10]], "row_count": 19, "mcv_counts": [19], "null_count": 0, "bound_count": 19, "upper_bound": [1, 10], "distinct_count": 1}], "columns": ["h_w_id", "h_d_id"], "avg_size": 0, "qualifier": {"database": "sbt", "table": "history2", "index": "fkey_history_22"}, "row_count": 32179, "created_at": "2023-11-10T15:06:17-08:00", "null_count": 32179, "distinct_count": 236}';`,
`analyze table history2 update histogram on (h_c_w_id,h_c_d_id,h_c_id) using data '{"types": ["smallint", "tinyint", "int"], "buckets": [{"mcvs": [[1, 1, 78], [1, 1, 110], [1, 1, 32]], "row_count": 121, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 111], "distinct_count": 111}, {"mcvs": [[1, 1, 255], [1, 1, 237], [1, 1, 114]], "row_count": 160, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 1, 255], "distinct_count": 144}, {"mcvs": [[1, 1, 386], [1, 1, 380], [1, 1, 270]], "row_count": 160, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 400], "distinct_count": 145}, {"mcvs": [[1, 1, 492], [1, 1, 448], [1, 1, 411]], "row_count": 128, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 519], "distinct_count": 119}, {"mcvs": [[1, 1, 616], [1, 1, 654], [1, 1, 578]], "row_count": 155, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 663], "distinct_count": 145}, {"mcvs": [[1, 1, 789], [1, 1, 742], [1, 1, 747]], "row_count": 194, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 838], "distinct_count": 175}, {"mcvs": [[1, 1, 969], [1, 1, 934], [1, 1, 882]], "row_count": 143, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 973], "distinct_count": 135}, {"mcvs": [[1, 1, 1104], [1, 1, 1112], [1, 1, 1021]], "row_count": 151, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1115], "distinct_count": 142}, {"mcvs": [[1, 1, 1206], [1, 1, 1179], [1, 1, 1175]], "row_count": 98, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1208], "distinct_count": 93}, {"mcvs": [[1, 1, 1284], [1, 1, 1253], [1, 1, 1264]], "row_count": 143, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1348], "distinct_count": 140}, {"mcvs": [[1, 1, 1459], [1, 1, 1465], [1, 1, 1376]], "row_count": 125, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1468], "distinct_count": 120}, {"mcvs": [[1, 1, 1550], [1, 1, 1543], [1, 1, 1494]], "row_count": 91, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 1, 1550], "distinct_count": 82}, {"mcvs": [[1, 1, 1608], [1, 1, 1570], [1, 1, 1553]], "row_count": 59, "mcv_counts": [1, 2, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1608], "distinct_count": 58}, {"mcvs": [[1, 1, 1698], [1, 1, 1633], [1, 1, 1629]], "row_count": 111, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1712], "distinct_count": 104}, {"mcvs": [[1, 1, 1831], [1, 1, 1754], [1, 1, 1746]], "row_count": 137, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1843], "distinct_count": 132}, {"mcvs": [[1, 1, 1961], [1, 1, 1963], [1, 1, 1890]], "row_count": 135, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1966], "distinct_count": 123}, {"mcvs": [[1, 1, 2090], [1, 1, 2008], [1, 1, 1981]], "row_count": 141, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2094], "distinct_count": 128}, {"mcvs": [[1, 1, 2183], [1, 1, 2165], [1, 1, 2175]], "row_count": 91, "mcv_counts": [1, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2183], "distinct_count": 89}, {"mcvs": [[1, 1, 2317], [1, 1, 2323], [1, 1, 2211]], "row_count": 170, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2344], "distinct_count": 161}, {"mcvs": [[1, 1, 2445], [1, 1, 2404], [1, 1, 2362]], "row_count": 114, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2449], "distinct_count": 106}, {"mcvs": [[1, 1, 2549], [1, 1, 2532], [1, 1, 2489]], "row_count": 123, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2562], "distinct_count": 113}, {"mcvs": [[1, 1, 2648], [1, 1, 2588], [1, 1, 2573]], "row_count": 119, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2672], "distinct_count": 110}, {"mcvs": [[1, 1, 2699], [1, 1, 2754], [1, 1, 2720]], "row_count": 106, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2775], "distinct_count": 103}, {"mcvs": [[1, 1, 2891], [1, 1, 2875], [1, 1, 2789]], "row_count": 142, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2905], "distinct_count": 130}, {"mcvs": [[1, 1, 2982], [1, 1, 2976], [1, 1, 2924]], "row_count": 91, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2990], "distinct_count": 85}, {"mcvs": [[1, 2, 134], [1, 2, 26], [1, 2, 113]], "row_count": 167, "mcv_counts": [2, 3, 4], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 138], "distinct_count": 148}, {"mcvs": [[1, 2, 237], [1, 2, 247], [1, 2, 176]], "row_count": 122, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 254], "distinct_count": 116}, {"mcvs": [[1, 2, 340], [1, 2, 315], [1, 2, 272]], "row_count": 91, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 2, 340], "distinct_count": 86}, {"mcvs": [[1, 2, 453], [1, 2, 403], [1, 2, 393]], "row_count": 147, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 481], "distinct_count": 141}, {"mcvs": [[1, 2, 547], [1, 2, 502], [1, 2, 490]], "row_count": 96, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 569], "distinct_count": 88}, {"mcvs": [[1, 2, 632], [1, 2, 625], [1, 2, 597]], "row_count": 102, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 662], "distinct_count": 93}, {"mcvs": [[1, 2, 773], [1, 2, 739], [1, 2, 665]], "row_count": 132, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 781], "distinct_count": 119}, {"mcvs": [[1, 2, 887], [1, 2, 876], [1, 2, 817]], "row_count": 115, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 2, 887], "distinct_count": 106}, {"mcvs": [[1, 2, 1012], [1, 2, 970], [1, 2, 942]], "row_count": 143, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1018], "distinct_count": 131}, {"mcvs": [[1, 2, 1115], [1, 2, 1090], [1, 2, 1037]], "row_count": 112, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1119], "distinct_count": 101}, {"mcvs": [[1, 2, 1250], [1, 2, 1262], [1, 2, 1167]], "row_count": 162, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1269], "distinct_count": 151}, {"mcvs": [[1, 2, 1400], [1, 2, 1351], [1, 2, 1393]], "row_count": 148, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1403], "distinct_count": 135}, {"mcvs": [[1, 2, 1523], [1, 2, 1497], [1, 2, 1414]], "row_count": 143, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1536], "distinct_count": 133}, {"mcvs": [[1, 2, 1602], [1, 2, 1647], [1, 2, 1551]], "row_count": 140, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1668], "distinct_count": 132}, {"mcvs": [[1, 2, 1768], [1, 2, 1797], [1, 2, 1692]], "row_count": 147, "mcv_counts": [2, 4, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1805], "distinct_count": 137}, {"mcvs": [[1, 2, 1868], [1, 2, 1874], [1, 2, 1849]], "row_count": 104, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1904], "distinct_count": 99}, {"mcvs": [[1, 2, 1994], [1, 2, 1933], [1, 2, 1916]], "row_count": 104, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1998], "distinct_count": 94}, {"mcvs": [[1, 2, 2091], [1, 2, 2065], [1, 2, 2032]], "row_count": 104, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 2, 2091], "distinct_count": 93}, {"mcvs": [[1, 2, 2185], [1, 2, 2177], [1, 2, 2121]], "row_count": 112, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2195], "distinct_count": 104}, {"mcvs": [[1, 2, 2266], [1, 2, 2246], [1, 2, 2208]], "row_count": 99, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2286], "distinct_count": 91}, {"mcvs": [[1, 2, 2342], [1, 2, 2340], [1, 2, 2318]], "row_count": 68, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2346], "distinct_count": 60}, {"mcvs": [[1, 2, 2387], [1, 2, 2361], [1, 2, 2379]], "row_count": 43, "mcv_counts": [1, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2387], "distinct_count": 41}, {"mcvs": [[1, 2, 2493], [1, 2, 2479], [1, 2, 2403]], "row_count": 143, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2521], "distinct_count": 134}, {"mcvs": [[1, 2, 2614], [1, 2, 2626], [1, 2, 2537]], "row_count": 120, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2631], "distinct_count": 110}, {"mcvs": [[1, 2, 2679], [1, 2, 2662], [1, 2, 2649]], "row_count": 70, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2695], "distinct_count": 64}, {"mcvs": [[1, 2, 2786], [1, 2, 2811], [1, 2, 2698]], "row_count": 125, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2812], "distinct_count": 117}, {"mcvs": [[1, 2, 2898], [1, 2, 2915], [1, 2, 2879]], "row_count": 132, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2936], "distinct_count": 124}, {"mcvs": [[1, 3, 95], [1, 3, 35], [1, 2, 2974]], "row_count": 176, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 97], "distinct_count": 161}, {"mcvs": [[1, 3, 225], [1, 3, 248], [1, 3, 173]], "row_count": 171, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 257], "distinct_count": 160}, {"mcvs": [[1, 3, 373], [1, 3, 347], [1, 3, 366]], "row_count": 135, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 378], "distinct_count": 121}, {"mcvs": [[1, 3, 487], [1, 3, 410], [1, 3, 402]], "row_count": 138, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 509], "distinct_count": 131}, {"mcvs": [[1, 3, 651], [1, 3, 625], [1, 3, 542]], "row_count": 170, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 665], "distinct_count": 156}, {"mcvs": [[1, 3, 714], [1, 3, 671], [1, 3, 678]], "row_count": 86, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 746], "distinct_count": 82}, {"mcvs": [[1, 3, 867], [1, 3, 794], [1, 3, 828]], "row_count": 157, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 893], "distinct_count": 147}, {"mcvs": [[1, 3, 1009], [1, 3, 1043], [1, 3, 896]], "row_count": 175, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1056], "distinct_count": 163}, {"mcvs": [[1, 3, 1159], [1, 3, 1133], [1, 3, 1123]], "row_count": 117, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1167], "distinct_count": 111}, {"mcvs": [[1, 3, 1257], [1, 3, 1243], [1, 3, 1179]], "row_count": 103, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1263], "distinct_count": 96}, {"mcvs": [[1, 3, 1358], [1, 3, 1310], [1, 3, 1302]], "row_count": 101, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 2, "upper_bound": [1, 3, 1358], "distinct_count": 95}, {"mcvs": [[1, 3, 1383], [1, 3, 1366], [1, 3, 1369]], "row_count": 37, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1391], "distinct_count": 33}, {"mcvs": [[1, 3, 1498], [1, 3, 1452], [1, 3, 1394]], "row_count": 108, "mcv_counts": [1, 2, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1498], "distinct_count": 107}, {"mcvs": [[1, 3, 1567], [1, 3, 1553], [1, 3, 1501]], "row_count": 101, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1593], "distinct_count": 95}, {"mcvs": [[1, 3, 1668], [1, 3, 1674], [1, 3, 1596]], "row_count": 93, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1679], "distinct_count": 86}, {"mcvs": [[1, 3, 1683], [1, 3, 1773], [1, 3, 1688]], "row_count": 125, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1800], "distinct_count": 121}, {"mcvs": [[1, 3, 1893], [1, 3, 1910], [1, 3, 1851]], "row_count": 126, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1919], "distinct_count": 120}, {"mcvs": [[1, 3, 1976], [1, 3, 1935], [1, 3, 1960]], "row_count": 59, "mcv_counts": [1, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1976], "distinct_count": 57}, {"mcvs": [[1, 3, 2065], [1, 3, 2002], [1, 3, 2045]], "row_count": 96, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2069], "distinct_count": 93}, {"mcvs": [[1, 3, 2173], [1, 3, 2189], [1, 3, 2090]], "row_count": 167, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2228], "distinct_count": 159}, {"mcvs": [[1, 3, 2247], [1, 3, 2274], [1, 3, 2250]], "row_count": 74, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2297], "distinct_count": 69}, {"mcvs": [[1, 3, 2386], [1, 3, 2354], [1, 3, 2321]], "row_count": 106, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2396], "distinct_count": 99}, {"mcvs": [[1, 3, 2457], [1, 3, 2443], [1, 3, 2438]], "row_count": 67, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2459], "distinct_count": 63}, {"mcvs": [[1, 3, 2509], [1, 3, 2564], [1, 3, 2488]], "row_count": 127, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2578], "distinct_count": 119}, {"mcvs": [[1, 3, 2604], [1, 3, 2699], [1, 3, 2594]], "row_count": 133, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2702], "distinct_count": 124}, {"mcvs": [[1, 3, 2790], [1, 3, 2785], [1, 3, 2751]], "row_count": 98, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2795], "distinct_count": 93}, {"mcvs": [[1, 3, 2849], [1, 3, 2803], [1, 3, 2808]], "row_count": 72, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2863], "distinct_count": 68}, {"mcvs": [[1, 3, 2921], [1, 3, 2923], [1, 3, 2888]], "row_count": 92, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2948], "distinct_count": 85}, {"mcvs": [[1, 4, 51], [1, 4, 19], [1, 4, 16]], "row_count": 148, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 89], "distinct_count": 141}, {"mcvs": [[1, 4, 113], [1, 4, 163], [1, 4, 143]], "row_count": 78, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 3, "upper_bound": [1, 4, 163], "distinct_count": 74}, {"mcvs": [[1, 4, 234], [1, 4, 218], [1, 4, 166]], "row_count": 103, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 256], "distinct_count": 93}, {"mcvs": [[1, 4, 372], [1, 4, 358], [1, 4, 268]], "row_count": 134, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 379], "distinct_count": 123}, {"mcvs": [[1, 4, 448], [1, 4, 433], [1, 4, 380]], "row_count": 77, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 4, 448], "distinct_count": 69}, {"mcvs": [[1, 4, 506], [1, 4, 452], [1, 4, 477]], "row_count": 60, "mcv_counts": [1, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 506], "distinct_count": 58}, {"mcvs": [[1, 4, 584], [1, 4, 580], [1, 4, 542]], "row_count": 112, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 614], "distinct_count": 108}, {"mcvs": [[1, 4, 699], [1, 4, 710], [1, 4, 634]], "row_count": 112, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 719], "distinct_count": 105}, {"mcvs": [[1, 4, 830], [1, 4, 758], [1, 4, 825]], "row_count": 138, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 842], "distinct_count": 123}, {"mcvs": [[1, 4, 876], [1, 4, 901], [1, 4, 951]], "row_count": 129, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 959], "distinct_count": 117}, {"mcvs": [[1, 4, 1062], [1, 4, 1072], [1, 4, 999]], "row_count": 119, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1073], "distinct_count": 114}, {"mcvs": [[1, 4, 1182], [1, 4, 1105], [1, 4, 1101]], "row_count": 164, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1229], "distinct_count": 156}, {"mcvs": [[1, 4, 1260], [1, 4, 1320], [1, 4, 1305]], "row_count": 95, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1321], "distinct_count": 92}, {"mcvs": [[1, 4, 1424], [1, 4, 1373], [1, 4, 1422]], "row_count": 105, "mcv_counts": [1, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1424], "distinct_count": 103}, {"mcvs": [[1, 4, 1525], [1, 4, 1541], [1, 4, 1494]], "row_count": 127, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1546], "distinct_count": 122}, {"mcvs": [[1, 4, 1638], [1, 4, 1637], [1, 4, 1569]], "row_count": 111, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1646], "distinct_count": 100}, {"mcvs": [[1, 4, 1771], [1, 4, 1775], [1, 4, 1729]], "row_count": 146, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1786], "distinct_count": 140}, {"mcvs": [[1, 4, 1855], [1, 4, 1865], [1, 4, 1800]], "row_count": 98, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1876], "distinct_count": 90}, {"mcvs": [[1, 4, 1987], [1, 4, 2007], [1, 4, 1910]], "row_count": 149, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2016], "distinct_count": 140}, {"mcvs": [[1, 4, 2125], [1, 4, 2134], [1, 4, 2035]], "row_count": 157, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2161], "distinct_count": 145}, {"mcvs": [[1, 4, 2226], [1, 4, 2237], [1, 4, 2176]], "row_count": 86, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2239], "distinct_count": 78}, {"mcvs": [[1, 4, 2314], [1, 4, 2333], [1, 4, 2247]], "row_count": 105, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2334], "distinct_count": 96}, {"mcvs": [[1, 4, 2403], [1, 4, 2387], [1, 4, 2376]], "row_count": 114, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2443], "distinct_count": 109}, {"mcvs": [[1, 4, 2502], [1, 4, 2512], [1, 4, 2452]], "row_count": 78, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2513], "distinct_count": 70}, {"mcvs": [[1, 4, 2555], [1, 4, 2528], [1, 4, 2540]], "row_count": 63, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2573], "distinct_count": 60}, {"mcvs": [[1, 4, 2635], [1, 4, 2574], [1, 4, 2598]], "row_count": 68, "mcv_counts": [2, 3, 4], "null_count": 0, "bound_count": 2, "upper_bound": [1, 4, 2635], "distinct_count": 62}, {"mcvs": [[1, 4, 2785], [1, 4, 2762], [1, 4, 2638]], "row_count": 163, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2787], "distinct_count": 152}, {"mcvs": [[1, 4, 2911], [1, 4, 2925], [1, 4, 2820]], "row_count": 150, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2926], "distinct_count": 139}, {"mcvs": [[1, 4, 2937], [1, 4, 2974], [1, 4, 2946]], "row_count": 60, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2983], "distinct_count": 57}, {"mcvs": [[1, 5, 46], [1, 5, 4], [1, 4, 2998]], "row_count": 101, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 78], "distinct_count": 95}, {"mcvs": [[1, 5, 172], [1, 5, 116], [1, 5, 103]], "row_count": 124, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 196], "distinct_count": 118}, {"mcvs": [[1, 5, 329], [1, 5, 224], [1, 5, 275]], "row_count": 175, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 356], "distinct_count": 160}, {"mcvs": [[1, 5, 474], [1, 5, 448], [1, 5, 385]], "row_count": 130, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 476], "distinct_count": 120}, {"mcvs": [[1, 5, 603], [1, 5, 547], [1, 5, 503]], "row_count": 166, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 634], "distinct_count": 158}, {"mcvs": [[1, 5, 664], [1, 5, 701], [1, 5, 669]], "row_count": 100, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 730], "distinct_count": 97}, {"mcvs": [[1, 5, 853], [1, 5, 760], [1, 5, 812]], "row_count": 171, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 887], "distinct_count": 157}, {"mcvs": [[1, 5, 928], [1, 5, 953], [1, 5, 913]], "row_count": 96, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 976], "distinct_count": 89}, {"mcvs": [[1, 5, 1052], [1, 5, 982], [1, 5, 1002]], "row_count": 98, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1070], "distinct_count": 94}, {"mcvs": [[1, 5, 1115], [1, 5, 1107], [1, 5, 1084]], "row_count": 71, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1137], "distinct_count": 67}, {"mcvs": [[1, 5, 1164], [1, 5, 1233], [1, 5, 1140]], "row_count": 115, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1248], "distinct_count": 111}, {"mcvs": [[1, 5, 1369], [1, 5, 1361], [1, 5, 1297]], "row_count": 143, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1383], "distinct_count": 136}, {"mcvs": [[1, 5, 1498], [1, 5, 1415], [1, 5, 1472]], "row_count": 138, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1505], "distinct_count": 122}, {"mcvs": [[1, 5, 1590], [1, 5, 1515], [1, 5, 1529]], "row_count": 93, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1594], "distinct_count": 89}, {"mcvs": [[1, 5, 1698], [1, 5, 1630], [1, 5, 1628]], "row_count": 148, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1736], "distinct_count": 142}, {"mcvs": [[1, 5, 1757], [1, 5, 1799], [1, 5, 1764]], "row_count": 69, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1802], "distinct_count": 66}, {"mcvs": [[1, 5, 1876], [1, 5, 1889], [1, 5, 1838]], "row_count": 97, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1894], "distinct_count": 92}, {"mcvs": [[1, 5, 1922], [1, 5, 1967], [1, 5, 1931]], "row_count": 129, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2020], "distinct_count": 126}, {"mcvs": [[1, 5, 2099], [1, 5, 2054], [1, 5, 2033]], "row_count": 105, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2119], "distinct_count": 99}, {"mcvs": [[1, 5, 2188], [1, 5, 2210], [1, 5, 2167]], "row_count": 106, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2219], "distinct_count": 100}, {"mcvs": [[1, 5, 2308], [1, 5, 2267], [1, 5, 2234]], "row_count": 100, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2312], "distinct_count": 93}, {"mcvs": [[1, 5, 2369], [1, 5, 2325], [1, 5, 2324]], "row_count": 79, "mcv_counts": [2, 4, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2384], "distinct_count": 72}, {"mcvs": [[1, 5, 2494], [1, 5, 2504], [1, 5, 2407]], "row_count": 135, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2511], "distinct_count": 127}, {"mcvs": [[1, 5, 2590], [1, 5, 2586], [1, 5, 2535]], "row_count": 86, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2592], "distinct_count": 81}, {"mcvs": [[1, 5, 2641], [1, 5, 2607], [1, 5, 2602]], "row_count": 77, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2665], "distinct_count": 73}, {"mcvs": [[1, 5, 2791], [1, 5, 2753], [1, 5, 2787]], "row_count": 142, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2798], "distinct_count": 133}, {"mcvs": [[1, 5, 2849], [1, 5, 2875], [1, 5, 2817]], "row_count": 84, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2876], "distinct_count": 78}, {"mcvs": [[1, 5, 2947], [1, 5, 2907], [1, 5, 2902]], "row_count": 134, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 3000], "distinct_count": 124}, {"mcvs": [[1, 6, 54], [1, 6, 42], [1, 6, 18]], "row_count": 102, "mcv_counts": [3, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 90], "distinct_count": 90}, {"mcvs": [[1, 6, 156], [1, 6, 109], [1, 6, 99]], "row_count": 101, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 181], "distinct_count": 91}, {"mcvs": [[1, 6, 216], [1, 6, 182], [1, 6, 211]], "row_count": 56, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 234], "distinct_count": 53}, {"mcvs": [[1, 6, 299], [1, 6, 307], [1, 6, 246]], "row_count": 107, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 332], "distinct_count": 98}, {"mcvs": [[1, 6, 464], [1, 6, 426], [1, 6, 355]], "row_count": 143, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 6, 464], "distinct_count": 132}, {"mcvs": [[1, 6, 562], [1, 6, 570], [1, 6, 498]], "row_count": 124, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 575], "distinct_count": 111}, {"mcvs": [[1, 6, 699], [1, 6, 698], [1, 6, 585]], "row_count": 141, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 707], "distinct_count": 132}, {"mcvs": [[1, 6, 776], [1, 6, 771], [1, 6, 729]], "row_count": 99, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 794], "distinct_count": 88}, {"mcvs": [[1, 6, 815], [1, 6, 807], [1, 6, 812]], "row_count": 23, "mcv_counts": [1, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 815], "distinct_count": 21}, {"mcvs": [[1, 6, 938], [1, 6, 955], [1, 6, 837]], "row_count": 157, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 958], "distinct_count": 143}, {"mcvs": [[1, 6, 999], [1, 6, 996], [1, 6, 961]], "row_count": 51, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1001], "distinct_count": 43}, {"mcvs": [[1, 6, 1060], [1, 6, 1080], [1, 6, 1050]], "row_count": 102, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1099], "distinct_count": 98}, {"mcvs": [[1, 6, 1185], [1, 6, 1151], [1, 6, 1113]], "row_count": 98, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1187], "distinct_count": 89}, {"mcvs": [[1, 6, 1270], [1, 6, 1201], [1, 6, 1193]], "row_count": 97, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1275], "distinct_count": 88}, {"mcvs": [[1, 6, 1333], [1, 6, 1343], [1, 6, 1313]], "row_count": 74, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1344], "distinct_count": 69}, {"mcvs": [[1, 6, 1448], [1, 6, 1426], [1, 6, 1373]], "row_count": 128, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1466], "distinct_count": 122}, {"mcvs": [[1, 6, 1566], [1, 6, 1568], [1, 6, 1470]], "row_count": 119, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1571], "distinct_count": 106}, {"mcvs": [[1, 6, 1714], [1, 6, 1580], [1, 6, 1585]], "row_count": 154, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1718], "distinct_count": 147}, {"mcvs": [[1, 6, 1839], [1, 6, 1775], [1, 6, 1749]], "row_count": 137, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 6, 1839], "distinct_count": 121}, {"mcvs": [[1, 6, 1893], [1, 6, 1917], [1, 6, 1883]], "row_count": 91, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1926], "distinct_count": 87}, {"mcvs": [[1, 6, 2059], [1, 6, 1932], [1, 6, 1962]], "row_count": 135, "mcv_counts": [1, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2059], "distinct_count": 133}, {"mcvs": [[1, 6, 2139], [1, 6, 2186], [1, 6, 2065]], "row_count": 145, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2195], "distinct_count": 136}, {"mcvs": [[1, 6, 2259], [1, 6, 2297], [1, 6, 2230]], "row_count": 121, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2308], "distinct_count": 113}, {"mcvs": [[1, 6, 2399], [1, 6, 2315], [1, 6, 2312]], "row_count": 129, "mcv_counts": [2, 3, 4], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2423], "distinct_count": 115}, {"mcvs": [[1, 6, 2457], [1, 6, 2447], [1, 6, 2450]], "row_count": 36, "mcv_counts": [1, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2457], "distinct_count": 34}, {"mcvs": [[1, 6, 2526], [1, 6, 2520], [1, 6, 2480]], "row_count": 93, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2542], "distinct_count": 85}, {"mcvs": [[1, 6, 2553], [1, 6, 2615], [1, 6, 2559]], "row_count": 93, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2632], "distinct_count": 90}, {"mcvs": [[1, 6, 2758], [1, 6, 2784], [1, 6, 2688]], "row_count": 161, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 3, "upper_bound": [1, 6, 2784], "distinct_count": 152}, {"mcvs": [[1, 6, 2898], [1, 6, 2890], [1, 6, 2828]], "row_count": 122, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 6, 2898], "distinct_count": 114}, {"mcvs": [[1, 7, 2], [1, 6, 2995], [1, 6, 2941]], "row_count": 116, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 8], "distinct_count": 110}, {"mcvs": [[1, 7, 65], [1, 7, 121], [1, 7, 25]], "row_count": 127, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 128], "distinct_count": 120}, {"mcvs": [[1, 7, 242], [1, 7, 213], [1, 7, 167]], "row_count": 130, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 249], "distinct_count": 121}, {"mcvs": [[1, 7, 344], [1, 7, 264], [1, 7, 308]], "row_count": 97, "mcv_counts": [1, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 344], "distinct_count": 95}, {"mcvs": [[1, 7, 411], [1, 7, 384], [1, 7, 356]], "row_count": 116, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 450], "distinct_count": 106}, {"mcvs": [[1, 7, 553], [1, 7, 561], [1, 7, 461]], "row_count": 138, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 576], "distinct_count": 126}, {"mcvs": [[1, 7, 688], [1, 7, 665], [1, 7, 587]], "row_count": 136, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 698], "distinct_count": 122}, {"mcvs": [[1, 7, 793], [1, 7, 791], [1, 7, 710]], "row_count": 119, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 804], "distinct_count": 106}, {"mcvs": [[1, 7, 889], [1, 7, 913], [1, 7, 815]], "row_count": 130, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 924], "distinct_count": 120}, {"mcvs": [[1, 7, 992], [1, 7, 1001], [1, 7, 964]], "row_count": 98, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1016], "distinct_count": 92}, {"mcvs": [[1, 7, 1141], [1, 7, 1073], [1, 7, 1019]], "row_count": 149, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1153], "distinct_count": 137}, {"mcvs": [[1, 7, 1179], [1, 7, 1217], [1, 7, 1172]], "row_count": 101, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1248], "distinct_count": 95}, {"mcvs": [[1, 7, 1336], [1, 7, 1376], [1, 7, 1293]], "row_count": 134, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1377], "distinct_count": 129}, {"mcvs": [[1, 7, 1441], [1, 7, 1479], [1, 7, 1405]], "row_count": 109, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1480], "distinct_count": 103}, {"mcvs": [[1, 7, 1525], [1, 7, 1614], [1, 7, 1511]], "row_count": 142, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1615], "distinct_count": 135}, {"mcvs": [[1, 7, 1620], [1, 7, 1634], [1, 7, 1624]], "row_count": 65, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1677], "distinct_count": 62}, {"mcvs": [[1, 7, 1780], [1, 7, 1739], [1, 7, 1689]], "row_count": 117, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1784], "distinct_count": 107}, {"mcvs": [[1, 7, 1856], [1, 7, 1834], [1, 7, 1815]], "row_count": 104, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1884], "distinct_count": 100}, {"mcvs": [[1, 7, 1980], [1, 7, 2021], [1, 7, 1900]], "row_count": 155, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2032], "distinct_count": 148}, {"mcvs": [[1, 7, 2066], [1, 7, 2048], [1, 7, 2063]], "row_count": 37, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 7, 2066], "distinct_count": 34}, {"mcvs": [[1, 7, 2183], [1, 7, 2166], [1, 7, 2080]], "row_count": 128, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2185], "distinct_count": 119}, {"mcvs": [[1, 7, 2279], [1, 7, 2214], [1, 7, 2213]], "row_count": 115, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2295], "distinct_count": 110}, {"mcvs": [[1, 7, 2398], [1, 7, 2370], [1, 7, 2314]], "row_count": 119, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2404], "distinct_count": 109}, {"mcvs": [[1, 7, 2456], [1, 7, 2443], [1, 7, 2448]], "row_count": 55, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 7, 2456], "distinct_count": 52}, {"mcvs": [[1, 7, 2568], [1, 7, 2548], [1, 7, 2538]], "row_count": 122, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2570], "distinct_count": 114}, {"mcvs": [[1, 7, 2643], [1, 7, 2686], [1, 7, 2598]], "row_count": 134, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2693], "distinct_count": 123}, {"mcvs": [[1, 7, 2818], [1, 7, 2836], [1, 7, 2798]], "row_count": 164, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2853], "distinct_count": 160}, {"mcvs": [[1, 7, 2932], [1, 7, 2890], [1, 7, 2863]], "row_count": 118, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2964], "distinct_count": 111}, {"mcvs": [[1, 8, 77], [1, 8, 43], [1, 8, 34]], "row_count": 126, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 81], "distinct_count": 117}, {"mcvs": [[1, 8, 228], [1, 8, 222], [1, 8, 116]], "row_count": 163, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 232], "distinct_count": 151}, {"mcvs": [[1, 8, 291], [1, 8, 328], [1, 8, 237]], "row_count": 126, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 349], "distinct_count": 117}, {"mcvs": [[1, 8, 426], [1, 8, 442], [1, 8, 369]], "row_count": 105, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 445], "distinct_count": 96}, {"mcvs": [[1, 8, 516], [1, 8, 518], [1, 8, 468]], "row_count": 83, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 523], "distinct_count": 78}, {"mcvs": [[1, 8, 606], [1, 8, 559], [1, 8, 531]], "row_count": 125, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 636], "distinct_count": 113}, {"mcvs": [[1, 8, 751], [1, 8, 664], [1, 8, 639]], "row_count": 133, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 756], "distinct_count": 120}, {"mcvs": [[1, 8, 826], [1, 8, 814], [1, 8, 764]], "row_count": 79, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 8, 826], "distinct_count": 70}, {"mcvs": [[1, 8, 957], [1, 8, 951], [1, 8, 848]], "row_count": 139, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 8, 957], "distinct_count": 131}, {"mcvs": [[1, 8, 1081], [1, 8, 1103], [1, 8, 993]], "row_count": 158, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1108], "distinct_count": 151}, {"mcvs": [[1, 8, 1180], [1, 8, 1184], [1, 8, 1121]], "row_count": 109, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1209], "distinct_count": 101}, {"mcvs": [[1, 8, 1322], [1, 8, 1297], [1, 8, 1260]], "row_count": 126, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1324], "distinct_count": 115}, {"mcvs": [[1, 8, 1401], [1, 8, 1407], [1, 8, 1346]], "row_count": 95, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1412], "distinct_count": 88}, {"mcvs": [[1, 8, 1445], [1, 8, 1506], [1, 8, 1543]], "row_count": 141, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 3, "upper_bound": [1, 8, 1543], "distinct_count": 131}, {"mcvs": [[1, 8, 1625], [1, 8, 1611], [1, 8, 1550]], "row_count": 98, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1633], "distinct_count": 90}, {"mcvs": [[1, 8, 1695], [1, 8, 1694], [1, 8, 1656]], "row_count": 71, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1697], "distinct_count": 64}, {"mcvs": [[1, 8, 1712], [1, 8, 1759], [1, 8, 1707]], "row_count": 70, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1762], "distinct_count": 65}, {"mcvs": [[1, 8, 1833], [1, 8, 1804], [1, 8, 1778]], "row_count": 121, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1877], "distinct_count": 115}, {"mcvs": [[1, 8, 1948], [1, 8, 1891], [1, 8, 1920]], "row_count": 74, "mcv_counts": [1, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1948], "distinct_count": 71}, {"mcvs": [[1, 8, 1994], [1, 8, 2024], [1, 8, 1964]], "row_count": 83, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2027], "distinct_count": 79}, {"mcvs": [[1, 8, 2139], [1, 8, 2080], [1, 8, 2042]], "row_count": 141, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2160], "distinct_count": 133}, {"mcvs": [[1, 8, 2280], [1, 8, 2256], [1, 8, 2194]], "row_count": 132, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2282], "distinct_count": 122}, {"mcvs": [[1, 8, 2398], [1, 8, 2436], [1, 8, 2340]], "row_count": 160, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2437], "distinct_count": 155}, {"mcvs": [[1, 8, 2521], [1, 8, 2545], [1, 8, 2440]], "row_count": 166, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2598], "distinct_count": 161}, {"mcvs": [[1, 8, 2710], [1, 8, 2714], [1, 8, 2655]], "row_count": 122, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 3, "upper_bound": [1, 8, 2714], "distinct_count": 116}, {"mcvs": [[1, 8, 2799], [1, 8, 2780], [1, 8, 2722]], "row_count": 93, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 8, 2799], "distinct_count": 85}, {"mcvs": [[1, 8, 2886], [1, 8, 2892], [1, 8, 2826]], "row_count": 102, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 3, "upper_bound": [1, 8, 2892], "distinct_count": 93}, {"mcvs": [[1, 8, 2924], [1, 8, 2965], [1, 8, 2900]], "row_count": 89, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2974], "distinct_count": 82}, {"mcvs": [[1, 9, 116], [1, 9, 76], [1, 9, 28]], "row_count": 157, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 124], "distinct_count": 150}, {"mcvs": [[1, 9, 232], [1, 9, 208], [1, 9, 163]], "row_count": 123, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 238], "distinct_count": 114}, {"mcvs": [[1, 9, 311], [1, 9, 333], [1, 9, 258]], "row_count": 112, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 338], "distinct_count": 100}, {"mcvs": [[1, 9, 497], [1, 9, 473], [1, 9, 362]], "row_count": 177, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 501], "distinct_count": 163}, {"mcvs": [[1, 9, 513], [1, 9, 611], [1, 9, 529]], "row_count": 128, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 621], "distinct_count": 120}, {"mcvs": [[1, 9, 687], [1, 9, 699], [1, 9, 646]], "row_count": 89, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 701], "distinct_count": 80}, {"mcvs": [[1, 9, 704], [1, 9, 736], [1, 9, 807]], "row_count": 118, "mcv_counts": [2, 3, 3], "null_count": 0, "bound_count": 3, "upper_bound": [1, 9, 807], "distinct_count": 106}, {"mcvs": [[1, 9, 829], [1, 9, 868], [1, 9, 835]], "row_count": 105, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 909], "distinct_count": 102}, {"mcvs": [[1, 9, 995], [1, 9, 1025], [1, 9, 956]], "row_count": 125, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1028], "distinct_count": 119}, {"mcvs": [[1, 9, 1107], [1, 9, 1067], [1, 9, 1058]], "row_count": 108, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1127], "distinct_count": 99}, {"mcvs": [[1, 9, 1178], [1, 9, 1168], [1, 9, 1137]], "row_count": 74, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1194], "distinct_count": 67}, {"mcvs": [[1, 9, 1250], [1, 9, 1328], [1, 9, 1239]], "row_count": 149, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1335], "distinct_count": 141}, {"mcvs": [[1, 9, 1345], [1, 9, 1469], [1, 9, 1363]], "row_count": 143, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1474], "distinct_count": 139}, {"mcvs": [[1, 9, 1590], [1, 9, 1526], [1, 9, 1508]], "row_count": 141, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1604], "distinct_count": 130}, {"mcvs": [[1, 9, 1675], [1, 9, 1667], [1, 9, 1644]], "row_count": 94, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1693], "distinct_count": 89}, {"mcvs": [[1, 9, 1695], [1, 9, 1810], [1, 9, 1711]], "row_count": 129, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1819], "distinct_count": 126}, {"mcvs": [[1, 9, 1915], [1, 9, 1905], [1, 9, 1834]], "row_count": 115, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1925], "distinct_count": 106}, {"mcvs": [[1, 9, 2034], [1, 9, 2010], [1, 9, 1981]], "row_count": 121, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2042], "distinct_count": 117}, {"mcvs": [[1, 9, 2070], [1, 9, 2082], [1, 9, 2065]], "row_count": 85, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2123], "distinct_count": 81}, {"mcvs": [[1, 9, 2217], [1, 9, 2198], [1, 9, 2177]], "row_count": 106, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2223], "distinct_count": 100}, {"mcvs": [[1, 9, 2307], [1, 9, 2266], [1, 9, 2258]], "row_count": 99, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2317], "distinct_count": 94}, {"mcvs": [[1, 9, 2386], [1, 9, 2354], [1, 9, 2340]], "row_count": 103, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2416], "distinct_count": 99}, {"mcvs": [[1, 9, 2491], [1, 9, 2423], [1, 9, 2430]], "row_count": 90, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2501], "distinct_count": 85}, {"mcvs": [[1, 9, 2605], [1, 9, 2638], [1, 9, 2568]], "row_count": 159, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2653], "distinct_count": 152}, {"mcvs": [[1, 9, 2760], [1, 9, 2727], [1, 9, 2656]], "row_count": 115, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 9, 2760], "distinct_count": 107}, {"mcvs": [[1, 9, 2866], [1, 9, 2816], [1, 9, 2773]], "row_count": 175, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2928], "distinct_count": 168}, {"mcvs": [[1, 10, 43], [1, 9, 2973], [1, 9, 2955]], "row_count": 131, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 51], "distinct_count": 123}, {"mcvs": [[1, 10, 156], [1, 10, 146], [1, 10, 83]], "row_count": 126, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 166], "distinct_count": 115}, {"mcvs": [[1, 10, 246], [1, 10, 176], [1, 10, 202]], "row_count": 92, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 252], "distinct_count": 87}, {"mcvs": [[1, 10, 348], [1, 10, 344], [1, 10, 281]], "row_count": 112, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 352], "distinct_count": 100}, {"mcvs": [[1, 10, 451], [1, 10, 426], [1, 10, 355]], "row_count": 110, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 2, "upper_bound": [1, 10, 451], "distinct_count": 99}, {"mcvs": [[1, 10, 518], [1, 10, 539], [1, 10, 473]], "row_count": 105, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 546], "distinct_count": 95}, {"mcvs": [[1, 10, 617], [1, 10, 613], [1, 10, 571]], "row_count": 89, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 623], "distinct_count": 77}, {"mcvs": [[1, 10, 630], [1, 10, 671], [1, 10, 635]], "row_count": 53, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 672], "distinct_count": 49}, {"mcvs": [[1, 10, 756], [1, 10, 765], [1, 10, 693]], "row_count": 108, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 768], "distinct_count": 96}, {"mcvs": [[1, 10, 795], [1, 10, 851], [1, 10, 779]], "row_count": 96, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 854], "distinct_count": 86}, {"mcvs": [[1, 10, 899], [1, 10, 910], [1, 10, 864]], "row_count": 75, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 919], "distinct_count": 65}, {"mcvs": [[1, 10, 987], [1, 10, 957], [1, 10, 956]], "row_count": 75, "mcv_counts": [2, 2, 3], "null_count": 0, "bound_count": 2, "upper_bound": [1, 10, 987], "distinct_count": 68}, {"mcvs": [[1, 10, 1046], [1, 10, 1083], [1, 10, 1028]], "row_count": 111, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1092], "distinct_count": 105}, {"mcvs": [[1, 10, 1162], [1, 10, 1158], [1, 10, 1128]], "row_count": 78, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1164], "distinct_count": 72}, {"mcvs": [[1, 10, 1290], [1, 10, 1236], [1, 10, 1172]], "row_count": 151, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1308], "distinct_count": 144}, {"mcvs": [[1, 10, 1413], [1, 10, 1415], [1, 10, 1311]], "row_count": 117, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1416], "distinct_count": 108}, {"mcvs": [[1, 10, 1503], [1, 10, 1512], [1, 10, 1419]], "row_count": 125, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1533], "distinct_count": 117}, {"mcvs": [[1, 10, 1664], [1, 10, 1618], [1, 10, 1544]], "row_count": 141, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1665], "distinct_count": 132}, {"mcvs": [[1, 10, 1732], [1, 10, 1666], [1, 10, 1667]], "row_count": 68, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1732], "distinct_count": 68}, {"mcvs": [[1, 10, 1832], [1, 10, 1743], [1, 10, 1760]], "row_count": 106, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1834], "distinct_count": 102}, {"mcvs": [[1, 10, 1925], [1, 10, 1950], [1, 10, 1861]], "row_count": 137, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1959], "distinct_count": 125}, {"mcvs": [[1, 10, 2070], [1, 10, 2085], [1, 10, 1991]], "row_count": 140, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2086], "distinct_count": 127}, {"mcvs": [[1, 10, 2097], [1, 10, 2181], [1, 10, 2124]], "row_count": 109, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2188], "distinct_count": 102}, {"mcvs": [[1, 10, 2237], [1, 10, 2193], [1, 10, 2201]], "row_count": 64, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2249], "distinct_count": 61}, {"mcvs": [[1, 10, 2329], [1, 10, 2299], [1, 10, 2269]], "row_count": 129, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2371], "distinct_count": 122}, {"mcvs": [[1, 10, 2420], [1, 10, 2442], [1, 10, 2399]], "row_count": 82, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2449], "distinct_count": 78}, {"mcvs": [[1, 10, 2522], [1, 10, 2546], [1, 10, 2471]], "row_count": 110, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2547], "distinct_count": 98}, {"mcvs": [[1, 10, 2684], [1, 10, 2646], [1, 10, 2630]], "row_count": 149, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2686], "distinct_count": 139}, {"mcvs": [[1, 10, 2789], [1, 10, 2774], [1, 10, 2726]], "row_count": 137, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2815], "distinct_count": 129}, {"mcvs": [[1, 10, 2824], [1, 10, 2893], [1, 10, 2823]], "row_count": 92, "mcv_counts": [2, 3, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2899], "distinct_count": 84}, {"mcvs": [[1, 10, 2949], [1, 10, 2935], [1, 10, 2944]], "row_count": 82, "mcv_counts": [2, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2977], "distinct_count": 78}, {"mcvs": [[1, 10, 3000], [1, 10, 2989], [1, 10, 2995]], "row_count": 25, "mcv_counts": [1, 2, 2], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 3000], "distinct_count": 23}], "columns": ["h_c_w_id", "h_c_d_id", "h_c_id"], "avg_size": 0, "qualifier": {"database": "sbt", "table": "history2", "index": "fkey_history_12"}, "row_count": 32179, "created_at": "2023-11-10T15:06:17-08:00", "null_count": 32179, "distinct_count": 30015}';`,
`analyze table district2 update histogram on (d_w_id,d_id) using data '{"types": ["smallint", "tinyint"], "buckets": [{"mcvs": [[1, 10], [1, 2], [1, 3]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10], "distinct_count": 10}], "columns": ["d_w_id", "d_id"], "avg_size": 0, "qualifier": {"database": "sbt", "table": "district2", "index": "primary"}, "row_count": 10, "created_at": "2023-11-10T15:42:08-08:00", "null_count": 10, "distinct_count": 10}';`,
`analyze table customer2 update histogram on (c_w_id,c_d_id,c_id) using data '{"types": ["smallint", "tinyint", "int"], "buckets": [{"mcvs": [[1, 1, 15], [1, 1, 2], [1, 1, 3]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 15], "distinct_count": 15}, {"mcvs": [[1, 1, 25], [1, 1, 17], [1, 1, 18]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 25], "distinct_count": 10}, {"mcvs": [[1, 1, 45], [1, 1, 27], [1, 1, 28]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 45], "distinct_count": 20}, {"mcvs": [[1, 1, 59], [1, 1, 47], [1, 1, 48]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 59], "distinct_count": 14}, {"mcvs": [[1, 1, 79], [1, 1, 61], [1, 1, 62]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 79], "distinct_count": 20}, {"mcvs": [[1, 1, 95], [1, 1, 81], [1, 1, 82]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 95], "distinct_count": 16}, {"mcvs": [[1, 1, 114], [1, 1, 97], [1, 1, 98]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 114], "distinct_count": 19}, {"mcvs": [[1, 1, 130], [1, 1, 116], [1, 1, 117]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 130], "distinct_count": 16}, {"mcvs": [[1, 1, 146], [1, 1, 132], [1, 1, 133]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 146], "distinct_count": 16}, {"mcvs": [[1, 1, 169], [1, 1, 148], [1, 1, 149]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 169], "distinct_count": 23}, {"mcvs": [[1, 1, 179], [1, 1, 171], [1, 1, 172]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 179], "distinct_count": 10}, {"mcvs": [[1, 1, 203], [1, 1, 181], [1, 1, 182]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 203], "distinct_count": 24}, {"mcvs": [[1, 1, 214], [1, 1, 205], [1, 1, 206]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 214], "distinct_count": 11}, {"mcvs": [[1, 1, 228], [1, 1, 216], [1, 1, 217]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 228], "distinct_count": 14}, {"mcvs": [[1, 1, 242], [1, 1, 230], [1, 1, 231]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 242], "distinct_count": 14}, {"mcvs": [[1, 1, 256], [1, 1, 244], [1, 1, 245]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 256], "distinct_count": 14}, {"mcvs": [[1, 1, 275], [1, 1, 258], [1, 1, 259]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 275], "distinct_count": 19}, {"mcvs": [[1, 1, 285], [1, 1, 277], [1, 1, 278]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 285], "distinct_count": 10}, {"mcvs": [[1, 1, 297], [1, 1, 287], [1, 1, 288]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 297], "distinct_count": 12}, {"mcvs": [[1, 1, 306], [1, 1, 299], [1, 1, 300]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 306], "distinct_count": 9}, {"mcvs": [[1, 1, 318], [1, 1, 308], [1, 1, 309]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 318], "distinct_count": 12}, {"mcvs": [[1, 1, 341], [1, 1, 320], [1, 1, 321]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 341], "distinct_count": 23}, {"mcvs": [[1, 1, 358], [1, 1, 343], [1, 1, 344]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 358], "distinct_count": 17}, {"mcvs": [[1, 1, 379], [1, 1, 360], [1, 1, 361]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 379], "distinct_count": 21}, {"mcvs": [[1, 1, 391], [1, 1, 381], [1, 1, 382]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 391], "distinct_count": 12}, {"mcvs": [[1, 1, 403], [1, 1, 393], [1, 1, 394]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 403], "distinct_count": 12}, {"mcvs": [[1, 1, 420], [1, 1, 405], [1, 1, 406]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 420], "distinct_count": 17}, {"mcvs": [[1, 1, 435], [1, 1, 422], [1, 1, 423]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 435], "distinct_count": 15}, {"mcvs": [[1, 1, 451], [1, 1, 437], [1, 1, 438]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 451], "distinct_count": 16}, {"mcvs": [[1, 1, 473], [1, 1, 453], [1, 1, 454]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 473], "distinct_count": 22}, {"mcvs": [[1, 1, 491], [1, 1, 475], [1, 1, 476]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 491], "distinct_count": 18}, {"mcvs": [[1, 1, 509], [1, 1, 493], [1, 1, 494]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 509], "distinct_count": 18}, {"mcvs": [[1, 1, 528], [1, 1, 511], [1, 1, 512]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 528], "distinct_count": 19}, {"mcvs": [[1, 1, 542], [1, 1, 530], [1, 1, 531]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 542], "distinct_count": 14}, {"mcvs": [[1, 1, 554], [1, 1, 544], [1, 1, 545]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 554], "distinct_count": 12}, {"mcvs": [[1, 1, 572], [1, 1, 556], [1, 1, 557]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 572], "distinct_count": 18}, {"mcvs": [[1, 1, 585], [1, 1, 574], [1, 1, 575]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 585], "distinct_count": 13}, {"mcvs": [[1, 1, 603], [1, 1, 587], [1, 1, 588]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 603], "distinct_count": 18}, {"mcvs": [[1, 1, 619], [1, 1, 605], [1, 1, 606]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 619], "distinct_count": 16}, {"mcvs": [[1, 1, 639], [1, 1, 621], [1, 1, 622]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 639], "distinct_count": 20}, {"mcvs": [[1, 1, 663], [1, 1, 641], [1, 1, 642]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 663], "distinct_count": 24}, {"mcvs": [[1, 1, 680], [1, 1, 665], [1, 1, 666]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 680], "distinct_count": 17}, {"mcvs": [[1, 1, 700], [1, 1, 682], [1, 1, 683]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 700], "distinct_count": 20}, {"mcvs": [[1, 1, 719], [1, 1, 702], [1, 1, 703]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 719], "distinct_count": 19}, {"mcvs": [[1, 1, 741], [1, 1, 721], [1, 1, 722]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 741], "distinct_count": 22}, {"mcvs": [[1, 1, 758], [1, 1, 743], [1, 1, 744]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 758], "distinct_count": 17}, {"mcvs": [[1, 1, 775], [1, 1, 760], [1, 1, 761]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 775], "distinct_count": 17}, {"mcvs": [[1, 1, 791], [1, 1, 777], [1, 1, 778]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 791], "distinct_count": 16}, {"mcvs": [[1, 1, 803], [1, 1, 793], [1, 1, 794]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 803], "distinct_count": 12}, {"mcvs": [[1, 1, 811], [1, 1, 805], [1, 1, 806]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 811], "distinct_count": 8}, {"mcvs": [[1, 1, 828], [1, 1, 813], [1, 1, 814]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 828], "distinct_count": 17}, {"mcvs": [[1, 1, 841], [1, 1, 830], [1, 1, 831]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 841], "distinct_count": 13}, {"mcvs": [[1, 1, 863], [1, 1, 843], [1, 1, 844]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 863], "distinct_count": 22}, {"mcvs": [[1, 1, 882], [1, 1, 865], [1, 1, 866]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 882], "distinct_count": 19}, {"mcvs": [[1, 1, 897], [1, 1, 884], [1, 1, 885]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 897], "distinct_count": 15}, {"mcvs": [[1, 1, 910], [1, 1, 899], [1, 1, 900]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 910], "distinct_count": 13}, {"mcvs": [[1, 1, 927], [1, 1, 912], [1, 1, 913]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 927], "distinct_count": 17}, {"mcvs": [[1, 1, 950], [1, 1, 929], [1, 1, 930]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 950], "distinct_count": 23}, {"mcvs": [[1, 1, 964], [1, 1, 952], [1, 1, 953]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 964], "distinct_count": 14}, {"mcvs": [[1, 1, 982], [1, 1, 966], [1, 1, 967]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 982], "distinct_count": 18}, {"mcvs": [[1, 1, 993], [1, 1, 984], [1, 1, 985]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 993], "distinct_count": 11}, {"mcvs": [[1, 1, 1015], [1, 1, 995], [1, 1, 996]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1015], "distinct_count": 22}, {"mcvs": [[1, 1, 1034], [1, 1, 1017], [1, 1, 1018]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1034], "distinct_count": 19}, {"mcvs": [[1, 1, 1052], [1, 1, 1036], [1, 1, 1037]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1052], "distinct_count": 18}, {"mcvs": [[1, 1, 1068], [1, 1, 1054], [1, 1, 1055]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1068], "distinct_count": 16}, {"mcvs": [[1, 1, 1083], [1, 1, 1070], [1, 1, 1071]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1083], "distinct_count": 15}, {"mcvs": [[1, 1, 1095], [1, 1, 1085], [1, 1, 1086]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1095], "distinct_count": 12}, {"mcvs": [[1, 1, 1117], [1, 1, 1097], [1, 1, 1098]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1117], "distinct_count": 22}, {"mcvs": [[1, 1, 1131], [1, 1, 1119], [1, 1, 1120]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1131], "distinct_count": 14}, {"mcvs": [[1, 1, 1144], [1, 1, 1133], [1, 1, 1134]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1144], "distinct_count": 13}, {"mcvs": [[1, 1, 1160], [1, 1, 1146], [1, 1, 1147]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1160], "distinct_count": 16}, {"mcvs": [[1, 1, 1175], [1, 1, 1162], [1, 1, 1163]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1175], "distinct_count": 15}, {"mcvs": [[1, 1, 1195], [1, 1, 1177], [1, 1, 1178]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1195], "distinct_count": 20}, {"mcvs": [[1, 1, 1209], [1, 1, 1197], [1, 1, 1198]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1209], "distinct_count": 14}, {"mcvs": [[1, 1, 1233], [1, 1, 1211], [1, 1, 1212]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1233], "distinct_count": 24}, {"mcvs": [[1, 1, 1247], [1, 1, 1235], [1, 1, 1236]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1247], "distinct_count": 14}, {"mcvs": [[1, 1, 1265], [1, 1, 1249], [1, 1, 1250]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1265], "distinct_count": 18}, {"mcvs": [[1, 1, 1280], [1, 1, 1267], [1, 1, 1268]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1280], "distinct_count": 15}, {"mcvs": [[1, 1, 1289], [1, 1, 1282], [1, 1, 1283]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1289], "distinct_count": 9}, {"mcvs": [[1, 1, 1299], [1, 1, 1291], [1, 1, 1292]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1299], "distinct_count": 10}, {"mcvs": [[1, 1, 1304], [1, 1, 1301], [1, 1, 1302]], "row_count": 5, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1304], "distinct_count": 5}, {"mcvs": [[1, 1, 1322], [1, 1, 1306], [1, 1, 1307]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1322], "distinct_count": 18}, {"mcvs": [[1, 1, 1337], [1, 1, 1324], [1, 1, 1325]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1337], "distinct_count": 15}, {"mcvs": [[1, 1, 1363], [1, 1, 1339], [1, 1, 1340]], "row_count": 26, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1363], "distinct_count": 26}, {"mcvs": [[1, 1, 1380], [1, 1, 1365], [1, 1, 1366]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1380], "distinct_count": 17}, {"mcvs": [[1, 1, 1400], [1, 1, 1382], [1, 1, 1383]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1400], "distinct_count": 20}, {"mcvs": [[1, 1, 1415], [1, 1, 1402], [1, 1, 1403]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1415], "distinct_count": 15}, {"mcvs": [[1, 1, 1438], [1, 1, 1417], [1, 1, 1418]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1438], "distinct_count": 23}, {"mcvs": [[1, 1, 1458], [1, 1, 1440], [1, 1, 1441]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1458], "distinct_count": 20}, {"mcvs": [[1, 1, 1483], [1, 1, 1460], [1, 1, 1461]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1483], "distinct_count": 25}, {"mcvs": [[1, 1, 1499], [1, 1, 1485], [1, 1, 1486]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1499], "distinct_count": 16}, {"mcvs": [[1, 1, 1504], [1, 1, 1501], [1, 1, 1502]], "row_count": 5, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1504], "distinct_count": 5}, {"mcvs": [[1, 1, 1516], [1, 1, 1506], [1, 1, 1507]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1516], "distinct_count": 12}, {"mcvs": [[1, 1, 1523], [1, 1, 1518], [1, 1, 1519]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1523], "distinct_count": 7}, {"mcvs": [[1, 1, 1537], [1, 1, 1525], [1, 1, 1526]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1537], "distinct_count": 14}, {"mcvs": [[1, 1, 1543], [1, 1, 1539], [1, 1, 1540]], "row_count": 6, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1543], "distinct_count": 6}, {"mcvs": [[1, 1, 1559], [1, 1, 1545], [1, 1, 1546]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1559], "distinct_count": 16}, {"mcvs": [[1, 1, 1575], [1, 1, 1561], [1, 1, 1562]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1575], "distinct_count": 16}, {"mcvs": [[1, 1, 1590], [1, 1, 1577], [1, 1, 1578]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1590], "distinct_count": 15}, {"mcvs": [[1, 1, 1601], [1, 1, 1592], [1, 1, 1593]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1601], "distinct_count": 11}, {"mcvs": [[1, 1, 1609], [1, 1, 1603], [1, 1, 1604]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1609], "distinct_count": 8}, {"mcvs": [[1, 1, 1619], [1, 1, 1611], [1, 1, 1612]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1619], "distinct_count": 10}, {"mcvs": [[1, 1, 1634], [1, 1, 1621], [1, 1, 1622]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1634], "distinct_count": 15}, {"mcvs": [[1, 1, 1651], [1, 1, 1636], [1, 1, 1637]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1651], "distinct_count": 17}, {"mcvs": [[1, 1, 1668], [1, 1, 1653], [1, 1, 1654]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1668], "distinct_count": 17}, {"mcvs": [[1, 1, 1690], [1, 1, 1670], [1, 1, 1671]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1690], "distinct_count": 22}, {"mcvs": [[1, 1, 1700], [1, 1, 1692], [1, 1, 1693]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1700], "distinct_count": 10}, {"mcvs": [[1, 1, 1714], [1, 1, 1702], [1, 1, 1703]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1714], "distinct_count": 14}, {"mcvs": [[1, 1, 1729], [1, 1, 1716], [1, 1, 1717]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1729], "distinct_count": 15}, {"mcvs": [[1, 1, 1744], [1, 1, 1731], [1, 1, 1732]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1744], "distinct_count": 15}, {"mcvs": [[1, 1, 1764], [1, 1, 1746], [1, 1, 1747]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1764], "distinct_count": 20}, {"mcvs": [[1, 1, 1781], [1, 1, 1766], [1, 1, 1767]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1781], "distinct_count": 17}, {"mcvs": [[1, 1, 1797], [1, 1, 1783], [1, 1, 1784]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1797], "distinct_count": 16}, {"mcvs": [[1, 1, 1818], [1, 1, 1799], [1, 1, 1800]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1818], "distinct_count": 21}, {"mcvs": [[1, 1, 1838], [1, 1, 1820], [1, 1, 1821]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1838], "distinct_count": 20}, {"mcvs": [[1, 1, 1850], [1, 1, 1840], [1, 1, 1841]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1850], "distinct_count": 12}, {"mcvs": [[1, 1, 1862], [1, 1, 1852], [1, 1, 1853]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1862], "distinct_count": 12}, {"mcvs": [[1, 1, 1878], [1, 1, 1864], [1, 1, 1865]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1878], "distinct_count": 16}, {"mcvs": [[1, 1, 1896], [1, 1, 1880], [1, 1, 1881]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1896], "distinct_count": 18}, {"mcvs": [[1, 1, 1910], [1, 1, 1898], [1, 1, 1899]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1910], "distinct_count": 14}, {"mcvs": [[1, 1, 1922], [1, 1, 1912], [1, 1, 1913]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1922], "distinct_count": 12}, {"mcvs": [[1, 1, 1939], [1, 1, 1924], [1, 1, 1925]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1939], "distinct_count": 17}, {"mcvs": [[1, 1, 1958], [1, 1, 1941], [1, 1, 1942]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1958], "distinct_count": 19}, {"mcvs": [[1, 1, 1975], [1, 1, 1960], [1, 1, 1961]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1975], "distinct_count": 17}, {"mcvs": [[1, 1, 1991], [1, 1, 1977], [1, 1, 1978]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1991], "distinct_count": 16}, {"mcvs": [[1, 1, 2009], [1, 1, 1993], [1, 1, 1994]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2009], "distinct_count": 18}, {"mcvs": [[1, 1, 2024], [1, 1, 2011], [1, 1, 2012]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2024], "distinct_count": 15}, {"mcvs": [[1, 1, 2042], [1, 1, 2026], [1, 1, 2027]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2042], "distinct_count": 18}, {"mcvs": [[1, 1, 2057], [1, 1, 2044], [1, 1, 2045]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2057], "distinct_count": 15}, {"mcvs": [[1, 1, 2071], [1, 1, 2059], [1, 1, 2060]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2071], "distinct_count": 14}, {"mcvs": [[1, 1, 2089], [1, 1, 2073], [1, 1, 2074]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2089], "distinct_count": 18}, {"mcvs": [[1, 1, 2096], [1, 1, 2091], [1, 1, 2092]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2096], "distinct_count": 7}, {"mcvs": [[1, 1, 2110], [1, 1, 2098], [1, 1, 2099]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2110], "distinct_count": 14}, {"mcvs": [[1, 1, 2121], [1, 1, 2112], [1, 1, 2113]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2121], "distinct_count": 11}, {"mcvs": [[1, 1, 2129], [1, 1, 2123], [1, 1, 2124]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2129], "distinct_count": 8}, {"mcvs": [[1, 1, 2143], [1, 1, 2131], [1, 1, 2132]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2143], "distinct_count": 14}, {"mcvs": [[1, 1, 2166], [1, 1, 2145], [1, 1, 2146]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2166], "distinct_count": 23}, {"mcvs": [[1, 1, 2184], [1, 1, 2168], [1, 1, 2169]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2184], "distinct_count": 18}, {"mcvs": [[1, 1, 2198], [1, 1, 2186], [1, 1, 2187]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2198], "distinct_count": 14}, {"mcvs": [[1, 1, 2210], [1, 1, 2200], [1, 1, 2201]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2210], "distinct_count": 12}, {"mcvs": [[1, 1, 2231], [1, 1, 2212], [1, 1, 2213]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2231], "distinct_count": 21}, {"mcvs": [[1, 1, 2250], [1, 1, 2233], [1, 1, 2234]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2250], "distinct_count": 19}, {"mcvs": [[1, 1, 2260], [1, 1, 2252], [1, 1, 2253]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2260], "distinct_count": 10}, {"mcvs": [[1, 1, 2272], [1, 1, 2262], [1, 1, 2263]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2272], "distinct_count": 12}, {"mcvs": [[1, 1, 2285], [1, 1, 2274], [1, 1, 2275]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2285], "distinct_count": 13}, {"mcvs": [[1, 1, 2299], [1, 1, 2287], [1, 1, 2288]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2299], "distinct_count": 14}, {"mcvs": [[1, 1, 2319], [1, 1, 2301], [1, 1, 2302]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2319], "distinct_count": 20}, {"mcvs": [[1, 1, 2341], [1, 1, 2321], [1, 1, 2322]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2341], "distinct_count": 22}, {"mcvs": [[1, 1, 2355], [1, 1, 2343], [1, 1, 2344]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2355], "distinct_count": 14}, {"mcvs": [[1, 1, 2375], [1, 1, 2357], [1, 1, 2358]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2375], "distinct_count": 20}, {"mcvs": [[1, 1, 2392], [1, 1, 2377], [1, 1, 2378]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2392], "distinct_count": 17}, {"mcvs": [[1, 1, 2396], [1, 1, 2394], [1, 1, 2395]], "row_count": 4, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2396], "distinct_count": 4}, {"mcvs": [[1, 1, 2413], [1, 1, 2398], [1, 1, 2399]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2413], "distinct_count": 17}, {"mcvs": [[1, 1, 2426], [1, 1, 2415], [1, 1, 2416]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2426], "distinct_count": 13}, {"mcvs": [[1, 1, 2442], [1, 1, 2428], [1, 1, 2429]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2442], "distinct_count": 16}, {"mcvs": [[1, 1, 2462], [1, 1, 2444], [1, 1, 2445]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2462], "distinct_count": 20}, {"mcvs": [[1, 1, 2481], [1, 1, 2464], [1, 1, 2465]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2481], "distinct_count": 19}, {"mcvs": [[1, 1, 2499], [1, 1, 2483], [1, 1, 2484]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2499], "distinct_count": 18}, {"mcvs": [[1, 1, 2515], [1, 1, 2501], [1, 1, 2502]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2515], "distinct_count": 16}, {"mcvs": [[1, 1, 2536], [1, 1, 2517], [1, 1, 2518]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2536], "distinct_count": 21}, {"mcvs": [[1, 1, 2551], [1, 1, 2538], [1, 1, 2539]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2551], "distinct_count": 15}, {"mcvs": [[1, 1, 2560], [1, 1, 2553], [1, 1, 2554]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2560], "distinct_count": 9}, {"mcvs": [[1, 1, 2575], [1, 1, 2562], [1, 1, 2563]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2575], "distinct_count": 15}, {"mcvs": [[1, 1, 2583], [1, 1, 2577], [1, 1, 2578]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2583], "distinct_count": 8}, {"mcvs": [[1, 1, 2591], [1, 1, 2585], [1, 1, 2586]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2591], "distinct_count": 8}, {"mcvs": [[1, 1, 2609], [1, 1, 2593], [1, 1, 2594]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2609], "distinct_count": 18}, {"mcvs": [[1, 1, 2621], [1, 1, 2611], [1, 1, 2612]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2621], "distinct_count": 12}, {"mcvs": [[1, 1, 2643], [1, 1, 2623], [1, 1, 2624]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2643], "distinct_count": 22}, {"mcvs": [[1, 1, 2660], [1, 1, 2645], [1, 1, 2646]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2660], "distinct_count": 17}, {"mcvs": [[1, 1, 2670], [1, 1, 2662], [1, 1, 2663]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2670], "distinct_count": 10}, {"mcvs": [[1, 1, 2687], [1, 1, 2672], [1, 1, 2673]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2687], "distinct_count": 17}, {"mcvs": [[1, 1, 2699], [1, 1, 2689], [1, 1, 2690]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2699], "distinct_count": 12}, {"mcvs": [[1, 1, 2718], [1, 1, 2701], [1, 1, 2702]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2718], "distinct_count": 19}, {"mcvs": [[1, 1, 2729], [1, 1, 2720], [1, 1, 2721]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2729], "distinct_count": 11}, {"mcvs": [[1, 1, 2748], [1, 1, 2731], [1, 1, 2732]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2748], "distinct_count": 19}, {"mcvs": [[1, 1, 2767], [1, 1, 2750], [1, 1, 2751]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2767], "distinct_count": 19}, {"mcvs": [[1, 1, 2779], [1, 1, 2769], [1, 1, 2770]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2779], "distinct_count": 12}, {"mcvs": [[1, 1, 2797], [1, 1, 2781], [1, 1, 2782]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2797], "distinct_count": 18}, {"mcvs": [[1, 1, 2814], [1, 1, 2799], [1, 1, 2800]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2814], "distinct_count": 17}, {"mcvs": [[1, 1, 2828], [1, 1, 2816], [1, 1, 2817]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2828], "distinct_count": 14}, {"mcvs": [[1, 1, 2849], [1, 1, 2830], [1, 1, 2831]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2849], "distinct_count": 21}, {"mcvs": [[1, 1, 2867], [1, 1, 2851], [1, 1, 2852]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2867], "distinct_count": 18}, {"mcvs": [[1, 1, 2881], [1, 1, 2869], [1, 1, 2870]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2881], "distinct_count": 14}, {"mcvs": [[1, 1, 2896], [1, 1, 2883], [1, 1, 2884]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2896], "distinct_count": 15}, {"mcvs": [[1, 1, 2913], [1, 1, 2898], [1, 1, 2899]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2913], "distinct_count": 17}, {"mcvs": [[1, 1, 2930], [1, 1, 2915], [1, 1, 2916]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2930], "distinct_count": 17}, {"mcvs": [[1, 1, 2946], [1, 1, 2932], [1, 1, 2933]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2946], "distinct_count": 16}, {"mcvs": [[1, 1, 2961], [1, 1, 2948], [1, 1, 2949]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2961], "distinct_count": 15}, {"mcvs": [[1, 1, 2983], [1, 1, 2963], [1, 1, 2964]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2983], "distinct_count": 22}, {"mcvs": [[1, 1, 2999], [1, 1, 2985], [1, 1, 2986]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2999], "distinct_count": 16}, {"mcvs": [[1, 2, 12], [1, 2, 1], [1, 2, 2]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 12], "distinct_count": 13}, {"mcvs": [[1, 2, 29], [1, 2, 14], [1, 2, 15]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 29], "distinct_count": 17}, {"mcvs": [[1, 2, 45], [1, 2, 31], [1, 2, 32]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 45], "distinct_count": 16}, {"mcvs": [[1, 2, 63], [1, 2, 47], [1, 2, 48]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 63], "distinct_count": 18}, {"mcvs": [[1, 2, 84], [1, 2, 65], [1, 2, 66]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 84], "distinct_count": 21}, {"mcvs": [[1, 2, 91], [1, 2, 86], [1, 2, 87]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 91], "distinct_count": 7}, {"mcvs": [[1, 2, 106], [1, 2, 93], [1, 2, 94]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 106], "distinct_count": 15}, {"mcvs": [[1, 2, 115], [1, 2, 108], [1, 2, 109]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 115], "distinct_count": 9}, {"mcvs": [[1, 2, 123], [1, 2, 117], [1, 2, 118]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 123], "distinct_count": 8}, {"mcvs": [[1, 2, 136], [1, 2, 125], [1, 2, 126]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 136], "distinct_count": 13}, {"mcvs": [[1, 2, 154], [1, 2, 138], [1, 2, 139]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 154], "distinct_count": 18}, {"mcvs": [[1, 2, 173], [1, 2, 156], [1, 2, 157]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 173], "distinct_count": 19}, {"mcvs": [[1, 2, 186], [1, 2, 175], [1, 2, 176]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 186], "distinct_count": 13}, {"mcvs": [[1, 2, 203], [1, 2, 188], [1, 2, 189]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 203], "distinct_count": 17}, {"mcvs": [[1, 2, 219], [1, 2, 205], [1, 2, 206]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 219], "distinct_count": 16}, {"mcvs": [[1, 2, 241], [1, 2, 221], [1, 2, 222]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 241], "distinct_count": 22}, {"mcvs": [[1, 2, 261], [1, 2, 243], [1, 2, 244]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 261], "distinct_count": 20}, {"mcvs": [[1, 2, 277], [1, 2, 263], [1, 2, 264]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 277], "distinct_count": 16}, {"mcvs": [[1, 2, 287], [1, 2, 279], [1, 2, 280]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 287], "distinct_count": 10}, {"mcvs": [[1, 2, 302], [1, 2, 289], [1, 2, 290]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 302], "distinct_count": 15}, {"mcvs": [[1, 2, 325], [1, 2, 304], [1, 2, 305]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 325], "distinct_count": 23}, {"mcvs": [[1, 2, 346], [1, 2, 327], [1, 2, 328]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 346], "distinct_count": 21}, {"mcvs": [[1, 2, 356], [1, 2, 348], [1, 2, 349]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 356], "distinct_count": 10}, {"mcvs": [[1, 2, 367], [1, 2, 358], [1, 2, 359]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 367], "distinct_count": 11}, {"mcvs": [[1, 2, 382], [1, 2, 369], [1, 2, 370]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 382], "distinct_count": 15}, {"mcvs": [[1, 2, 394], [1, 2, 384], [1, 2, 385]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 394], "distinct_count": 12}, {"mcvs": [[1, 2, 409], [1, 2, 396], [1, 2, 397]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 409], "distinct_count": 15}, {"mcvs": [[1, 2, 423], [1, 2, 411], [1, 2, 412]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 423], "distinct_count": 14}, {"mcvs": [[1, 2, 436], [1, 2, 425], [1, 2, 426]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 436], "distinct_count": 13}, {"mcvs": [[1, 2, 454], [1, 2, 438], [1, 2, 439]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 454], "distinct_count": 18}, {"mcvs": [[1, 2, 471], [1, 2, 456], [1, 2, 457]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 471], "distinct_count": 17}, {"mcvs": [[1, 2, 498], [1, 2, 473], [1, 2, 474]], "row_count": 27, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 498], "distinct_count": 27}, {"mcvs": [[1, 2, 515], [1, 2, 500], [1, 2, 501]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 515], "distinct_count": 17}, {"mcvs": [[1, 2, 526], [1, 2, 517], [1, 2, 518]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 526], "distinct_count": 11}, {"mcvs": [[1, 2, 549], [1, 2, 528], [1, 2, 529]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 549], "distinct_count": 23}, {"mcvs": [[1, 2, 567], [1, 2, 551], [1, 2, 552]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 567], "distinct_count": 18}, {"mcvs": [[1, 2, 575], [1, 2, 569], [1, 2, 570]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 575], "distinct_count": 8}, {"mcvs": [[1, 2, 596], [1, 2, 577], [1, 2, 578]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 596], "distinct_count": 21}, {"mcvs": [[1, 2, 613], [1, 2, 598], [1, 2, 599]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 613], "distinct_count": 17}, {"mcvs": [[1, 2, 631], [1, 2, 615], [1, 2, 616]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 631], "distinct_count": 18}, {"mcvs": [[1, 2, 642], [1, 2, 633], [1, 2, 634]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 642], "distinct_count": 11}, {"mcvs": [[1, 2, 655], [1, 2, 644], [1, 2, 645]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 655], "distinct_count": 13}, {"mcvs": [[1, 2, 673], [1, 2, 657], [1, 2, 658]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 673], "distinct_count": 18}, {"mcvs": [[1, 2, 691], [1, 2, 675], [1, 2, 676]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 691], "distinct_count": 18}, {"mcvs": [[1, 2, 701], [1, 2, 693], [1, 2, 694]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 701], "distinct_count": 10}, {"mcvs": [[1, 2, 716], [1, 2, 703], [1, 2, 704]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 716], "distinct_count": 15}, {"mcvs": [[1, 2, 735], [1, 2, 718], [1, 2, 719]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 735], "distinct_count": 19}, {"mcvs": [[1, 2, 744], [1, 2, 737], [1, 2, 738]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 744], "distinct_count": 9}, {"mcvs": [[1, 2, 759], [1, 2, 746], [1, 2, 747]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 759], "distinct_count": 15}, {"mcvs": [[1, 2, 778], [1, 2, 761], [1, 2, 762]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 778], "distinct_count": 19}, {"mcvs": [[1, 2, 792], [1, 2, 780], [1, 2, 781]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 792], "distinct_count": 14}, {"mcvs": [[1, 2, 807], [1, 2, 794], [1, 2, 795]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 807], "distinct_count": 15}, {"mcvs": [[1, 2, 828], [1, 2, 809], [1, 2, 810]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 828], "distinct_count": 21}, {"mcvs": [[1, 2, 843], [1, 2, 830], [1, 2, 831]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 843], "distinct_count": 15}, {"mcvs": [[1, 2, 865], [1, 2, 845], [1, 2, 846]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 865], "distinct_count": 22}, {"mcvs": [[1, 2, 874], [1, 2, 867], [1, 2, 868]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 874], "distinct_count": 9}, {"mcvs": [[1, 2, 890], [1, 2, 876], [1, 2, 877]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 890], "distinct_count": 16}, {"mcvs": [[1, 2, 908], [1, 2, 892], [1, 2, 893]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 908], "distinct_count": 18}, {"mcvs": [[1, 2, 931], [1, 2, 910], [1, 2, 911]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 931], "distinct_count": 23}, {"mcvs": [[1, 2, 949], [1, 2, 933], [1, 2, 934]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 949], "distinct_count": 18}, {"mcvs": [[1, 2, 970], [1, 2, 951], [1, 2, 952]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 970], "distinct_count": 21}, {"mcvs": [[1, 2, 989], [1, 2, 972], [1, 2, 973]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 989], "distinct_count": 19}, {"mcvs": [[1, 2, 996], [1, 2, 991], [1, 2, 992]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 996], "distinct_count": 7}, {"mcvs": [[1, 2, 1009], [1, 2, 998], [1, 2, 999]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1009], "distinct_count": 13}, {"mcvs": [[1, 2, 1022], [1, 2, 1011], [1, 2, 1012]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1022], "distinct_count": 13}, {"mcvs": [[1, 2, 1038], [1, 2, 1024], [1, 2, 1025]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1038], "distinct_count": 16}, {"mcvs": [[1, 2, 1061], [1, 2, 1040], [1, 2, 1041]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1061], "distinct_count": 23}, {"mcvs": [[1, 2, 1083], [1, 2, 1063], [1, 2, 1064]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1083], "distinct_count": 22}, {"mcvs": [[1, 2, 1089], [1, 2, 1085], [1, 2, 1086]], "row_count": 6, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1089], "distinct_count": 6}, {"mcvs": [[1, 2, 1100], [1, 2, 1091], [1, 2, 1092]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1100], "distinct_count": 11}, {"mcvs": [[1, 2, 1116], [1, 2, 1102], [1, 2, 1103]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1116], "distinct_count": 16}, {"mcvs": [[1, 2, 1138], [1, 2, 1118], [1, 2, 1119]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1138], "distinct_count": 22}, {"mcvs": [[1, 2, 1159], [1, 2, 1140], [1, 2, 1141]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1159], "distinct_count": 21}, {"mcvs": [[1, 2, 1181], [1, 2, 1161], [1, 2, 1162]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1181], "distinct_count": 22}, {"mcvs": [[1, 2, 1200], [1, 2, 1183], [1, 2, 1184]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1200], "distinct_count": 19}, {"mcvs": [[1, 2, 1222], [1, 2, 1202], [1, 2, 1203]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1222], "distinct_count": 22}, {"mcvs": [[1, 2, 1234], [1, 2, 1224], [1, 2, 1225]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1234], "distinct_count": 12}, {"mcvs": [[1, 2, 1247], [1, 2, 1236], [1, 2, 1237]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1247], "distinct_count": 13}, {"mcvs": [[1, 2, 1264], [1, 2, 1249], [1, 2, 1250]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1264], "distinct_count": 17}, {"mcvs": [[1, 2, 1282], [1, 2, 1266], [1, 2, 1267]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1282], "distinct_count": 18}, {"mcvs": [[1, 2, 1302], [1, 2, 1284], [1, 2, 1285]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1302], "distinct_count": 20}, {"mcvs": [[1, 2, 1321], [1, 2, 1304], [1, 2, 1305]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1321], "distinct_count": 19}, {"mcvs": [[1, 2, 1336], [1, 2, 1323], [1, 2, 1324]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1336], "distinct_count": 15}, {"mcvs": [[1, 2, 1354], [1, 2, 1338], [1, 2, 1339]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1354], "distinct_count": 18}, {"mcvs": [[1, 2, 1369], [1, 2, 1356], [1, 2, 1357]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1369], "distinct_count": 15}, {"mcvs": [[1, 2, 1388], [1, 2, 1371], [1, 2, 1372]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1388], "distinct_count": 19}, {"mcvs": [[1, 2, 1397], [1, 2, 1390], [1, 2, 1391]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1397], "distinct_count": 9}, {"mcvs": [[1, 2, 1410], [1, 2, 1399], [1, 2, 1400]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1410], "distinct_count": 13}, {"mcvs": [[1, 2, 1426], [1, 2, 1412], [1, 2, 1413]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1426], "distinct_count": 16}, {"mcvs": [[1, 2, 1442], [1, 2, 1428], [1, 2, 1429]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1442], "distinct_count": 16}, {"mcvs": [[1, 2, 1450], [1, 2, 1444], [1, 2, 1445]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1450], "distinct_count": 8}, {"mcvs": [[1, 2, 1471], [1, 2, 1452], [1, 2, 1453]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1471], "distinct_count": 21}, {"mcvs": [[1, 2, 1490], [1, 2, 1473], [1, 2, 1474]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1490], "distinct_count": 19}, {"mcvs": [[1, 2, 1504], [1, 2, 1492], [1, 2, 1493]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1504], "distinct_count": 14}, {"mcvs": [[1, 2, 1525], [1, 2, 1506], [1, 2, 1507]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1525], "distinct_count": 21}, {"mcvs": [[1, 2, 1538], [1, 2, 1527], [1, 2, 1528]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1538], "distinct_count": 13}, {"mcvs": [[1, 2, 1559], [1, 2, 1540], [1, 2, 1541]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1559], "distinct_count": 21}, {"mcvs": [[1, 2, 1577], [1, 2, 1561], [1, 2, 1562]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1577], "distinct_count": 18}, {"mcvs": [[1, 2, 1591], [1, 2, 1579], [1, 2, 1580]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1591], "distinct_count": 14}, {"mcvs": [[1, 2, 1603], [1, 2, 1593], [1, 2, 1594]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1603], "distinct_count": 12}, {"mcvs": [[1, 2, 1618], [1, 2, 1605], [1, 2, 1606]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1618], "distinct_count": 15}, {"mcvs": [[1, 2, 1638], [1, 2, 1620], [1, 2, 1621]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1638], "distinct_count": 20}, {"mcvs": [[1, 2, 1658], [1, 2, 1640], [1, 2, 1641]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1658], "distinct_count": 20}, {"mcvs": [[1, 2, 1681], [1, 2, 1660], [1, 2, 1661]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1681], "distinct_count": 23}, {"mcvs": [[1, 2, 1700], [1, 2, 1683], [1, 2, 1684]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1700], "distinct_count": 19}, {"mcvs": [[1, 2, 1720], [1, 2, 1702], [1, 2, 1703]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1720], "distinct_count": 20}, {"mcvs": [[1, 2, 1740], [1, 2, 1722], [1, 2, 1723]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1740], "distinct_count": 20}, {"mcvs": [[1, 2, 1765], [1, 2, 1742], [1, 2, 1743]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1765], "distinct_count": 25}, {"mcvs": [[1, 2, 1781], [1, 2, 1767], [1, 2, 1768]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1781], "distinct_count": 16}, {"mcvs": [[1, 2, 1797], [1, 2, 1783], [1, 2, 1784]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1797], "distinct_count": 16}, {"mcvs": [[1, 2, 1809], [1, 2, 1799], [1, 2, 1800]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1809], "distinct_count": 12}, {"mcvs": [[1, 2, 1820], [1, 2, 1811], [1, 2, 1812]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1820], "distinct_count": 11}, {"mcvs": [[1, 2, 1841], [1, 2, 1822], [1, 2, 1823]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1841], "distinct_count": 21}, {"mcvs": [[1, 2, 1855], [1, 2, 1843], [1, 2, 1844]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1855], "distinct_count": 14}, {"mcvs": [[1, 2, 1874], [1, 2, 1857], [1, 2, 1858]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1874], "distinct_count": 19}, {"mcvs": [[1, 2, 1889], [1, 2, 1876], [1, 2, 1877]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1889], "distinct_count": 15}, {"mcvs": [[1, 2, 1912], [1, 2, 1891], [1, 2, 1892]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1912], "distinct_count": 23}, {"mcvs": [[1, 2, 1928], [1, 2, 1914], [1, 2, 1915]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1928], "distinct_count": 16}, {"mcvs": [[1, 2, 1946], [1, 2, 1930], [1, 2, 1931]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1946], "distinct_count": 18}, {"mcvs": [[1, 2, 1961], [1, 2, 1948], [1, 2, 1949]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1961], "distinct_count": 15}, {"mcvs": [[1, 2, 1980], [1, 2, 1963], [1, 2, 1964]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1980], "distinct_count": 19}, {"mcvs": [[1, 2, 1990], [1, 2, 1982], [1, 2, 1983]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1990], "distinct_count": 10}, {"mcvs": [[1, 2, 2005], [1, 2, 1992], [1, 2, 1993]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2005], "distinct_count": 15}, {"mcvs": [[1, 2, 2015], [1, 2, 2007], [1, 2, 2008]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2015], "distinct_count": 10}, {"mcvs": [[1, 2, 2028], [1, 2, 2017], [1, 2, 2018]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2028], "distinct_count": 13}, {"mcvs": [[1, 2, 2047], [1, 2, 2030], [1, 2, 2031]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2047], "distinct_count": 19}, {"mcvs": [[1, 2, 2066], [1, 2, 2049], [1, 2, 2050]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2066], "distinct_count": 19}, {"mcvs": [[1, 2, 2073], [1, 2, 2068], [1, 2, 2069]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2073], "distinct_count": 7}, {"mcvs": [[1, 2, 2086], [1, 2, 2075], [1, 2, 2076]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2086], "distinct_count": 13}, {"mcvs": [[1, 2, 2098], [1, 2, 2088], [1, 2, 2089]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2098], "distinct_count": 12}, {"mcvs": [[1, 2, 2118], [1, 2, 2100], [1, 2, 2101]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2118], "distinct_count": 20}, {"mcvs": [[1, 2, 2126], [1, 2, 2120], [1, 2, 2121]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2126], "distinct_count": 8}, {"mcvs": [[1, 2, 2148], [1, 2, 2128], [1, 2, 2129]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2148], "distinct_count": 22}, {"mcvs": [[1, 2, 2163], [1, 2, 2150], [1, 2, 2151]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2163], "distinct_count": 15}, {"mcvs": [[1, 2, 2177], [1, 2, 2165], [1, 2, 2166]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2177], "distinct_count": 14}, {"mcvs": [[1, 2, 2194], [1, 2, 2179], [1, 2, 2180]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2194], "distinct_count": 17}, {"mcvs": [[1, 2, 2212], [1, 2, 2196], [1, 2, 2197]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2212], "distinct_count": 18}, {"mcvs": [[1, 2, 2230], [1, 2, 2214], [1, 2, 2215]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2230], "distinct_count": 18}, {"mcvs": [[1, 2, 2242], [1, 2, 2232], [1, 2, 2233]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2242], "distinct_count": 12}, {"mcvs": [[1, 2, 2258], [1, 2, 2244], [1, 2, 2245]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2258], "distinct_count": 16}, {"mcvs": [[1, 2, 2268], [1, 2, 2260], [1, 2, 2261]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2268], "distinct_count": 10}, {"mcvs": [[1, 2, 2289], [1, 2, 2270], [1, 2, 2271]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2289], "distinct_count": 21}, {"mcvs": [[1, 2, 2313], [1, 2, 2291], [1, 2, 2292]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2313], "distinct_count": 24}, {"mcvs": [[1, 2, 2328], [1, 2, 2315], [1, 2, 2316]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2328], "distinct_count": 15}, {"mcvs": [[1, 2, 2344], [1, 2, 2330], [1, 2, 2331]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2344], "distinct_count": 16}, {"mcvs": [[1, 2, 2365], [1, 2, 2346], [1, 2, 2347]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2365], "distinct_count": 21}, {"mcvs": [[1, 2, 2389], [1, 2, 2367], [1, 2, 2368]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2389], "distinct_count": 24}, {"mcvs": [[1, 2, 2405], [1, 2, 2391], [1, 2, 2392]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2405], "distinct_count": 16}, {"mcvs": [[1, 2, 2417], [1, 2, 2407], [1, 2, 2408]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2417], "distinct_count": 12}, {"mcvs": [[1, 2, 2431], [1, 2, 2419], [1, 2, 2420]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2431], "distinct_count": 14}, {"mcvs": [[1, 2, 2443], [1, 2, 2433], [1, 2, 2434]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2443], "distinct_count": 12}, {"mcvs": [[1, 2, 2457], [1, 2, 2445], [1, 2, 2446]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2457], "distinct_count": 14}, {"mcvs": [[1, 2, 2473], [1, 2, 2459], [1, 2, 2460]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2473], "distinct_count": 16}, {"mcvs": [[1, 2, 2493], [1, 2, 2475], [1, 2, 2476]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2493], "distinct_count": 20}, {"mcvs": [[1, 2, 2514], [1, 2, 2495], [1, 2, 2496]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2514], "distinct_count": 21}, {"mcvs": [[1, 2, 2535], [1, 2, 2516], [1, 2, 2517]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2535], "distinct_count": 21}, {"mcvs": [[1, 2, 2555], [1, 2, 2537], [1, 2, 2538]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2555], "distinct_count": 20}, {"mcvs": [[1, 2, 2575], [1, 2, 2557], [1, 2, 2558]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2575], "distinct_count": 20}, {"mcvs": [[1, 2, 2595], [1, 2, 2577], [1, 2, 2578]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2595], "distinct_count": 20}, {"mcvs": [[1, 2, 2607], [1, 2, 2597], [1, 2, 2598]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2607], "distinct_count": 12}, {"mcvs": [[1, 2, 2621], [1, 2, 2609], [1, 2, 2610]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2621], "distinct_count": 14}, {"mcvs": [[1, 2, 2632], [1, 2, 2623], [1, 2, 2624]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2632], "distinct_count": 11}, {"mcvs": [[1, 2, 2642], [1, 2, 2634], [1, 2, 2635]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2642], "distinct_count": 10}, {"mcvs": [[1, 2, 2655], [1, 2, 2644], [1, 2, 2645]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2655], "distinct_count": 13}, {"mcvs": [[1, 2, 2671], [1, 2, 2657], [1, 2, 2658]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2671], "distinct_count": 16}, {"mcvs": [[1, 2, 2685], [1, 2, 2673], [1, 2, 2674]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2685], "distinct_count": 14}, {"mcvs": [[1, 2, 2705], [1, 2, 2687], [1, 2, 2688]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2705], "distinct_count": 20}, {"mcvs": [[1, 2, 2727], [1, 2, 2707], [1, 2, 2708]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2727], "distinct_count": 22}, {"mcvs": [[1, 2, 2746], [1, 2, 2729], [1, 2, 2730]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2746], "distinct_count": 19}, {"mcvs": [[1, 2, 2757], [1, 2, 2748], [1, 2, 2749]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2757], "distinct_count": 11}, {"mcvs": [[1, 2, 2770], [1, 2, 2759], [1, 2, 2760]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2770], "distinct_count": 13}, {"mcvs": [[1, 2, 2784], [1, 2, 2772], [1, 2, 2773]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2784], "distinct_count": 14}, {"mcvs": [[1, 2, 2796], [1, 2, 2786], [1, 2, 2787]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2796], "distinct_count": 12}, {"mcvs": [[1, 2, 2814], [1, 2, 2798], [1, 2, 2799]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2814], "distinct_count": 18}, {"mcvs": [[1, 2, 2830], [1, 2, 2816], [1, 2, 2817]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2830], "distinct_count": 16}, {"mcvs": [[1, 2, 2842], [1, 2, 2832], [1, 2, 2833]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2842], "distinct_count": 12}, {"mcvs": [[1, 2, 2862], [1, 2, 2844], [1, 2, 2845]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2862], "distinct_count": 20}, {"mcvs": [[1, 2, 2880], [1, 2, 2864], [1, 2, 2865]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2880], "distinct_count": 18}, {"mcvs": [[1, 2, 2899], [1, 2, 2882], [1, 2, 2883]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2899], "distinct_count": 19}, {"mcvs": [[1, 2, 2910], [1, 2, 2901], [1, 2, 2902]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2910], "distinct_count": 11}, {"mcvs": [[1, 2, 2929], [1, 2, 2912], [1, 2, 2913]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2929], "distinct_count": 19}, {"mcvs": [[1, 2, 2950], [1, 2, 2931], [1, 2, 2932]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2950], "distinct_count": 21}, {"mcvs": [[1, 2, 2967], [1, 2, 2952], [1, 2, 2953]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2967], "distinct_count": 17}, {"mcvs": [[1, 2, 2985], [1, 2, 2969], [1, 2, 2970]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2985], "distinct_count": 18}, {"mcvs": [[1, 3, 4], [1, 2, 2987], [1, 2, 2988]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 4], "distinct_count": 19}, {"mcvs": [[1, 3, 19], [1, 3, 6], [1, 3, 7]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 19], "distinct_count": 15}, {"mcvs": [[1, 3, 34], [1, 3, 21], [1, 3, 22]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 34], "distinct_count": 15}, {"mcvs": [[1, 3, 55], [1, 3, 36], [1, 3, 37]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 55], "distinct_count": 21}, {"mcvs": [[1, 3, 70], [1, 3, 57], [1, 3, 58]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 70], "distinct_count": 15}, {"mcvs": [[1, 3, 83], [1, 3, 72], [1, 3, 73]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 83], "distinct_count": 13}, {"mcvs": [[1, 3, 102], [1, 3, 85], [1, 3, 86]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 102], "distinct_count": 19}, {"mcvs": [[1, 3, 118], [1, 3, 104], [1, 3, 105]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 118], "distinct_count": 16}, {"mcvs": [[1, 3, 132], [1, 3, 120], [1, 3, 121]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 132], "distinct_count": 14}, {"mcvs": [[1, 3, 151], [1, 3, 134], [1, 3, 135]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 151], "distinct_count": 19}, {"mcvs": [[1, 3, 161], [1, 3, 153], [1, 3, 154]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 161], "distinct_count": 10}, {"mcvs": [[1, 3, 176], [1, 3, 163], [1, 3, 164]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 176], "distinct_count": 15}, {"mcvs": [[1, 3, 190], [1, 3, 178], [1, 3, 179]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 190], "distinct_count": 14}, {"mcvs": [[1, 3, 201], [1, 3, 192], [1, 3, 193]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 201], "distinct_count": 11}, {"mcvs": [[1, 3, 219], [1, 3, 203], [1, 3, 204]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 219], "distinct_count": 18}, {"mcvs": [[1, 3, 240], [1, 3, 221], [1, 3, 222]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 240], "distinct_count": 21}, {"mcvs": [[1, 3, 259], [1, 3, 242], [1, 3, 243]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 259], "distinct_count": 19}, {"mcvs": [[1, 3, 276], [1, 3, 261], [1, 3, 262]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 276], "distinct_count": 17}, {"mcvs": [[1, 3, 286], [1, 3, 278], [1, 3, 279]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 286], "distinct_count": 10}, {"mcvs": [[1, 3, 304], [1, 3, 288], [1, 3, 289]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 304], "distinct_count": 18}, {"mcvs": [[1, 3, 325], [1, 3, 306], [1, 3, 307]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 325], "distinct_count": 21}, {"mcvs": [[1, 3, 336], [1, 3, 327], [1, 3, 328]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 336], "distinct_count": 11}, {"mcvs": [[1, 3, 354], [1, 3, 338], [1, 3, 339]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 354], "distinct_count": 18}, {"mcvs": [[1, 3, 369], [1, 3, 356], [1, 3, 357]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 369], "distinct_count": 15}, {"mcvs": [[1, 3, 384], [1, 3, 371], [1, 3, 372]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 384], "distinct_count": 15}, {"mcvs": [[1, 3, 396], [1, 3, 386], [1, 3, 387]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 396], "distinct_count": 12}, {"mcvs": [[1, 3, 415], [1, 3, 398], [1, 3, 399]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 415], "distinct_count": 19}, {"mcvs": [[1, 3, 427], [1, 3, 417], [1, 3, 418]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 427], "distinct_count": 12}, {"mcvs": [[1, 3, 447], [1, 3, 429], [1, 3, 430]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 447], "distinct_count": 20}, {"mcvs": [[1, 3, 461], [1, 3, 449], [1, 3, 450]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 461], "distinct_count": 14}, {"mcvs": [[1, 3, 478], [1, 3, 463], [1, 3, 464]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 478], "distinct_count": 17}, {"mcvs": [[1, 3, 488], [1, 3, 480], [1, 3, 481]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 488], "distinct_count": 10}, {"mcvs": [[1, 3, 512], [1, 3, 490], [1, 3, 491]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 512], "distinct_count": 24}, {"mcvs": [[1, 3, 531], [1, 3, 514], [1, 3, 515]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 531], "distinct_count": 19}, {"mcvs": [[1, 3, 548], [1, 3, 533], [1, 3, 534]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 548], "distinct_count": 17}, {"mcvs": [[1, 3, 565], [1, 3, 550], [1, 3, 551]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 565], "distinct_count": 17}, {"mcvs": [[1, 3, 583], [1, 3, 567], [1, 3, 568]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 583], "distinct_count": 18}, {"mcvs": [[1, 3, 603], [1, 3, 585], [1, 3, 586]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 603], "distinct_count": 20}, {"mcvs": [[1, 3, 623], [1, 3, 605], [1, 3, 606]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 623], "distinct_count": 20}, {"mcvs": [[1, 3, 639], [1, 3, 625], [1, 3, 626]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 639], "distinct_count": 16}, {"mcvs": [[1, 3, 650], [1, 3, 641], [1, 3, 642]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 650], "distinct_count": 11}, {"mcvs": [[1, 3, 666], [1, 3, 652], [1, 3, 653]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 666], "distinct_count": 16}, {"mcvs": [[1, 3, 682], [1, 3, 668], [1, 3, 669]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 682], "distinct_count": 16}, {"mcvs": [[1, 3, 701], [1, 3, 684], [1, 3, 685]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 701], "distinct_count": 19}, {"mcvs": [[1, 3, 710], [1, 3, 703], [1, 3, 704]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 710], "distinct_count": 9}, {"mcvs": [[1, 3, 731], [1, 3, 712], [1, 3, 713]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 731], "distinct_count": 21}, {"mcvs": [[1, 3, 746], [1, 3, 733], [1, 3, 734]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 746], "distinct_count": 15}, {"mcvs": [[1, 3, 758], [1, 3, 748], [1, 3, 749]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 758], "distinct_count": 12}, {"mcvs": [[1, 3, 771], [1, 3, 760], [1, 3, 761]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 771], "distinct_count": 13}, {"mcvs": [[1, 3, 792], [1, 3, 773], [1, 3, 774]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 792], "distinct_count": 21}, {"mcvs": [[1, 3, 810], [1, 3, 794], [1, 3, 795]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 810], "distinct_count": 18}, {"mcvs": [[1, 3, 824], [1, 3, 812], [1, 3, 813]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 824], "distinct_count": 14}, {"mcvs": [[1, 3, 844], [1, 3, 826], [1, 3, 827]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 844], "distinct_count": 20}, {"mcvs": [[1, 3, 856], [1, 3, 846], [1, 3, 847]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 856], "distinct_count": 12}, {"mcvs": [[1, 3, 868], [1, 3, 858], [1, 3, 859]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 868], "distinct_count": 12}, {"mcvs": [[1, 3, 888], [1, 3, 870], [1, 3, 871]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 888], "distinct_count": 20}, {"mcvs": [[1, 3, 904], [1, 3, 890], [1, 3, 891]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 904], "distinct_count": 16}, {"mcvs": [[1, 3, 915], [1, 3, 906], [1, 3, 907]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 915], "distinct_count": 11}, {"mcvs": [[1, 3, 930], [1, 3, 917], [1, 3, 918]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 930], "distinct_count": 15}, {"mcvs": [[1, 3, 944], [1, 3, 932], [1, 3, 933]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 944], "distinct_count": 14}, {"mcvs": [[1, 3, 969], [1, 3, 946], [1, 3, 947]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 969], "distinct_count": 25}, {"mcvs": [[1, 3, 988], [1, 3, 971], [1, 3, 972]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 988], "distinct_count": 19}, {"mcvs": [[1, 3, 1012], [1, 3, 990], [1, 3, 991]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1012], "distinct_count": 24}, {"mcvs": [[1, 3, 1024], [1, 3, 1014], [1, 3, 1015]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1024], "distinct_count": 12}, {"mcvs": [[1, 3, 1038], [1, 3, 1026], [1, 3, 1027]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1038], "distinct_count": 14}, {"mcvs": [[1, 3, 1054], [1, 3, 1040], [1, 3, 1041]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1054], "distinct_count": 16}, {"mcvs": [[1, 3, 1072], [1, 3, 1056], [1, 3, 1057]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1072], "distinct_count": 18}, {"mcvs": [[1, 3, 1087], [1, 3, 1074], [1, 3, 1075]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1087], "distinct_count": 15}, {"mcvs": [[1, 3, 1105], [1, 3, 1089], [1, 3, 1090]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1105], "distinct_count": 18}, {"mcvs": [[1, 3, 1118], [1, 3, 1107], [1, 3, 1108]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1118], "distinct_count": 13}, {"mcvs": [[1, 3, 1127], [1, 3, 1120], [1, 3, 1121]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1127], "distinct_count": 9}, {"mcvs": [[1, 3, 1144], [1, 3, 1129], [1, 3, 1130]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1144], "distinct_count": 17}, {"mcvs": [[1, 3, 1158], [1, 3, 1146], [1, 3, 1147]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1158], "distinct_count": 14}, {"mcvs": [[1, 3, 1179], [1, 3, 1160], [1, 3, 1161]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1179], "distinct_count": 21}, {"mcvs": [[1, 3, 1197], [1, 3, 1181], [1, 3, 1182]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1197], "distinct_count": 18}, {"mcvs": [[1, 3, 1211], [1, 3, 1199], [1, 3, 1200]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1211], "distinct_count": 14}, {"mcvs": [[1, 3, 1218], [1, 3, 1213], [1, 3, 1214]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1218], "distinct_count": 7}, {"mcvs": [[1, 3, 1233], [1, 3, 1220], [1, 3, 1221]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1233], "distinct_count": 15}, {"mcvs": [[1, 3, 1243], [1, 3, 1235], [1, 3, 1236]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1243], "distinct_count": 10}, {"mcvs": [[1, 3, 1251], [1, 3, 1245], [1, 3, 1246]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1251], "distinct_count": 8}, {"mcvs": [[1, 3, 1264], [1, 3, 1253], [1, 3, 1254]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1264], "distinct_count": 13}, {"mcvs": [[1, 3, 1284], [1, 3, 1266], [1, 3, 1267]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1284], "distinct_count": 20}, {"mcvs": [[1, 3, 1299], [1, 3, 1286], [1, 3, 1287]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1299], "distinct_count": 15}, {"mcvs": [[1, 3, 1312], [1, 3, 1301], [1, 3, 1302]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1312], "distinct_count": 13}, {"mcvs": [[1, 3, 1335], [1, 3, 1314], [1, 3, 1315]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1335], "distinct_count": 23}, {"mcvs": [[1, 3, 1346], [1, 3, 1337], [1, 3, 1338]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1346], "distinct_count": 11}, {"mcvs": [[1, 3, 1368], [1, 3, 1348], [1, 3, 1349]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1368], "distinct_count": 22}, {"mcvs": [[1, 3, 1380], [1, 3, 1370], [1, 3, 1371]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1380], "distinct_count": 12}, {"mcvs": [[1, 3, 1398], [1, 3, 1382], [1, 3, 1383]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1398], "distinct_count": 18}, {"mcvs": [[1, 3, 1417], [1, 3, 1400], [1, 3, 1401]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1417], "distinct_count": 19}, {"mcvs": [[1, 3, 1432], [1, 3, 1419], [1, 3, 1420]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1432], "distinct_count": 15}, {"mcvs": [[1, 3, 1449], [1, 3, 1434], [1, 3, 1435]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1449], "distinct_count": 17}, {"mcvs": [[1, 3, 1470], [1, 3, 1451], [1, 3, 1452]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1470], "distinct_count": 21}, {"mcvs": [[1, 3, 1480], [1, 3, 1472], [1, 3, 1473]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1480], "distinct_count": 10}, {"mcvs": [[1, 3, 1489], [1, 3, 1482], [1, 3, 1483]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1489], "distinct_count": 9}, {"mcvs": [[1, 3, 1506], [1, 3, 1491], [1, 3, 1492]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1506], "distinct_count": 17}, {"mcvs": [[1, 3, 1518], [1, 3, 1508], [1, 3, 1509]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1518], "distinct_count": 12}, {"mcvs": [[1, 3, 1531], [1, 3, 1520], [1, 3, 1521]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1531], "distinct_count": 13}, {"mcvs": [[1, 3, 1547], [1, 3, 1533], [1, 3, 1534]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1547], "distinct_count": 16}, {"mcvs": [[1, 3, 1560], [1, 3, 1549], [1, 3, 1550]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1560], "distinct_count": 13}, {"mcvs": [[1, 3, 1573], [1, 3, 1562], [1, 3, 1563]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1573], "distinct_count": 13}, {"mcvs": [[1, 3, 1586], [1, 3, 1575], [1, 3, 1576]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1586], "distinct_count": 13}, {"mcvs": [[1, 3, 1609], [1, 3, 1588], [1, 3, 1589]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1609], "distinct_count": 23}, {"mcvs": [[1, 3, 1620], [1, 3, 1611], [1, 3, 1612]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1620], "distinct_count": 11}, {"mcvs": [[1, 3, 1635], [1, 3, 1622], [1, 3, 1623]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1635], "distinct_count": 15}, {"mcvs": [[1, 3, 1650], [1, 3, 1637], [1, 3, 1638]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1650], "distinct_count": 15}, {"mcvs": [[1, 3, 1668], [1, 3, 1652], [1, 3, 1653]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1668], "distinct_count": 18}, {"mcvs": [[1, 3, 1695], [1, 3, 1670], [1, 3, 1671]], "row_count": 27, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1695], "distinct_count": 27}, {"mcvs": [[1, 3, 1718], [1, 3, 1697], [1, 3, 1698]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1718], "distinct_count": 23}, {"mcvs": [[1, 3, 1734], [1, 3, 1720], [1, 3, 1721]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1734], "distinct_count": 16}, {"mcvs": [[1, 3, 1757], [1, 3, 1736], [1, 3, 1737]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1757], "distinct_count": 23}, {"mcvs": [[1, 3, 1768], [1, 3, 1759], [1, 3, 1760]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1768], "distinct_count": 11}, {"mcvs": [[1, 3, 1773], [1, 3, 1770], [1, 3, 1771]], "row_count": 5, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1773], "distinct_count": 5}, {"mcvs": [[1, 3, 1798], [1, 3, 1775], [1, 3, 1776]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1798], "distinct_count": 25}, {"mcvs": [[1, 3, 1820], [1, 3, 1800], [1, 3, 1801]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1820], "distinct_count": 22}, {"mcvs": [[1, 3, 1835], [1, 3, 1822], [1, 3, 1823]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1835], "distinct_count": 15}, {"mcvs": [[1, 3, 1856], [1, 3, 1837], [1, 3, 1838]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1856], "distinct_count": 21}, {"mcvs": [[1, 3, 1874], [1, 3, 1858], [1, 3, 1859]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1874], "distinct_count": 18}, {"mcvs": [[1, 3, 1897], [1, 3, 1876], [1, 3, 1877]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1897], "distinct_count": 23}, {"mcvs": [[1, 3, 1916], [1, 3, 1899], [1, 3, 1900]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1916], "distinct_count": 19}, {"mcvs": [[1, 3, 1931], [1, 3, 1918], [1, 3, 1919]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1931], "distinct_count": 15}, {"mcvs": [[1, 3, 1948], [1, 3, 1933], [1, 3, 1934]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1948], "distinct_count": 17}, {"mcvs": [[1, 3, 1967], [1, 3, 1950], [1, 3, 1951]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1967], "distinct_count": 19}, {"mcvs": [[1, 3, 1984], [1, 3, 1969], [1, 3, 1970]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1984], "distinct_count": 17}, {"mcvs": [[1, 3, 2005], [1, 3, 1986], [1, 3, 1987]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2005], "distinct_count": 21}, {"mcvs": [[1, 3, 2021], [1, 3, 2007], [1, 3, 2008]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2021], "distinct_count": 16}, {"mcvs": [[1, 3, 2038], [1, 3, 2023], [1, 3, 2024]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2038], "distinct_count": 17}, {"mcvs": [[1, 3, 2054], [1, 3, 2040], [1, 3, 2041]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2054], "distinct_count": 16}, {"mcvs": [[1, 3, 2072], [1, 3, 2056], [1, 3, 2057]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2072], "distinct_count": 18}, {"mcvs": [[1, 3, 2093], [1, 3, 2074], [1, 3, 2075]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2093], "distinct_count": 21}, {"mcvs": [[1, 3, 2114], [1, 3, 2095], [1, 3, 2096]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2114], "distinct_count": 21}, {"mcvs": [[1, 3, 2133], [1, 3, 2116], [1, 3, 2117]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2133], "distinct_count": 19}, {"mcvs": [[1, 3, 2151], [1, 3, 2135], [1, 3, 2136]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2151], "distinct_count": 18}, {"mcvs": [[1, 3, 2168], [1, 3, 2153], [1, 3, 2154]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2168], "distinct_count": 17}, {"mcvs": [[1, 3, 2181], [1, 3, 2170], [1, 3, 2171]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2181], "distinct_count": 13}, {"mcvs": [[1, 3, 2192], [1, 3, 2183], [1, 3, 2184]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2192], "distinct_count": 11}, {"mcvs": [[1, 3, 2212], [1, 3, 2194], [1, 3, 2195]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2212], "distinct_count": 20}, {"mcvs": [[1, 3, 2233], [1, 3, 2214], [1, 3, 2215]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2233], "distinct_count": 21}, {"mcvs": [[1, 3, 2243], [1, 3, 2235], [1, 3, 2236]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2243], "distinct_count": 10}, {"mcvs": [[1, 3, 2265], [1, 3, 2245], [1, 3, 2246]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2265], "distinct_count": 22}, {"mcvs": [[1, 3, 2283], [1, 3, 2267], [1, 3, 2268]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2283], "distinct_count": 18}, {"mcvs": [[1, 3, 2301], [1, 3, 2285], [1, 3, 2286]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2301], "distinct_count": 18}, {"mcvs": [[1, 3, 2316], [1, 3, 2303], [1, 3, 2304]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2316], "distinct_count": 15}, {"mcvs": [[1, 3, 2332], [1, 3, 2318], [1, 3, 2319]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2332], "distinct_count": 16}, {"mcvs": [[1, 3, 2341], [1, 3, 2334], [1, 3, 2335]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2341], "distinct_count": 9}, {"mcvs": [[1, 3, 2355], [1, 3, 2343], [1, 3, 2344]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2355], "distinct_count": 14}, {"mcvs": [[1, 3, 2368], [1, 3, 2357], [1, 3, 2358]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2368], "distinct_count": 13}, {"mcvs": [[1, 3, 2394], [1, 3, 2370], [1, 3, 2371]], "row_count": 26, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2394], "distinct_count": 26}, {"mcvs": [[1, 3, 2408], [1, 3, 2396], [1, 3, 2397]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2408], "distinct_count": 14}, {"mcvs": [[1, 3, 2428], [1, 3, 2410], [1, 3, 2411]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2428], "distinct_count": 20}, {"mcvs": [[1, 3, 2435], [1, 3, 2430], [1, 3, 2431]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2435], "distinct_count": 7}, {"mcvs": [[1, 3, 2443], [1, 3, 2437], [1, 3, 2438]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2443], "distinct_count": 8}, {"mcvs": [[1, 3, 2463], [1, 3, 2445], [1, 3, 2446]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2463], "distinct_count": 20}, {"mcvs": [[1, 3, 2482], [1, 3, 2465], [1, 3, 2466]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2482], "distinct_count": 19}, {"mcvs": [[1, 3, 2499], [1, 3, 2484], [1, 3, 2485]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2499], "distinct_count": 17}, {"mcvs": [[1, 3, 2510], [1, 3, 2501], [1, 3, 2502]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2510], "distinct_count": 11}, {"mcvs": [[1, 3, 2532], [1, 3, 2512], [1, 3, 2513]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2532], "distinct_count": 22}, {"mcvs": [[1, 3, 2553], [1, 3, 2534], [1, 3, 2535]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2553], "distinct_count": 21}, {"mcvs": [[1, 3, 2570], [1, 3, 2555], [1, 3, 2556]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2570], "distinct_count": 17}, {"mcvs": [[1, 3, 2584], [1, 3, 2572], [1, 3, 2573]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2584], "distinct_count": 14}, {"mcvs": [[1, 3, 2603], [1, 3, 2586], [1, 3, 2587]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2603], "distinct_count": 19}, {"mcvs": [[1, 3, 2618], [1, 3, 2605], [1, 3, 2606]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2618], "distinct_count": 15}, {"mcvs": [[1, 3, 2628], [1, 3, 2620], [1, 3, 2621]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2628], "distinct_count": 10}, {"mcvs": [[1, 3, 2635], [1, 3, 2630], [1, 3, 2631]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2635], "distinct_count": 7}, {"mcvs": [[1, 3, 2650], [1, 3, 2637], [1, 3, 2638]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2650], "distinct_count": 15}, {"mcvs": [[1, 3, 2669], [1, 3, 2652], [1, 3, 2653]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2669], "distinct_count": 19}, {"mcvs": [[1, 3, 2684], [1, 3, 2671], [1, 3, 2672]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2684], "distinct_count": 15}, {"mcvs": [[1, 3, 2700], [1, 3, 2686], [1, 3, 2687]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2700], "distinct_count": 16}, {"mcvs": [[1, 3, 2710], [1, 3, 2702], [1, 3, 2703]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2710], "distinct_count": 10}, {"mcvs": [[1, 3, 2733], [1, 3, 2712], [1, 3, 2713]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2733], "distinct_count": 23}, {"mcvs": [[1, 3, 2744], [1, 3, 2735], [1, 3, 2736]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2744], "distinct_count": 11}, {"mcvs": [[1, 3, 2756], [1, 3, 2746], [1, 3, 2747]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2756], "distinct_count": 12}, {"mcvs": [[1, 3, 2770], [1, 3, 2758], [1, 3, 2759]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2770], "distinct_count": 14}, {"mcvs": [[1, 3, 2787], [1, 3, 2772], [1, 3, 2773]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2787], "distinct_count": 17}, {"mcvs": [[1, 3, 2809], [1, 3, 2789], [1, 3, 2790]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2809], "distinct_count": 22}, {"mcvs": [[1, 3, 2830], [1, 3, 2811], [1, 3, 2812]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2830], "distinct_count": 21}, {"mcvs": [[1, 3, 2847], [1, 3, 2832], [1, 3, 2833]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2847], "distinct_count": 17}, {"mcvs": [[1, 3, 2867], [1, 3, 2849], [1, 3, 2850]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2867], "distinct_count": 20}, {"mcvs": [[1, 3, 2885], [1, 3, 2869], [1, 3, 2870]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2885], "distinct_count": 18}, {"mcvs": [[1, 3, 2899], [1, 3, 2887], [1, 3, 2888]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2899], "distinct_count": 14}, {"mcvs": [[1, 3, 2916], [1, 3, 2901], [1, 3, 2902]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2916], "distinct_count": 17}, {"mcvs": [[1, 3, 2936], [1, 3, 2918], [1, 3, 2919]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2936], "distinct_count": 20}, {"mcvs": [[1, 3, 2950], [1, 3, 2938], [1, 3, 2939]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2950], "distinct_count": 14}, {"mcvs": [[1, 3, 2965], [1, 3, 2952], [1, 3, 2953]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2965], "distinct_count": 15}, {"mcvs": [[1, 3, 2971], [1, 3, 2967], [1, 3, 2968]], "row_count": 6, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2971], "distinct_count": 6}, {"mcvs": [[1, 3, 2980], [1, 3, 2973], [1, 3, 2974]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2980], "distinct_count": 9}, {"mcvs": [[1, 4, 1], [1, 3, 2982], [1, 3, 2983]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1], "distinct_count": 21}, {"mcvs": [[1, 4, 24], [1, 4, 3], [1, 4, 4]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 24], "distinct_count": 23}, {"mcvs": [[1, 4, 43], [1, 4, 26], [1, 4, 27]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 43], "distinct_count": 19}, {"mcvs": [[1, 4, 66], [1, 4, 45], [1, 4, 46]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 66], "distinct_count": 23}, {"mcvs": [[1, 4, 79], [1, 4, 68], [1, 4, 69]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 79], "distinct_count": 13}, {"mcvs": [[1, 4, 90], [1, 4, 81], [1, 4, 82]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 90], "distinct_count": 11}, {"mcvs": [[1, 4, 99], [1, 4, 92], [1, 4, 93]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 99], "distinct_count": 9}, {"mcvs": [[1, 4, 114], [1, 4, 101], [1, 4, 102]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 114], "distinct_count": 15}, {"mcvs": [[1, 4, 125], [1, 4, 116], [1, 4, 117]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 125], "distinct_count": 11}, {"mcvs": [[1, 4, 141], [1, 4, 127], [1, 4, 128]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 141], "distinct_count": 16}, {"mcvs": [[1, 4, 161], [1, 4, 143], [1, 4, 144]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 161], "distinct_count": 20}, {"mcvs": [[1, 4, 179], [1, 4, 163], [1, 4, 164]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 179], "distinct_count": 18}, {"mcvs": [[1, 4, 185], [1, 4, 181], [1, 4, 182]], "row_count": 6, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 185], "distinct_count": 6}, {"mcvs": [[1, 4, 206], [1, 4, 187], [1, 4, 188]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 206], "distinct_count": 21}, {"mcvs": [[1, 4, 220], [1, 4, 208], [1, 4, 209]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 220], "distinct_count": 14}, {"mcvs": [[1, 4, 230], [1, 4, 222], [1, 4, 223]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 230], "distinct_count": 10}, {"mcvs": [[1, 4, 249], [1, 4, 232], [1, 4, 233]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 249], "distinct_count": 19}, {"mcvs": [[1, 4, 259], [1, 4, 251], [1, 4, 252]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 259], "distinct_count": 10}, {"mcvs": [[1, 4, 275], [1, 4, 261], [1, 4, 262]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 275], "distinct_count": 16}, {"mcvs": [[1, 4, 293], [1, 4, 277], [1, 4, 278]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 293], "distinct_count": 18}, {"mcvs": [[1, 4, 309], [1, 4, 295], [1, 4, 296]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 309], "distinct_count": 16}, {"mcvs": [[1, 4, 321], [1, 4, 311], [1, 4, 312]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 321], "distinct_count": 12}, {"mcvs": [[1, 4, 335], [1, 4, 323], [1, 4, 324]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 335], "distinct_count": 14}, {"mcvs": [[1, 4, 356], [1, 4, 337], [1, 4, 338]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 356], "distinct_count": 21}, {"mcvs": [[1, 4, 377], [1, 4, 358], [1, 4, 359]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 377], "distinct_count": 21}, {"mcvs": [[1, 4, 392], [1, 4, 379], [1, 4, 380]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 392], "distinct_count": 15}, {"mcvs": [[1, 4, 407], [1, 4, 394], [1, 4, 395]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 407], "distinct_count": 15}, {"mcvs": [[1, 4, 416], [1, 4, 409], [1, 4, 410]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 416], "distinct_count": 9}, {"mcvs": [[1, 4, 430], [1, 4, 418], [1, 4, 419]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 430], "distinct_count": 14}, {"mcvs": [[1, 4, 437], [1, 4, 432], [1, 4, 433]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 437], "distinct_count": 7}, {"mcvs": [[1, 4, 451], [1, 4, 439], [1, 4, 440]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 451], "distinct_count": 14}, {"mcvs": [[1, 4, 467], [1, 4, 453], [1, 4, 454]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 467], "distinct_count": 16}, {"mcvs": [[1, 4, 493], [1, 4, 469], [1, 4, 470]], "row_count": 26, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 493], "distinct_count": 26}, {"mcvs": [[1, 4, 512], [1, 4, 495], [1, 4, 496]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 512], "distinct_count": 19}, {"mcvs": [[1, 4, 533], [1, 4, 514], [1, 4, 515]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 533], "distinct_count": 21}, {"mcvs": [[1, 4, 556], [1, 4, 535], [1, 4, 536]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 556], "distinct_count": 23}, {"mcvs": [[1, 4, 578], [1, 4, 558], [1, 4, 559]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 578], "distinct_count": 22}, {"mcvs": [[1, 4, 595], [1, 4, 580], [1, 4, 581]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 595], "distinct_count": 17}, {"mcvs": [[1, 4, 611], [1, 4, 597], [1, 4, 598]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 611], "distinct_count": 16}, {"mcvs": [[1, 4, 625], [1, 4, 613], [1, 4, 614]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 625], "distinct_count": 14}, {"mcvs": [[1, 4, 637], [1, 4, 627], [1, 4, 628]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 637], "distinct_count": 12}, {"mcvs": [[1, 4, 654], [1, 4, 639], [1, 4, 640]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 654], "distinct_count": 17}, {"mcvs": [[1, 4, 668], [1, 4, 656], [1, 4, 657]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 668], "distinct_count": 14}, {"mcvs": [[1, 4, 682], [1, 4, 670], [1, 4, 671]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 682], "distinct_count": 14}, {"mcvs": [[1, 4, 704], [1, 4, 684], [1, 4, 685]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 704], "distinct_count": 22}, {"mcvs": [[1, 4, 720], [1, 4, 706], [1, 4, 707]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 720], "distinct_count": 16}, {"mcvs": [[1, 4, 736], [1, 4, 722], [1, 4, 723]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 736], "distinct_count": 16}, {"mcvs": [[1, 4, 747], [1, 4, 738], [1, 4, 739]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 747], "distinct_count": 11}, {"mcvs": [[1, 4, 770], [1, 4, 749], [1, 4, 750]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 770], "distinct_count": 23}, {"mcvs": [[1, 4, 788], [1, 4, 772], [1, 4, 773]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 788], "distinct_count": 18}, {"mcvs": [[1, 4, 796], [1, 4, 790], [1, 4, 791]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 796], "distinct_count": 8}, {"mcvs": [[1, 4, 812], [1, 4, 798], [1, 4, 799]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 812], "distinct_count": 16}, {"mcvs": [[1, 4, 821], [1, 4, 814], [1, 4, 815]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 821], "distinct_count": 9}, {"mcvs": [[1, 4, 831], [1, 4, 823], [1, 4, 824]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 831], "distinct_count": 10}, {"mcvs": [[1, 4, 845], [1, 4, 833], [1, 4, 834]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 845], "distinct_count": 14}, {"mcvs": [[1, 4, 863], [1, 4, 847], [1, 4, 848]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 863], "distinct_count": 18}, {"mcvs": [[1, 4, 878], [1, 4, 865], [1, 4, 866]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 878], "distinct_count": 15}, {"mcvs": [[1, 4, 905], [1, 4, 880], [1, 4, 881]], "row_count": 27, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 905], "distinct_count": 27}, {"mcvs": [[1, 4, 920], [1, 4, 907], [1, 4, 908]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 920], "distinct_count": 15}, {"mcvs": [[1, 4, 929], [1, 4, 922], [1, 4, 923]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 929], "distinct_count": 9}, {"mcvs": [[1, 4, 945], [1, 4, 931], [1, 4, 932]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 945], "distinct_count": 16}, {"mcvs": [[1, 4, 961], [1, 4, 947], [1, 4, 948]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 961], "distinct_count": 16}, {"mcvs": [[1, 4, 980], [1, 4, 963], [1, 4, 964]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 980], "distinct_count": 19}, {"mcvs": [[1, 4, 998], [1, 4, 982], [1, 4, 983]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 998], "distinct_count": 18}, {"mcvs": [[1, 4, 1018], [1, 4, 1000], [1, 4, 1001]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1018], "distinct_count": 20}, {"mcvs": [[1, 4, 1045], [1, 4, 1020], [1, 4, 1021]], "row_count": 27, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1045], "distinct_count": 27}, {"mcvs": [[1, 4, 1055], [1, 4, 1047], [1, 4, 1048]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1055], "distinct_count": 10}, {"mcvs": [[1, 4, 1068], [1, 4, 1057], [1, 4, 1058]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1068], "distinct_count": 13}, {"mcvs": [[1, 4, 1084], [1, 4, 1070], [1, 4, 1071]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1084], "distinct_count": 16}, {"mcvs": [[1, 4, 1097], [1, 4, 1086], [1, 4, 1087]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1097], "distinct_count": 13}, {"mcvs": [[1, 4, 1111], [1, 4, 1099], [1, 4, 1100]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1111], "distinct_count": 14}, {"mcvs": [[1, 4, 1126], [1, 4, 1113], [1, 4, 1114]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1126], "distinct_count": 15}, {"mcvs": [[1, 4, 1138], [1, 4, 1128], [1, 4, 1129]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1138], "distinct_count": 12}, {"mcvs": [[1, 4, 1151], [1, 4, 1140], [1, 4, 1141]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1151], "distinct_count": 13}, {"mcvs": [[1, 4, 1169], [1, 4, 1153], [1, 4, 1154]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1169], "distinct_count": 18}, {"mcvs": [[1, 4, 1188], [1, 4, 1171], [1, 4, 1172]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1188], "distinct_count": 19}, {"mcvs": [[1, 4, 1208], [1, 4, 1190], [1, 4, 1191]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1208], "distinct_count": 20}, {"mcvs": [[1, 4, 1228], [1, 4, 1210], [1, 4, 1211]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1228], "distinct_count": 20}, {"mcvs": [[1, 4, 1241], [1, 4, 1230], [1, 4, 1231]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1241], "distinct_count": 13}, {"mcvs": [[1, 4, 1255], [1, 4, 1243], [1, 4, 1244]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1255], "distinct_count": 14}, {"mcvs": [[1, 4, 1269], [1, 4, 1257], [1, 4, 1258]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1269], "distinct_count": 14}, {"mcvs": [[1, 4, 1286], [1, 4, 1271], [1, 4, 1272]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1286], "distinct_count": 17}, {"mcvs": [[1, 4, 1295], [1, 4, 1288], [1, 4, 1289]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1295], "distinct_count": 9}, {"mcvs": [[1, 4, 1311], [1, 4, 1297], [1, 4, 1298]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1311], "distinct_count": 16}, {"mcvs": [[1, 4, 1330], [1, 4, 1313], [1, 4, 1314]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1330], "distinct_count": 19}, {"mcvs": [[1, 4, 1346], [1, 4, 1332], [1, 4, 1333]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1346], "distinct_count": 16}, {"mcvs": [[1, 4, 1365], [1, 4, 1348], [1, 4, 1349]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1365], "distinct_count": 19}, {"mcvs": [[1, 4, 1384], [1, 4, 1367], [1, 4, 1368]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1384], "distinct_count": 19}, {"mcvs": [[1, 4, 1401], [1, 4, 1386], [1, 4, 1387]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1401], "distinct_count": 17}, {"mcvs": [[1, 4, 1409], [1, 4, 1403], [1, 4, 1404]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1409], "distinct_count": 8}, {"mcvs": [[1, 4, 1422], [1, 4, 1411], [1, 4, 1412]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1422], "distinct_count": 13}, {"mcvs": [[1, 4, 1441], [1, 4, 1424], [1, 4, 1425]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1441], "distinct_count": 19}, {"mcvs": [[1, 4, 1457], [1, 4, 1443], [1, 4, 1444]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1457], "distinct_count": 16}, {"mcvs": [[1, 4, 1477], [1, 4, 1459], [1, 4, 1460]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1477], "distinct_count": 20}, {"mcvs": [[1, 4, 1482], [1, 4, 1479], [1, 4, 1480]], "row_count": 5, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1482], "distinct_count": 5}, {"mcvs": [[1, 4, 1490], [1, 4, 1484], [1, 4, 1485]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1490], "distinct_count": 8}, {"mcvs": [[1, 4, 1506], [1, 4, 1492], [1, 4, 1493]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1506], "distinct_count": 16}, {"mcvs": [[1, 4, 1533], [1, 4, 1508], [1, 4, 1509]], "row_count": 27, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1533], "distinct_count": 27}, {"mcvs": [[1, 4, 1552], [1, 4, 1535], [1, 4, 1536]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1552], "distinct_count": 19}, {"mcvs": [[1, 4, 1564], [1, 4, 1554], [1, 4, 1555]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1564], "distinct_count": 12}, {"mcvs": [[1, 4, 1583], [1, 4, 1566], [1, 4, 1567]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1583], "distinct_count": 19}, {"mcvs": [[1, 4, 1592], [1, 4, 1585], [1, 4, 1586]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1592], "distinct_count": 9}, {"mcvs": [[1, 4, 1610], [1, 4, 1594], [1, 4, 1595]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1610], "distinct_count": 18}, {"mcvs": [[1, 4, 1627], [1, 4, 1612], [1, 4, 1613]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1627], "distinct_count": 17}, {"mcvs": [[1, 4, 1644], [1, 4, 1629], [1, 4, 1630]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1644], "distinct_count": 17}, {"mcvs": [[1, 4, 1661], [1, 4, 1646], [1, 4, 1647]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1661], "distinct_count": 17}, {"mcvs": [[1, 4, 1670], [1, 4, 1663], [1, 4, 1664]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1670], "distinct_count": 9}, {"mcvs": [[1, 4, 1687], [1, 4, 1672], [1, 4, 1673]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1687], "distinct_count": 17}, {"mcvs": [[1, 4, 1699], [1, 4, 1689], [1, 4, 1690]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1699], "distinct_count": 12}, {"mcvs": [[1, 4, 1714], [1, 4, 1701], [1, 4, 1702]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1714], "distinct_count": 15}, {"mcvs": [[1, 4, 1729], [1, 4, 1716], [1, 4, 1717]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1729], "distinct_count": 15}, {"mcvs": [[1, 4, 1744], [1, 4, 1731], [1, 4, 1732]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1744], "distinct_count": 15}, {"mcvs": [[1, 4, 1757], [1, 4, 1746], [1, 4, 1747]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1757], "distinct_count": 13}, {"mcvs": [[1, 4, 1771], [1, 4, 1759], [1, 4, 1760]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1771], "distinct_count": 14}, {"mcvs": [[1, 4, 1787], [1, 4, 1773], [1, 4, 1774]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1787], "distinct_count": 16}, {"mcvs": [[1, 4, 1806], [1, 4, 1789], [1, 4, 1790]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1806], "distinct_count": 19}, {"mcvs": [[1, 4, 1823], [1, 4, 1808], [1, 4, 1809]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1823], "distinct_count": 17}, {"mcvs": [[1, 4, 1828], [1, 4, 1825], [1, 4, 1826]], "row_count": 5, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1828], "distinct_count": 5}, {"mcvs": [[1, 4, 1844], [1, 4, 1830], [1, 4, 1831]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1844], "distinct_count": 16}, {"mcvs": [[1, 4, 1856], [1, 4, 1846], [1, 4, 1847]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1856], "distinct_count": 12}, {"mcvs": [[1, 4, 1876], [1, 4, 1858], [1, 4, 1859]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1876], "distinct_count": 20}, {"mcvs": [[1, 4, 1892], [1, 4, 1878], [1, 4, 1879]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1892], "distinct_count": 16}, {"mcvs": [[1, 4, 1901], [1, 4, 1894], [1, 4, 1895]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1901], "distinct_count": 9}, {"mcvs": [[1, 4, 1915], [1, 4, 1903], [1, 4, 1904]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1915], "distinct_count": 14}, {"mcvs": [[1, 4, 1935], [1, 4, 1917], [1, 4, 1918]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1935], "distinct_count": 20}, {"mcvs": [[1, 4, 1949], [1, 4, 1937], [1, 4, 1938]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1949], "distinct_count": 14}, {"mcvs": [[1, 4, 1962], [1, 4, 1951], [1, 4, 1952]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1962], "distinct_count": 13}, {"mcvs": [[1, 4, 1977], [1, 4, 1964], [1, 4, 1965]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1977], "distinct_count": 15}, {"mcvs": [[1, 4, 1985], [1, 4, 1979], [1, 4, 1980]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1985], "distinct_count": 8}, {"mcvs": [[1, 4, 2001], [1, 4, 1987], [1, 4, 1988]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2001], "distinct_count": 16}, {"mcvs": [[1, 4, 2021], [1, 4, 2003], [1, 4, 2004]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2021], "distinct_count": 20}, {"mcvs": [[1, 4, 2037], [1, 4, 2023], [1, 4, 2024]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2037], "distinct_count": 16}, {"mcvs": [[1, 4, 2061], [1, 4, 2039], [1, 4, 2040]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2061], "distinct_count": 24}, {"mcvs": [[1, 4, 2074], [1, 4, 2063], [1, 4, 2064]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2074], "distinct_count": 13}, {"mcvs": [[1, 4, 2086], [1, 4, 2076], [1, 4, 2077]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2086], "distinct_count": 12}, {"mcvs": [[1, 4, 2098], [1, 4, 2088], [1, 4, 2089]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2098], "distinct_count": 12}, {"mcvs": [[1, 4, 2116], [1, 4, 2100], [1, 4, 2101]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2116], "distinct_count": 18}, {"mcvs": [[1, 4, 2135], [1, 4, 2118], [1, 4, 2119]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2135], "distinct_count": 19}, {"mcvs": [[1, 4, 2151], [1, 4, 2137], [1, 4, 2138]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2151], "distinct_count": 16}, {"mcvs": [[1, 4, 2167], [1, 4, 2153], [1, 4, 2154]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2167], "distinct_count": 16}, {"mcvs": [[1, 4, 2183], [1, 4, 2169], [1, 4, 2170]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2183], "distinct_count": 16}, {"mcvs": [[1, 4, 2203], [1, 4, 2185], [1, 4, 2186]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2203], "distinct_count": 20}, {"mcvs": [[1, 4, 2214], [1, 4, 2205], [1, 4, 2206]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2214], "distinct_count": 11}, {"mcvs": [[1, 4, 2232], [1, 4, 2216], [1, 4, 2217]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2232], "distinct_count": 18}, {"mcvs": [[1, 4, 2248], [1, 4, 2234], [1, 4, 2235]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2248], "distinct_count": 16}, {"mcvs": [[1, 4, 2259], [1, 4, 2250], [1, 4, 2251]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2259], "distinct_count": 11}, {"mcvs": [[1, 4, 2275], [1, 4, 2261], [1, 4, 2262]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2275], "distinct_count": 16}, {"mcvs": [[1, 4, 2292], [1, 4, 2277], [1, 4, 2278]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2292], "distinct_count": 17}, {"mcvs": [[1, 4, 2306], [1, 4, 2294], [1, 4, 2295]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2306], "distinct_count": 14}, {"mcvs": [[1, 4, 2315], [1, 4, 2308], [1, 4, 2309]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2315], "distinct_count": 9}, {"mcvs": [[1, 4, 2334], [1, 4, 2317], [1, 4, 2318]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2334], "distinct_count": 19}, {"mcvs": [[1, 4, 2354], [1, 4, 2336], [1, 4, 2337]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2354], "distinct_count": 20}, {"mcvs": [[1, 4, 2363], [1, 4, 2356], [1, 4, 2357]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2363], "distinct_count": 9}, {"mcvs": [[1, 4, 2369], [1, 4, 2365], [1, 4, 2366]], "row_count": 6, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2369], "distinct_count": 6}, {"mcvs": [[1, 4, 2388], [1, 4, 2371], [1, 4, 2372]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2388], "distinct_count": 19}, {"mcvs": [[1, 4, 2400], [1, 4, 2390], [1, 4, 2391]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2400], "distinct_count": 12}, {"mcvs": [[1, 4, 2419], [1, 4, 2402], [1, 4, 2403]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2419], "distinct_count": 19}, {"mcvs": [[1, 4, 2435], [1, 4, 2421], [1, 4, 2422]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2435], "distinct_count": 16}, {"mcvs": [[1, 4, 2445], [1, 4, 2437], [1, 4, 2438]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2445], "distinct_count": 10}, {"mcvs": [[1, 4, 2465], [1, 4, 2447], [1, 4, 2448]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2465], "distinct_count": 20}, {"mcvs": [[1, 4, 2473], [1, 4, 2467], [1, 4, 2468]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2473], "distinct_count": 8}, {"mcvs": [[1, 4, 2488], [1, 4, 2475], [1, 4, 2476]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2488], "distinct_count": 15}, {"mcvs": [[1, 4, 2509], [1, 4, 2490], [1, 4, 2491]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2509], "distinct_count": 21}, {"mcvs": [[1, 4, 2522], [1, 4, 2511], [1, 4, 2512]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2522], "distinct_count": 13}, {"mcvs": [[1, 4, 2535], [1, 4, 2524], [1, 4, 2525]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2535], "distinct_count": 13}, {"mcvs": [[1, 4, 2561], [1, 4, 2537], [1, 4, 2538]], "row_count": 26, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2561], "distinct_count": 26}, {"mcvs": [[1, 4, 2575], [1, 4, 2563], [1, 4, 2564]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2575], "distinct_count": 14}, {"mcvs": [[1, 4, 2590], [1, 4, 2577], [1, 4, 2578]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2590], "distinct_count": 15}, {"mcvs": [[1, 4, 2597], [1, 4, 2592], [1, 4, 2593]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2597], "distinct_count": 7}, {"mcvs": [[1, 4, 2618], [1, 4, 2599], [1, 4, 2600]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2618], "distinct_count": 21}, {"mcvs": [[1, 4, 2636], [1, 4, 2620], [1, 4, 2621]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2636], "distinct_count": 18}, {"mcvs": [[1, 4, 2649], [1, 4, 2638], [1, 4, 2639]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2649], "distinct_count": 13}, {"mcvs": [[1, 4, 2662], [1, 4, 2651], [1, 4, 2652]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2662], "distinct_count": 13}, {"mcvs": [[1, 4, 2673], [1, 4, 2664], [1, 4, 2665]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2673], "distinct_count": 11}, {"mcvs": [[1, 4, 2698], [1, 4, 2675], [1, 4, 2676]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2698], "distinct_count": 25}, {"mcvs": [[1, 4, 2712], [1, 4, 2700], [1, 4, 2701]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2712], "distinct_count": 14}, {"mcvs": [[1, 4, 2723], [1, 4, 2714], [1, 4, 2715]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2723], "distinct_count": 11}, {"mcvs": [[1, 4, 2742], [1, 4, 2725], [1, 4, 2726]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2742], "distinct_count": 19}, {"mcvs": [[1, 4, 2762], [1, 4, 2744], [1, 4, 2745]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2762], "distinct_count": 20}, {"mcvs": [[1, 4, 2774], [1, 4, 2764], [1, 4, 2765]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2774], "distinct_count": 12}, {"mcvs": [[1, 4, 2792], [1, 4, 2776], [1, 4, 2777]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2792], "distinct_count": 18}, {"mcvs": [[1, 4, 2810], [1, 4, 2794], [1, 4, 2795]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2810], "distinct_count": 18}, {"mcvs": [[1, 4, 2828], [1, 4, 2812], [1, 4, 2813]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2828], "distinct_count": 18}, {"mcvs": [[1, 4, 2841], [1, 4, 2830], [1, 4, 2831]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2841], "distinct_count": 13}, {"mcvs": [[1, 4, 2859], [1, 4, 2843], [1, 4, 2844]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2859], "distinct_count": 18}, {"mcvs": [[1, 4, 2880], [1, 4, 2861], [1, 4, 2862]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2880], "distinct_count": 21}, {"mcvs": [[1, 4, 2897], [1, 4, 2882], [1, 4, 2883]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2897], "distinct_count": 17}, {"mcvs": [[1, 4, 2915], [1, 4, 2899], [1, 4, 2900]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2915], "distinct_count": 18}, {"mcvs": [[1, 4, 2932], [1, 4, 2917], [1, 4, 2918]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2932], "distinct_count": 17}, {"mcvs": [[1, 4, 2946], [1, 4, 2934], [1, 4, 2935]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2946], "distinct_count": 14}, {"mcvs": [[1, 4, 2965], [1, 4, 2948], [1, 4, 2949]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2965], "distinct_count": 19}, {"mcvs": [[1, 4, 2983], [1, 4, 2967], [1, 4, 2968]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2983], "distinct_count": 18}, {"mcvs": [[1, 4, 2990], [1, 4, 2985], [1, 4, 2986]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2990], "distinct_count": 7}, {"mcvs": [[1, 5, 11], [1, 4, 2992], [1, 4, 2993]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 11], "distinct_count": 21}, {"mcvs": [[1, 5, 27], [1, 5, 13], [1, 5, 14]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 27], "distinct_count": 16}, {"mcvs": [[1, 5, 40], [1, 5, 29], [1, 5, 30]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 40], "distinct_count": 13}, {"mcvs": [[1, 5, 63], [1, 5, 42], [1, 5, 43]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 63], "distinct_count": 23}, {"mcvs": [[1, 5, 74], [1, 5, 65], [1, 5, 66]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 74], "distinct_count": 11}, {"mcvs": [[1, 5, 85], [1, 5, 76], [1, 5, 77]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 85], "distinct_count": 11}, {"mcvs": [[1, 5, 97], [1, 5, 87], [1, 5, 88]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 97], "distinct_count": 12}, {"mcvs": [[1, 5, 114], [1, 5, 99], [1, 5, 100]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 114], "distinct_count": 17}, {"mcvs": [[1, 5, 128], [1, 5, 116], [1, 5, 117]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 128], "distinct_count": 14}, {"mcvs": [[1, 5, 139], [1, 5, 130], [1, 5, 131]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 139], "distinct_count": 11}, {"mcvs": [[1, 5, 156], [1, 5, 141], [1, 5, 142]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 156], "distinct_count": 17}, {"mcvs": [[1, 5, 175], [1, 5, 158], [1, 5, 159]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 175], "distinct_count": 19}, {"mcvs": [[1, 5, 193], [1, 5, 177], [1, 5, 178]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 193], "distinct_count": 18}, {"mcvs": [[1, 5, 206], [1, 5, 195], [1, 5, 196]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 206], "distinct_count": 13}, {"mcvs": [[1, 5, 213], [1, 5, 208], [1, 5, 209]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 213], "distinct_count": 7}, {"mcvs": [[1, 5, 230], [1, 5, 215], [1, 5, 216]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 230], "distinct_count": 17}, {"mcvs": [[1, 5, 255], [1, 5, 232], [1, 5, 233]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 255], "distinct_count": 25}, {"mcvs": [[1, 5, 270], [1, 5, 257], [1, 5, 258]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 270], "distinct_count": 15}, {"mcvs": [[1, 5, 282], [1, 5, 272], [1, 5, 273]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 282], "distinct_count": 12}, {"mcvs": [[1, 5, 296], [1, 5, 284], [1, 5, 285]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 296], "distinct_count": 14}, {"mcvs": [[1, 5, 314], [1, 5, 298], [1, 5, 299]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 314], "distinct_count": 18}, {"mcvs": [[1, 5, 327], [1, 5, 316], [1, 5, 317]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 327], "distinct_count": 13}, {"mcvs": [[1, 5, 345], [1, 5, 329], [1, 5, 330]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 345], "distinct_count": 18}, {"mcvs": [[1, 5, 356], [1, 5, 347], [1, 5, 348]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 356], "distinct_count": 11}, {"mcvs": [[1, 5, 371], [1, 5, 358], [1, 5, 359]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 371], "distinct_count": 15}, {"mcvs": [[1, 5, 382], [1, 5, 373], [1, 5, 374]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 382], "distinct_count": 11}, {"mcvs": [[1, 5, 398], [1, 5, 384], [1, 5, 385]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 398], "distinct_count": 16}, {"mcvs": [[1, 5, 409], [1, 5, 400], [1, 5, 401]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 409], "distinct_count": 11}, {"mcvs": [[1, 5, 422], [1, 5, 411], [1, 5, 412]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 422], "distinct_count": 13}, {"mcvs": [[1, 5, 445], [1, 5, 424], [1, 5, 425]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 445], "distinct_count": 23}, {"mcvs": [[1, 5, 463], [1, 5, 447], [1, 5, 448]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 463], "distinct_count": 18}, {"mcvs": [[1, 5, 481], [1, 5, 465], [1, 5, 466]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 481], "distinct_count": 18}, {"mcvs": [[1, 5, 496], [1, 5, 483], [1, 5, 484]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 496], "distinct_count": 15}, {"mcvs": [[1, 5, 505], [1, 5, 498], [1, 5, 499]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 505], "distinct_count": 9}, {"mcvs": [[1, 5, 523], [1, 5, 507], [1, 5, 508]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 523], "distinct_count": 18}, {"mcvs": [[1, 5, 542], [1, 5, 525], [1, 5, 526]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 542], "distinct_count": 19}, {"mcvs": [[1, 5, 563], [1, 5, 544], [1, 5, 545]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 563], "distinct_count": 21}, {"mcvs": [[1, 5, 583], [1, 5, 565], [1, 5, 566]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 583], "distinct_count": 20}, {"mcvs": [[1, 5, 605], [1, 5, 585], [1, 5, 586]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 605], "distinct_count": 22}, {"mcvs": [[1, 5, 623], [1, 5, 607], [1, 5, 608]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 623], "distinct_count": 18}, {"mcvs": [[1, 5, 635], [1, 5, 625], [1, 5, 626]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 635], "distinct_count": 12}, {"mcvs": [[1, 5, 652], [1, 5, 637], [1, 5, 638]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 652], "distinct_count": 17}, {"mcvs": [[1, 5, 661], [1, 5, 654], [1, 5, 655]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 661], "distinct_count": 9}, {"mcvs": [[1, 5, 675], [1, 5, 663], [1, 5, 664]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 675], "distinct_count": 14}, {"mcvs": [[1, 5, 691], [1, 5, 677], [1, 5, 678]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 691], "distinct_count": 16}, {"mcvs": [[1, 5, 712], [1, 5, 693], [1, 5, 694]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 712], "distinct_count": 21}, {"mcvs": [[1, 5, 728], [1, 5, 714], [1, 5, 715]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 728], "distinct_count": 16}, {"mcvs": [[1, 5, 745], [1, 5, 730], [1, 5, 731]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 745], "distinct_count": 17}, {"mcvs": [[1, 5, 763], [1, 5, 747], [1, 5, 748]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 763], "distinct_count": 18}, {"mcvs": [[1, 5, 780], [1, 5, 765], [1, 5, 766]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 780], "distinct_count": 17}, {"mcvs": [[1, 5, 794], [1, 5, 782], [1, 5, 783]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 794], "distinct_count": 14}, {"mcvs": [[1, 5, 810], [1, 5, 796], [1, 5, 797]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 810], "distinct_count": 16}, {"mcvs": [[1, 5, 823], [1, 5, 812], [1, 5, 813]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 823], "distinct_count": 13}, {"mcvs": [[1, 5, 845], [1, 5, 825], [1, 5, 826]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 845], "distinct_count": 22}, {"mcvs": [[1, 5, 854], [1, 5, 847], [1, 5, 848]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 854], "distinct_count": 9}, {"mcvs": [[1, 5, 866], [1, 5, 856], [1, 5, 857]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 866], "distinct_count": 12}, {"mcvs": [[1, 5, 881], [1, 5, 868], [1, 5, 869]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 881], "distinct_count": 15}, {"mcvs": [[1, 5, 893], [1, 5, 883], [1, 5, 884]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 893], "distinct_count": 12}, {"mcvs": [[1, 5, 911], [1, 5, 895], [1, 5, 896]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 911], "distinct_count": 18}, {"mcvs": [[1, 5, 928], [1, 5, 913], [1, 5, 914]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 928], "distinct_count": 17}, {"mcvs": [[1, 5, 942], [1, 5, 930], [1, 5, 931]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 942], "distinct_count": 14}, {"mcvs": [[1, 5, 956], [1, 5, 944], [1, 5, 945]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 956], "distinct_count": 14}, {"mcvs": [[1, 5, 972], [1, 5, 958], [1, 5, 959]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 972], "distinct_count": 16}, {"mcvs": [[1, 5, 991], [1, 5, 974], [1, 5, 975]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 991], "distinct_count": 19}, {"mcvs": [[1, 5, 1008], [1, 5, 993], [1, 5, 994]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1008], "distinct_count": 17}, {"mcvs": [[1, 5, 1022], [1, 5, 1010], [1, 5, 1011]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1022], "distinct_count": 14}, {"mcvs": [[1, 5, 1042], [1, 5, 1024], [1, 5, 1025]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1042], "distinct_count": 20}, {"mcvs": [[1, 5, 1055], [1, 5, 1044], [1, 5, 1045]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1055], "distinct_count": 13}, {"mcvs": [[1, 5, 1063], [1, 5, 1057], [1, 5, 1058]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1063], "distinct_count": 8}, {"mcvs": [[1, 5, 1086], [1, 5, 1065], [1, 5, 1066]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1086], "distinct_count": 23}, {"mcvs": [[1, 5, 1107], [1, 5, 1088], [1, 5, 1089]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1107], "distinct_count": 21}, {"mcvs": [[1, 5, 1123], [1, 5, 1109], [1, 5, 1110]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1123], "distinct_count": 16}, {"mcvs": [[1, 5, 1142], [1, 5, 1125], [1, 5, 1126]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1142], "distinct_count": 19}, {"mcvs": [[1, 5, 1162], [1, 5, 1144], [1, 5, 1145]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1162], "distinct_count": 20}, {"mcvs": [[1, 5, 1176], [1, 5, 1164], [1, 5, 1165]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1176], "distinct_count": 14}, {"mcvs": [[1, 5, 1195], [1, 5, 1178], [1, 5, 1179]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1195], "distinct_count": 19}, {"mcvs": [[1, 5, 1215], [1, 5, 1197], [1, 5, 1198]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1215], "distinct_count": 20}, {"mcvs": [[1, 5, 1233], [1, 5, 1217], [1, 5, 1218]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1233], "distinct_count": 18}, {"mcvs": [[1, 5, 1240], [1, 5, 1235], [1, 5, 1236]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1240], "distinct_count": 7}, {"mcvs": [[1, 5, 1249], [1, 5, 1242], [1, 5, 1243]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1249], "distinct_count": 9}, {"mcvs": [[1, 5, 1267], [1, 5, 1251], [1, 5, 1252]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1267], "distinct_count": 18}, {"mcvs": [[1, 5, 1285], [1, 5, 1269], [1, 5, 1270]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1285], "distinct_count": 18}, {"mcvs": [[1, 5, 1304], [1, 5, 1287], [1, 5, 1288]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1304], "distinct_count": 19}, {"mcvs": [[1, 5, 1321], [1, 5, 1306], [1, 5, 1307]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1321], "distinct_count": 17}, {"mcvs": [[1, 5, 1333], [1, 5, 1323], [1, 5, 1324]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1333], "distinct_count": 12}, {"mcvs": [[1, 5, 1348], [1, 5, 1335], [1, 5, 1336]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1348], "distinct_count": 15}, {"mcvs": [[1, 5, 1358], [1, 5, 1350], [1, 5, 1351]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1358], "distinct_count": 10}, {"mcvs": [[1, 5, 1371], [1, 5, 1360], [1, 5, 1361]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1371], "distinct_count": 13}, {"mcvs": [[1, 5, 1398], [1, 5, 1373], [1, 5, 1374]], "row_count": 27, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1398], "distinct_count": 27}, {"mcvs": [[1, 5, 1415], [1, 5, 1400], [1, 5, 1401]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1415], "distinct_count": 17}, {"mcvs": [[1, 5, 1433], [1, 5, 1417], [1, 5, 1418]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1433], "distinct_count": 18}, {"mcvs": [[1, 5, 1445], [1, 5, 1435], [1, 5, 1436]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1445], "distinct_count": 12}, {"mcvs": [[1, 5, 1463], [1, 5, 1447], [1, 5, 1448]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1463], "distinct_count": 18}, {"mcvs": [[1, 5, 1477], [1, 5, 1465], [1, 5, 1466]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1477], "distinct_count": 14}, {"mcvs": [[1, 5, 1493], [1, 5, 1479], [1, 5, 1480]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1493], "distinct_count": 16}, {"mcvs": [[1, 5, 1506], [1, 5, 1495], [1, 5, 1496]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1506], "distinct_count": 13}, {"mcvs": [[1, 5, 1520], [1, 5, 1508], [1, 5, 1509]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1520], "distinct_count": 14}, {"mcvs": [[1, 5, 1532], [1, 5, 1522], [1, 5, 1523]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1532], "distinct_count": 12}, {"mcvs": [[1, 5, 1546], [1, 5, 1534], [1, 5, 1535]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1546], "distinct_count": 14}, {"mcvs": [[1, 5, 1569], [1, 5, 1548], [1, 5, 1549]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1569], "distinct_count": 23}, {"mcvs": [[1, 5, 1582], [1, 5, 1571], [1, 5, 1572]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1582], "distinct_count": 13}, {"mcvs": [[1, 5, 1604], [1, 5, 1584], [1, 5, 1585]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1604], "distinct_count": 22}, {"mcvs": [[1, 5, 1616], [1, 5, 1606], [1, 5, 1607]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1616], "distinct_count": 12}, {"mcvs": [[1, 5, 1630], [1, 5, 1618], [1, 5, 1619]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1630], "distinct_count": 14}, {"mcvs": [[1, 5, 1652], [1, 5, 1632], [1, 5, 1633]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1652], "distinct_count": 22}, {"mcvs": [[1, 5, 1669], [1, 5, 1654], [1, 5, 1655]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1669], "distinct_count": 17}, {"mcvs": [[1, 5, 1683], [1, 5, 1671], [1, 5, 1672]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1683], "distinct_count": 14}, {"mcvs": [[1, 5, 1699], [1, 5, 1685], [1, 5, 1686]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1699], "distinct_count": 16}, {"mcvs": [[1, 5, 1714], [1, 5, 1701], [1, 5, 1702]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1714], "distinct_count": 15}, {"mcvs": [[1, 5, 1728], [1, 5, 1716], [1, 5, 1717]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1728], "distinct_count": 14}, {"mcvs": [[1, 5, 1745], [1, 5, 1730], [1, 5, 1731]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1745], "distinct_count": 17}, {"mcvs": [[1, 5, 1762], [1, 5, 1747], [1, 5, 1748]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1762], "distinct_count": 17}, {"mcvs": [[1, 5, 1779], [1, 5, 1764], [1, 5, 1765]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1779], "distinct_count": 17}, {"mcvs": [[1, 5, 1794], [1, 5, 1781], [1, 5, 1782]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1794], "distinct_count": 15}, {"mcvs": [[1, 5, 1813], [1, 5, 1796], [1, 5, 1797]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1813], "distinct_count": 19}, {"mcvs": [[1, 5, 1831], [1, 5, 1815], [1, 5, 1816]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1831], "distinct_count": 18}, {"mcvs": [[1, 5, 1846], [1, 5, 1833], [1, 5, 1834]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1846], "distinct_count": 15}, {"mcvs": [[1, 5, 1851], [1, 5, 1848], [1, 5, 1849]], "row_count": 5, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1851], "distinct_count": 5}, {"mcvs": [[1, 5, 1862], [1, 5, 1853], [1, 5, 1854]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1862], "distinct_count": 11}, {"mcvs": [[1, 5, 1883], [1, 5, 1864], [1, 5, 1865]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1883], "distinct_count": 21}, {"mcvs": [[1, 5, 1902], [1, 5, 1885], [1, 5, 1886]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1902], "distinct_count": 19}, {"mcvs": [[1, 5, 1919], [1, 5, 1904], [1, 5, 1905]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1919], "distinct_count": 17}, {"mcvs": [[1, 5, 1928], [1, 5, 1921], [1, 5, 1922]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1928], "distinct_count": 9}, {"mcvs": [[1, 5, 1953], [1, 5, 1930], [1, 5, 1931]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1953], "distinct_count": 25}, {"mcvs": [[1, 5, 1975], [1, 5, 1955], [1, 5, 1956]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1975], "distinct_count": 22}, {"mcvs": [[1, 5, 1991], [1, 5, 1977], [1, 5, 1978]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1991], "distinct_count": 16}, {"mcvs": [[1, 5, 2004], [1, 5, 1993], [1, 5, 1994]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2004], "distinct_count": 13}, {"mcvs": [[1, 5, 2019], [1, 5, 2006], [1, 5, 2007]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2019], "distinct_count": 15}, {"mcvs": [[1, 5, 2034], [1, 5, 2021], [1, 5, 2022]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2034], "distinct_count": 15}, {"mcvs": [[1, 5, 2050], [1, 5, 2036], [1, 5, 2037]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2050], "distinct_count": 16}, {"mcvs": [[1, 5, 2067], [1, 5, 2052], [1, 5, 2053]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2067], "distinct_count": 17}, {"mcvs": [[1, 5, 2080], [1, 5, 2069], [1, 5, 2070]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2080], "distinct_count": 13}, {"mcvs": [[1, 5, 2097], [1, 5, 2082], [1, 5, 2083]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2097], "distinct_count": 17}, {"mcvs": [[1, 5, 2112], [1, 5, 2099], [1, 5, 2100]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2112], "distinct_count": 15}, {"mcvs": [[1, 5, 2127], [1, 5, 2114], [1, 5, 2115]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2127], "distinct_count": 15}, {"mcvs": [[1, 5, 2143], [1, 5, 2129], [1, 5, 2130]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2143], "distinct_count": 16}, {"mcvs": [[1, 5, 2159], [1, 5, 2145], [1, 5, 2146]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2159], "distinct_count": 16}, {"mcvs": [[1, 5, 2180], [1, 5, 2161], [1, 5, 2162]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2180], "distinct_count": 21}, {"mcvs": [[1, 5, 2194], [1, 5, 2182], [1, 5, 2183]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2194], "distinct_count": 14}, {"mcvs": [[1, 5, 2213], [1, 5, 2196], [1, 5, 2197]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2213], "distinct_count": 19}, {"mcvs": [[1, 5, 2225], [1, 5, 2215], [1, 5, 2216]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2225], "distinct_count": 12}, {"mcvs": [[1, 5, 2239], [1, 5, 2227], [1, 5, 2228]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2239], "distinct_count": 14}, {"mcvs": [[1, 5, 2253], [1, 5, 2241], [1, 5, 2242]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2253], "distinct_count": 14}, {"mcvs": [[1, 5, 2269], [1, 5, 2255], [1, 5, 2256]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2269], "distinct_count": 16}, {"mcvs": [[1, 5, 2275], [1, 5, 2271], [1, 5, 2272]], "row_count": 6, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2275], "distinct_count": 6}, {"mcvs": [[1, 5, 2290], [1, 5, 2277], [1, 5, 2278]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2290], "distinct_count": 15}, {"mcvs": [[1, 5, 2308], [1, 5, 2292], [1, 5, 2293]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2308], "distinct_count": 18}, {"mcvs": [[1, 5, 2323], [1, 5, 2310], [1, 5, 2311]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2323], "distinct_count": 15}, {"mcvs": [[1, 5, 2340], [1, 5, 2325], [1, 5, 2326]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2340], "distinct_count": 17}, {"mcvs": [[1, 5, 2352], [1, 5, 2342], [1, 5, 2343]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2352], "distinct_count": 12}, {"mcvs": [[1, 5, 2365], [1, 5, 2354], [1, 5, 2355]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2365], "distinct_count": 13}, {"mcvs": [[1, 5, 2380], [1, 5, 2367], [1, 5, 2368]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2380], "distinct_count": 15}, {"mcvs": [[1, 5, 2399], [1, 5, 2382], [1, 5, 2383]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2399], "distinct_count": 19}, {"mcvs": [[1, 5, 2412], [1, 5, 2401], [1, 5, 2402]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2412], "distinct_count": 13}, {"mcvs": [[1, 5, 2432], [1, 5, 2414], [1, 5, 2415]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2432], "distinct_count": 20}, {"mcvs": [[1, 5, 2445], [1, 5, 2434], [1, 5, 2435]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2445], "distinct_count": 13}, {"mcvs": [[1, 5, 2459], [1, 5, 2447], [1, 5, 2448]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2459], "distinct_count": 14}, {"mcvs": [[1, 5, 2474], [1, 5, 2461], [1, 5, 2462]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2474], "distinct_count": 15}, {"mcvs": [[1, 5, 2495], [1, 5, 2476], [1, 5, 2477]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2495], "distinct_count": 21}, {"mcvs": [[1, 5, 2510], [1, 5, 2497], [1, 5, 2498]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2510], "distinct_count": 15}, {"mcvs": [[1, 5, 2527], [1, 5, 2512], [1, 5, 2513]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2527], "distinct_count": 17}, {"mcvs": [[1, 5, 2544], [1, 5, 2529], [1, 5, 2530]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2544], "distinct_count": 17}, {"mcvs": [[1, 5, 2560], [1, 5, 2546], [1, 5, 2547]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2560], "distinct_count": 16}, {"mcvs": [[1, 5, 2571], [1, 5, 2562], [1, 5, 2563]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2571], "distinct_count": 11}, {"mcvs": [[1, 5, 2590], [1, 5, 2573], [1, 5, 2574]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2590], "distinct_count": 19}, {"mcvs": [[1, 5, 2610], [1, 5, 2592], [1, 5, 2593]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2610], "distinct_count": 20}, {"mcvs": [[1, 5, 2623], [1, 5, 2612], [1, 5, 2613]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2623], "distinct_count": 13}, {"mcvs": [[1, 5, 2636], [1, 5, 2625], [1, 5, 2626]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2636], "distinct_count": 13}, {"mcvs": [[1, 5, 2648], [1, 5, 2638], [1, 5, 2639]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2648], "distinct_count": 12}, {"mcvs": [[1, 5, 2665], [1, 5, 2650], [1, 5, 2651]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2665], "distinct_count": 17}, {"mcvs": [[1, 5, 2678], [1, 5, 2667], [1, 5, 2668]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2678], "distinct_count": 13}, {"mcvs": [[1, 5, 2699], [1, 5, 2680], [1, 5, 2681]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2699], "distinct_count": 21}, {"mcvs": [[1, 5, 2715], [1, 5, 2701], [1, 5, 2702]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2715], "distinct_count": 16}, {"mcvs": [[1, 5, 2728], [1, 5, 2717], [1, 5, 2718]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2728], "distinct_count": 13}, {"mcvs": [[1, 5, 2740], [1, 5, 2730], [1, 5, 2731]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2740], "distinct_count": 12}, {"mcvs": [[1, 5, 2752], [1, 5, 2742], [1, 5, 2743]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2752], "distinct_count": 12}, {"mcvs": [[1, 5, 2761], [1, 5, 2754], [1, 5, 2755]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2761], "distinct_count": 9}, {"mcvs": [[1, 5, 2775], [1, 5, 2763], [1, 5, 2764]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2775], "distinct_count": 14}, {"mcvs": [[1, 5, 2793], [1, 5, 2777], [1, 5, 2778]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2793], "distinct_count": 18}, {"mcvs": [[1, 5, 2805], [1, 5, 2795], [1, 5, 2796]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2805], "distinct_count": 12}, {"mcvs": [[1, 5, 2818], [1, 5, 2807], [1, 5, 2808]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2818], "distinct_count": 13}, {"mcvs": [[1, 5, 2831], [1, 5, 2820], [1, 5, 2821]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2831], "distinct_count": 13}, {"mcvs": [[1, 5, 2841], [1, 5, 2833], [1, 5, 2834]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2841], "distinct_count": 10}, {"mcvs": [[1, 5, 2848], [1, 5, 2843], [1, 5, 2844]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2848], "distinct_count": 7}, {"mcvs": [[1, 5, 2867], [1, 5, 2850], [1, 5, 2851]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2867], "distinct_count": 19}, {"mcvs": [[1, 5, 2885], [1, 5, 2869], [1, 5, 2870]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2885], "distinct_count": 18}, {"mcvs": [[1, 5, 2896], [1, 5, 2887], [1, 5, 2888]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2896], "distinct_count": 11}, {"mcvs": [[1, 5, 2915], [1, 5, 2898], [1, 5, 2899]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2915], "distinct_count": 19}, {"mcvs": [[1, 5, 2937], [1, 5, 2917], [1, 5, 2918]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2937], "distinct_count": 22}, {"mcvs": [[1, 5, 2957], [1, 5, 2939], [1, 5, 2940]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2957], "distinct_count": 20}, {"mcvs": [[1, 5, 2971], [1, 5, 2959], [1, 5, 2960]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2971], "distinct_count": 14}, {"mcvs": [[1, 5, 2981], [1, 5, 2973], [1, 5, 2974]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2981], "distinct_count": 10}, {"mcvs": [[1, 5, 2992], [1, 5, 2983], [1, 5, 2984]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2992], "distinct_count": 11}, {"mcvs": [[1, 6, 11], [1, 5, 2994], [1, 5, 2995]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 11], "distinct_count": 19}, {"mcvs": [[1, 6, 26], [1, 6, 13], [1, 6, 14]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 26], "distinct_count": 15}, {"mcvs": [[1, 6, 45], [1, 6, 28], [1, 6, 29]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 45], "distinct_count": 19}, {"mcvs": [[1, 6, 70], [1, 6, 47], [1, 6, 48]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 70], "distinct_count": 25}, {"mcvs": [[1, 6, 84], [1, 6, 72], [1, 6, 73]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 84], "distinct_count": 14}, {"mcvs": [[1, 6, 101], [1, 6, 86], [1, 6, 87]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 101], "distinct_count": 17}, {"mcvs": [[1, 6, 127], [1, 6, 103], [1, 6, 104]], "row_count": 26, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 127], "distinct_count": 26}, {"mcvs": [[1, 6, 138], [1, 6, 129], [1, 6, 130]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 138], "distinct_count": 11}, {"mcvs": [[1, 6, 157], [1, 6, 140], [1, 6, 141]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 157], "distinct_count": 19}, {"mcvs": [[1, 6, 172], [1, 6, 159], [1, 6, 160]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 172], "distinct_count": 15}, {"mcvs": [[1, 6, 187], [1, 6, 174], [1, 6, 175]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 187], "distinct_count": 15}, {"mcvs": [[1, 6, 207], [1, 6, 189], [1, 6, 190]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 207], "distinct_count": 20}, {"mcvs": [[1, 6, 219], [1, 6, 209], [1, 6, 210]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 219], "distinct_count": 12}, {"mcvs": [[1, 6, 241], [1, 6, 221], [1, 6, 222]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 241], "distinct_count": 22}, {"mcvs": [[1, 6, 257], [1, 6, 243], [1, 6, 244]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 257], "distinct_count": 16}, {"mcvs": [[1, 6, 271], [1, 6, 259], [1, 6, 260]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 271], "distinct_count": 14}, {"mcvs": [[1, 6, 289], [1, 6, 273], [1, 6, 274]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 289], "distinct_count": 18}, {"mcvs": [[1, 6, 305], [1, 6, 291], [1, 6, 292]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 305], "distinct_count": 16}, {"mcvs": [[1, 6, 314], [1, 6, 307], [1, 6, 308]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 314], "distinct_count": 9}, {"mcvs": [[1, 6, 333], [1, 6, 316], [1, 6, 317]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 333], "distinct_count": 19}, {"mcvs": [[1, 6, 354], [1, 6, 335], [1, 6, 336]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 354], "distinct_count": 21}, {"mcvs": [[1, 6, 372], [1, 6, 356], [1, 6, 357]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 372], "distinct_count": 18}, {"mcvs": [[1, 6, 389], [1, 6, 374], [1, 6, 375]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 389], "distinct_count": 17}, {"mcvs": [[1, 6, 402], [1, 6, 391], [1, 6, 392]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 402], "distinct_count": 13}, {"mcvs": [[1, 6, 416], [1, 6, 404], [1, 6, 405]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 416], "distinct_count": 14}, {"mcvs": [[1, 6, 434], [1, 6, 418], [1, 6, 419]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 434], "distinct_count": 18}, {"mcvs": [[1, 6, 453], [1, 6, 436], [1, 6, 437]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 453], "distinct_count": 19}, {"mcvs": [[1, 6, 467], [1, 6, 455], [1, 6, 456]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 467], "distinct_count": 14}, {"mcvs": [[1, 6, 487], [1, 6, 469], [1, 6, 470]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 487], "distinct_count": 20}, {"mcvs": [[1, 6, 507], [1, 6, 489], [1, 6, 490]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 507], "distinct_count": 20}, {"mcvs": [[1, 6, 519], [1, 6, 509], [1, 6, 510]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 519], "distinct_count": 12}, {"mcvs": [[1, 6, 537], [1, 6, 521], [1, 6, 522]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 537], "distinct_count": 18}, {"mcvs": [[1, 6, 556], [1, 6, 539], [1, 6, 540]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 556], "distinct_count": 19}, {"mcvs": [[1, 6, 575], [1, 6, 558], [1, 6, 559]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 575], "distinct_count": 19}, {"mcvs": [[1, 6, 587], [1, 6, 577], [1, 6, 578]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 587], "distinct_count": 12}, {"mcvs": [[1, 6, 607], [1, 6, 589], [1, 6, 590]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 607], "distinct_count": 20}, {"mcvs": [[1, 6, 629], [1, 6, 609], [1, 6, 610]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 629], "distinct_count": 22}, {"mcvs": [[1, 6, 640], [1, 6, 631], [1, 6, 632]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 640], "distinct_count": 11}, {"mcvs": [[1, 6, 656], [1, 6, 642], [1, 6, 643]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 656], "distinct_count": 16}, {"mcvs": [[1, 6, 665], [1, 6, 658], [1, 6, 659]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 665], "distinct_count": 9}, {"mcvs": [[1, 6, 681], [1, 6, 667], [1, 6, 668]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 681], "distinct_count": 16}, {"mcvs": [[1, 6, 692], [1, 6, 683], [1, 6, 684]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 692], "distinct_count": 11}, {"mcvs": [[1, 6, 714], [1, 6, 694], [1, 6, 695]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 714], "distinct_count": 22}, {"mcvs": [[1, 6, 733], [1, 6, 716], [1, 6, 717]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 733], "distinct_count": 19}, {"mcvs": [[1, 6, 750], [1, 6, 735], [1, 6, 736]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 750], "distinct_count": 17}, {"mcvs": [[1, 6, 770], [1, 6, 752], [1, 6, 753]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 770], "distinct_count": 20}, {"mcvs": [[1, 6, 787], [1, 6, 772], [1, 6, 773]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 787], "distinct_count": 17}, {"mcvs": [[1, 6, 803], [1, 6, 789], [1, 6, 790]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 803], "distinct_count": 16}, {"mcvs": [[1, 6, 826], [1, 6, 805], [1, 6, 806]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 826], "distinct_count": 23}, {"mcvs": [[1, 6, 839], [1, 6, 828], [1, 6, 829]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 839], "distinct_count": 13}, {"mcvs": [[1, 6, 857], [1, 6, 841], [1, 6, 842]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 857], "distinct_count": 18}, {"mcvs": [[1, 6, 880], [1, 6, 859], [1, 6, 860]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 880], "distinct_count": 23}, {"mcvs": [[1, 6, 892], [1, 6, 882], [1, 6, 883]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 892], "distinct_count": 12}, {"mcvs": [[1, 6, 913], [1, 6, 894], [1, 6, 895]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 913], "distinct_count": 21}, {"mcvs": [[1, 6, 929], [1, 6, 915], [1, 6, 916]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 929], "distinct_count": 16}, {"mcvs": [[1, 6, 936], [1, 6, 931], [1, 6, 932]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 936], "distinct_count": 7}, {"mcvs": [[1, 6, 957], [1, 6, 938], [1, 6, 939]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 957], "distinct_count": 21}, {"mcvs": [[1, 6, 977], [1, 6, 959], [1, 6, 960]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 977], "distinct_count": 20}, {"mcvs": [[1, 6, 996], [1, 6, 979], [1, 6, 980]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 996], "distinct_count": 19}, {"mcvs": [[1, 6, 1010], [1, 6, 998], [1, 6, 999]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1010], "distinct_count": 14}, {"mcvs": [[1, 6, 1023], [1, 6, 1012], [1, 6, 1013]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1023], "distinct_count": 13}, {"mcvs": [[1, 6, 1035], [1, 6, 1025], [1, 6, 1026]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1035], "distinct_count": 12}, {"mcvs": [[1, 6, 1054], [1, 6, 1037], [1, 6, 1038]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1054], "distinct_count": 19}, {"mcvs": [[1, 6, 1071], [1, 6, 1056], [1, 6, 1057]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1071], "distinct_count": 17}, {"mcvs": [[1, 6, 1089], [1, 6, 1073], [1, 6, 1074]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1089], "distinct_count": 18}, {"mcvs": [[1, 6, 1105], [1, 6, 1091], [1, 6, 1092]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1105], "distinct_count": 16}, {"mcvs": [[1, 6, 1122], [1, 6, 1107], [1, 6, 1108]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1122], "distinct_count": 17}, {"mcvs": [[1, 6, 1139], [1, 6, 1124], [1, 6, 1125]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1139], "distinct_count": 17}, {"mcvs": [[1, 6, 1156], [1, 6, 1141], [1, 6, 1142]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1156], "distinct_count": 17}, {"mcvs": [[1, 6, 1176], [1, 6, 1158], [1, 6, 1159]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1176], "distinct_count": 20}, {"mcvs": [[1, 6, 1192], [1, 6, 1178], [1, 6, 1179]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1192], "distinct_count": 16}, {"mcvs": [[1, 6, 1213], [1, 6, 1194], [1, 6, 1195]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1213], "distinct_count": 21}, {"mcvs": [[1, 6, 1229], [1, 6, 1215], [1, 6, 1216]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1229], "distinct_count": 16}, {"mcvs": [[1, 6, 1245], [1, 6, 1231], [1, 6, 1232]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1245], "distinct_count": 16}, {"mcvs": [[1, 6, 1260], [1, 6, 1247], [1, 6, 1248]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1260], "distinct_count": 15}, {"mcvs": [[1, 6, 1275], [1, 6, 1262], [1, 6, 1263]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1275], "distinct_count": 15}, {"mcvs": [[1, 6, 1288], [1, 6, 1277], [1, 6, 1278]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1288], "distinct_count": 13}, {"mcvs": [[1, 6, 1301], [1, 6, 1290], [1, 6, 1291]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1301], "distinct_count": 13}, {"mcvs": [[1, 6, 1312], [1, 6, 1303], [1, 6, 1304]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1312], "distinct_count": 11}, {"mcvs": [[1, 6, 1335], [1, 6, 1314], [1, 6, 1315]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1335], "distinct_count": 23}, {"mcvs": [[1, 6, 1349], [1, 6, 1337], [1, 6, 1338]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1349], "distinct_count": 14}, {"mcvs": [[1, 6, 1361], [1, 6, 1351], [1, 6, 1352]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1361], "distinct_count": 12}, {"mcvs": [[1, 6, 1379], [1, 6, 1363], [1, 6, 1364]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1379], "distinct_count": 18}, {"mcvs": [[1, 6, 1397], [1, 6, 1381], [1, 6, 1382]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1397], "distinct_count": 18}, {"mcvs": [[1, 6, 1412], [1, 6, 1399], [1, 6, 1400]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1412], "distinct_count": 15}, {"mcvs": [[1, 6, 1430], [1, 6, 1414], [1, 6, 1415]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1430], "distinct_count": 18}, {"mcvs": [[1, 6, 1446], [1, 6, 1432], [1, 6, 1433]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1446], "distinct_count": 16}, {"mcvs": [[1, 6, 1468], [1, 6, 1448], [1, 6, 1449]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1468], "distinct_count": 22}, {"mcvs": [[1, 6, 1486], [1, 6, 1470], [1, 6, 1471]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1486], "distinct_count": 18}, {"mcvs": [[1, 6, 1493], [1, 6, 1488], [1, 6, 1489]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1493], "distinct_count": 7}, {"mcvs": [[1, 6, 1505], [1, 6, 1495], [1, 6, 1496]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1505], "distinct_count": 12}, {"mcvs": [[1, 6, 1523], [1, 6, 1507], [1, 6, 1508]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1523], "distinct_count": 18}, {"mcvs": [[1, 6, 1545], [1, 6, 1525], [1, 6, 1526]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1545], "distinct_count": 22}, {"mcvs": [[1, 6, 1564], [1, 6, 1547], [1, 6, 1548]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1564], "distinct_count": 19}, {"mcvs": [[1, 6, 1585], [1, 6, 1566], [1, 6, 1567]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1585], "distinct_count": 21}, {"mcvs": [[1, 6, 1600], [1, 6, 1587], [1, 6, 1588]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1600], "distinct_count": 15}, {"mcvs": [[1, 6, 1614], [1, 6, 1602], [1, 6, 1603]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1614], "distinct_count": 14}, {"mcvs": [[1, 6, 1628], [1, 6, 1616], [1, 6, 1617]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1628], "distinct_count": 14}, {"mcvs": [[1, 6, 1645], [1, 6, 1630], [1, 6, 1631]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1645], "distinct_count": 17}, {"mcvs": [[1, 6, 1664], [1, 6, 1647], [1, 6, 1648]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1664], "distinct_count": 19}, {"mcvs": [[1, 6, 1677], [1, 6, 1666], [1, 6, 1667]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1677], "distinct_count": 13}, {"mcvs": [[1, 6, 1695], [1, 6, 1679], [1, 6, 1680]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1695], "distinct_count": 18}, {"mcvs": [[1, 6, 1706], [1, 6, 1697], [1, 6, 1698]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1706], "distinct_count": 11}, {"mcvs": [[1, 6, 1728], [1, 6, 1708], [1, 6, 1709]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1728], "distinct_count": 22}, {"mcvs": [[1, 6, 1741], [1, 6, 1730], [1, 6, 1731]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1741], "distinct_count": 13}, {"mcvs": [[1, 6, 1754], [1, 6, 1743], [1, 6, 1744]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1754], "distinct_count": 13}, {"mcvs": [[1, 6, 1768], [1, 6, 1756], [1, 6, 1757]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1768], "distinct_count": 14}, {"mcvs": [[1, 6, 1787], [1, 6, 1770], [1, 6, 1771]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1787], "distinct_count": 19}, {"mcvs": [[1, 6, 1804], [1, 6, 1789], [1, 6, 1790]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1804], "distinct_count": 17}, {"mcvs": [[1, 6, 1820], [1, 6, 1806], [1, 6, 1807]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1820], "distinct_count": 16}, {"mcvs": [[1, 6, 1834], [1, 6, 1822], [1, 6, 1823]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1834], "distinct_count": 14}, {"mcvs": [[1, 6, 1849], [1, 6, 1836], [1, 6, 1837]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1849], "distinct_count": 15}, {"mcvs": [[1, 6, 1864], [1, 6, 1851], [1, 6, 1852]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1864], "distinct_count": 15}, {"mcvs": [[1, 6, 1871], [1, 6, 1866], [1, 6, 1867]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1871], "distinct_count": 7}, {"mcvs": [[1, 6, 1890], [1, 6, 1873], [1, 6, 1874]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1890], "distinct_count": 19}, {"mcvs": [[1, 6, 1906], [1, 6, 1892], [1, 6, 1893]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1906], "distinct_count": 16}, {"mcvs": [[1, 6, 1918], [1, 6, 1908], [1, 6, 1909]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1918], "distinct_count": 12}, {"mcvs": [[1, 6, 1931], [1, 6, 1920], [1, 6, 1921]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1931], "distinct_count": 13}, {"mcvs": [[1, 6, 1943], [1, 6, 1933], [1, 6, 1934]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1943], "distinct_count": 12}, {"mcvs": [[1, 6, 1952], [1, 6, 1945], [1, 6, 1946]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1952], "distinct_count": 9}, {"mcvs": [[1, 6, 1976], [1, 6, 1954], [1, 6, 1955]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1976], "distinct_count": 24}, {"mcvs": [[1, 6, 1991], [1, 6, 1978], [1, 6, 1979]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1991], "distinct_count": 15}, {"mcvs": [[1, 6, 2006], [1, 6, 1993], [1, 6, 1994]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2006], "distinct_count": 15}, {"mcvs": [[1, 6, 2022], [1, 6, 2008], [1, 6, 2009]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2022], "distinct_count": 16}, {"mcvs": [[1, 6, 2036], [1, 6, 2024], [1, 6, 2025]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2036], "distinct_count": 14}, {"mcvs": [[1, 6, 2050], [1, 6, 2038], [1, 6, 2039]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2050], "distinct_count": 14}, {"mcvs": [[1, 6, 2065], [1, 6, 2052], [1, 6, 2053]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2065], "distinct_count": 15}, {"mcvs": [[1, 6, 2077], [1, 6, 2067], [1, 6, 2068]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2077], "distinct_count": 12}, {"mcvs": [[1, 6, 2092], [1, 6, 2079], [1, 6, 2080]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2092], "distinct_count": 15}, {"mcvs": [[1, 6, 2104], [1, 6, 2094], [1, 6, 2095]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2104], "distinct_count": 12}, {"mcvs": [[1, 6, 2123], [1, 6, 2106], [1, 6, 2107]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2123], "distinct_count": 19}, {"mcvs": [[1, 6, 2140], [1, 6, 2125], [1, 6, 2126]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2140], "distinct_count": 17}, {"mcvs": [[1, 6, 2161], [1, 6, 2142], [1, 6, 2143]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2161], "distinct_count": 21}, {"mcvs": [[1, 6, 2179], [1, 6, 2163], [1, 6, 2164]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2179], "distinct_count": 18}, {"mcvs": [[1, 6, 2189], [1, 6, 2181], [1, 6, 2182]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2189], "distinct_count": 10}, {"mcvs": [[1, 6, 2205], [1, 6, 2191], [1, 6, 2192]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2205], "distinct_count": 16}, {"mcvs": [[1, 6, 2219], [1, 6, 2207], [1, 6, 2208]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2219], "distinct_count": 14}, {"mcvs": [[1, 6, 2233], [1, 6, 2221], [1, 6, 2222]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2233], "distinct_count": 14}, {"mcvs": [[1, 6, 2252], [1, 6, 2235], [1, 6, 2236]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2252], "distinct_count": 19}, {"mcvs": [[1, 6, 2264], [1, 6, 2254], [1, 6, 2255]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2264], "distinct_count": 12}, {"mcvs": [[1, 6, 2285], [1, 6, 2266], [1, 6, 2267]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2285], "distinct_count": 21}, {"mcvs": [[1, 6, 2295], [1, 6, 2287], [1, 6, 2288]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2295], "distinct_count": 10}, {"mcvs": [[1, 6, 2314], [1, 6, 2297], [1, 6, 2298]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2314], "distinct_count": 19}, {"mcvs": [[1, 6, 2322], [1, 6, 2316], [1, 6, 2317]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2322], "distinct_count": 8}, {"mcvs": [[1, 6, 2334], [1, 6, 2324], [1, 6, 2325]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2334], "distinct_count": 12}, {"mcvs": [[1, 6, 2346], [1, 6, 2336], [1, 6, 2337]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2346], "distinct_count": 12}, {"mcvs": [[1, 6, 2353], [1, 6, 2348], [1, 6, 2349]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2353], "distinct_count": 7}, {"mcvs": [[1, 6, 2373], [1, 6, 2355], [1, 6, 2356]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2373], "distinct_count": 20}, {"mcvs": [[1, 6, 2385], [1, 6, 2375], [1, 6, 2376]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2385], "distinct_count": 12}, {"mcvs": [[1, 6, 2403], [1, 6, 2387], [1, 6, 2388]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2403], "distinct_count": 18}, {"mcvs": [[1, 6, 2418], [1, 6, 2405], [1, 6, 2406]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2418], "distinct_count": 15}, {"mcvs": [[1, 6, 2436], [1, 6, 2420], [1, 6, 2421]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2436], "distinct_count": 18}, {"mcvs": [[1, 6, 2454], [1, 6, 2438], [1, 6, 2439]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2454], "distinct_count": 18}, {"mcvs": [[1, 6, 2473], [1, 6, 2456], [1, 6, 2457]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2473], "distinct_count": 19}, {"mcvs": [[1, 6, 2488], [1, 6, 2475], [1, 6, 2476]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2488], "distinct_count": 15}, {"mcvs": [[1, 6, 2505], [1, 6, 2490], [1, 6, 2491]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2505], "distinct_count": 17}, {"mcvs": [[1, 6, 2528], [1, 6, 2507], [1, 6, 2508]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2528], "distinct_count": 23}, {"mcvs": [[1, 6, 2541], [1, 6, 2530], [1, 6, 2531]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2541], "distinct_count": 13}, {"mcvs": [[1, 6, 2557], [1, 6, 2543], [1, 6, 2544]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2557], "distinct_count": 16}, {"mcvs": [[1, 6, 2573], [1, 6, 2559], [1, 6, 2560]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2573], "distinct_count": 16}, {"mcvs": [[1, 6, 2586], [1, 6, 2575], [1, 6, 2576]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2586], "distinct_count": 13}, {"mcvs": [[1, 6, 2598], [1, 6, 2588], [1, 6, 2589]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2598], "distinct_count": 12}, {"mcvs": [[1, 6, 2607], [1, 6, 2600], [1, 6, 2601]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2607], "distinct_count": 9}, {"mcvs": [[1, 6, 2628], [1, 6, 2609], [1, 6, 2610]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2628], "distinct_count": 21}, {"mcvs": [[1, 6, 2642], [1, 6, 2630], [1, 6, 2631]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2642], "distinct_count": 14}, {"mcvs": [[1, 6, 2655], [1, 6, 2644], [1, 6, 2645]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2655], "distinct_count": 13}, {"mcvs": [[1, 6, 2677], [1, 6, 2657], [1, 6, 2658]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2677], "distinct_count": 22}, {"mcvs": [[1, 6, 2688], [1, 6, 2679], [1, 6, 2680]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2688], "distinct_count": 11}, {"mcvs": [[1, 6, 2702], [1, 6, 2690], [1, 6, 2691]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2702], "distinct_count": 14}, {"mcvs": [[1, 6, 2723], [1, 6, 2704], [1, 6, 2705]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2723], "distinct_count": 21}, {"mcvs": [[1, 6, 2742], [1, 6, 2725], [1, 6, 2726]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2742], "distinct_count": 19}, {"mcvs": [[1, 6, 2759], [1, 6, 2744], [1, 6, 2745]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2759], "distinct_count": 17}, {"mcvs": [[1, 6, 2779], [1, 6, 2761], [1, 6, 2762]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2779], "distinct_count": 20}, {"mcvs": [[1, 6, 2785], [1, 6, 2781], [1, 6, 2782]], "row_count": 6, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2785], "distinct_count": 6}, {"mcvs": [[1, 6, 2798], [1, 6, 2787], [1, 6, 2788]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2798], "distinct_count": 13}, {"mcvs": [[1, 6, 2814], [1, 6, 2800], [1, 6, 2801]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2814], "distinct_count": 16}, {"mcvs": [[1, 6, 2838], [1, 6, 2816], [1, 6, 2817]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2838], "distinct_count": 24}, {"mcvs": [[1, 6, 2853], [1, 6, 2840], [1, 6, 2841]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2853], "distinct_count": 15}, {"mcvs": [[1, 6, 2867], [1, 6, 2855], [1, 6, 2856]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2867], "distinct_count": 14}, {"mcvs": [[1, 6, 2885], [1, 6, 2869], [1, 6, 2870]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2885], "distinct_count": 18}, {"mcvs": [[1, 6, 2889], [1, 6, 2887], [1, 6, 2888]], "row_count": 4, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2889], "distinct_count": 4}, {"mcvs": [[1, 6, 2904], [1, 6, 2891], [1, 6, 2892]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2904], "distinct_count": 15}, {"mcvs": [[1, 6, 2920], [1, 6, 2906], [1, 6, 2907]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2920], "distinct_count": 16}, {"mcvs": [[1, 6, 2937], [1, 6, 2922], [1, 6, 2923]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2937], "distinct_count": 17}, {"mcvs": [[1, 6, 2955], [1, 6, 2939], [1, 6, 2940]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2955], "distinct_count": 18}, {"mcvs": [[1, 6, 2975], [1, 6, 2957], [1, 6, 2958]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2975], "distinct_count": 20}, {"mcvs": [[1, 6, 2994], [1, 6, 2977], [1, 6, 2978]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2994], "distinct_count": 19}, {"mcvs": [[1, 7, 11], [1, 6, 2996], [1, 6, 2997]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 11], "distinct_count": 17}, {"mcvs": [[1, 7, 30], [1, 7, 13], [1, 7, 14]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 30], "distinct_count": 19}, {"mcvs": [[1, 7, 37], [1, 7, 32], [1, 7, 33]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 37], "distinct_count": 7}, {"mcvs": [[1, 7, 54], [1, 7, 39], [1, 7, 40]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 54], "distinct_count": 17}, {"mcvs": [[1, 7, 69], [1, 7, 56], [1, 7, 57]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 69], "distinct_count": 15}, {"mcvs": [[1, 7, 83], [1, 7, 71], [1, 7, 72]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 83], "distinct_count": 14}, {"mcvs": [[1, 7, 99], [1, 7, 85], [1, 7, 86]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 99], "distinct_count": 16}, {"mcvs": [[1, 7, 114], [1, 7, 101], [1, 7, 102]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 114], "distinct_count": 15}, {"mcvs": [[1, 7, 129], [1, 7, 116], [1, 7, 117]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 129], "distinct_count": 15}, {"mcvs": [[1, 7, 148], [1, 7, 131], [1, 7, 132]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 148], "distinct_count": 19}, {"mcvs": [[1, 7, 159], [1, 7, 150], [1, 7, 151]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 159], "distinct_count": 11}, {"mcvs": [[1, 7, 166], [1, 7, 161], [1, 7, 162]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 166], "distinct_count": 7}, {"mcvs": [[1, 7, 186], [1, 7, 168], [1, 7, 169]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 186], "distinct_count": 20}, {"mcvs": [[1, 7, 198], [1, 7, 188], [1, 7, 189]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 198], "distinct_count": 12}, {"mcvs": [[1, 7, 216], [1, 7, 200], [1, 7, 201]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 216], "distinct_count": 18}, {"mcvs": [[1, 7, 233], [1, 7, 218], [1, 7, 219]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 233], "distinct_count": 17}, {"mcvs": [[1, 7, 254], [1, 7, 235], [1, 7, 236]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 254], "distinct_count": 21}, {"mcvs": [[1, 7, 269], [1, 7, 256], [1, 7, 257]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 269], "distinct_count": 15}, {"mcvs": [[1, 7, 283], [1, 7, 271], [1, 7, 272]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 283], "distinct_count": 14}, {"mcvs": [[1, 7, 302], [1, 7, 285], [1, 7, 286]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 302], "distinct_count": 19}, {"mcvs": [[1, 7, 318], [1, 7, 304], [1, 7, 305]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 318], "distinct_count": 16}, {"mcvs": [[1, 7, 336], [1, 7, 320], [1, 7, 321]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 336], "distinct_count": 18}, {"mcvs": [[1, 7, 355], [1, 7, 338], [1, 7, 339]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 355], "distinct_count": 19}, {"mcvs": [[1, 7, 369], [1, 7, 357], [1, 7, 358]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 369], "distinct_count": 14}, {"mcvs": [[1, 7, 390], [1, 7, 371], [1, 7, 372]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 390], "distinct_count": 21}, {"mcvs": [[1, 7, 408], [1, 7, 392], [1, 7, 393]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 408], "distinct_count": 18}, {"mcvs": [[1, 7, 423], [1, 7, 410], [1, 7, 411]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 423], "distinct_count": 15}, {"mcvs": [[1, 7, 435], [1, 7, 425], [1, 7, 426]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 435], "distinct_count": 12}, {"mcvs": [[1, 7, 451], [1, 7, 437], [1, 7, 438]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 451], "distinct_count": 16}, {"mcvs": [[1, 7, 468], [1, 7, 453], [1, 7, 454]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 468], "distinct_count": 17}, {"mcvs": [[1, 7, 487], [1, 7, 470], [1, 7, 471]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 487], "distinct_count": 19}, {"mcvs": [[1, 7, 497], [1, 7, 489], [1, 7, 490]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 497], "distinct_count": 10}, {"mcvs": [[1, 7, 512], [1, 7, 499], [1, 7, 500]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 512], "distinct_count": 15}, {"mcvs": [[1, 7, 524], [1, 7, 514], [1, 7, 515]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 524], "distinct_count": 12}, {"mcvs": [[1, 7, 545], [1, 7, 526], [1, 7, 527]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 545], "distinct_count": 21}, {"mcvs": [[1, 7, 563], [1, 7, 547], [1, 7, 548]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 563], "distinct_count": 18}, {"mcvs": [[1, 7, 582], [1, 7, 565], [1, 7, 566]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 582], "distinct_count": 19}, {"mcvs": [[1, 7, 606], [1, 7, 584], [1, 7, 585]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 606], "distinct_count": 24}, {"mcvs": [[1, 7, 623], [1, 7, 608], [1, 7, 609]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 623], "distinct_count": 17}, {"mcvs": [[1, 7, 651], [1, 7, 625], [1, 7, 626]], "row_count": 28, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 651], "distinct_count": 28}, {"mcvs": [[1, 7, 662], [1, 7, 653], [1, 7, 654]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 662], "distinct_count": 11}, {"mcvs": [[1, 7, 684], [1, 7, 664], [1, 7, 665]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 684], "distinct_count": 22}, {"mcvs": [[1, 7, 703], [1, 7, 686], [1, 7, 687]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 703], "distinct_count": 19}, {"mcvs": [[1, 7, 722], [1, 7, 705], [1, 7, 706]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 722], "distinct_count": 19}, {"mcvs": [[1, 7, 748], [1, 7, 724], [1, 7, 725]], "row_count": 26, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 748], "distinct_count": 26}, {"mcvs": [[1, 7, 764], [1, 7, 750], [1, 7, 751]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 764], "distinct_count": 16}, {"mcvs": [[1, 7, 782], [1, 7, 766], [1, 7, 767]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 782], "distinct_count": 18}, {"mcvs": [[1, 7, 808], [1, 7, 784], [1, 7, 785]], "row_count": 26, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 808], "distinct_count": 26}, {"mcvs": [[1, 7, 831], [1, 7, 810], [1, 7, 811]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 831], "distinct_count": 23}, {"mcvs": [[1, 7, 854], [1, 7, 833], [1, 7, 834]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 854], "distinct_count": 23}, {"mcvs": [[1, 7, 879], [1, 7, 856], [1, 7, 857]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 879], "distinct_count": 25}, {"mcvs": [[1, 7, 892], [1, 7, 881], [1, 7, 882]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 892], "distinct_count": 13}, {"mcvs": [[1, 7, 908], [1, 7, 894], [1, 7, 895]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 908], "distinct_count": 16}, {"mcvs": [[1, 7, 920], [1, 7, 910], [1, 7, 911]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 920], "distinct_count": 12}, {"mcvs": [[1, 7, 931], [1, 7, 922], [1, 7, 923]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 931], "distinct_count": 11}, {"mcvs": [[1, 7, 943], [1, 7, 933], [1, 7, 934]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 943], "distinct_count": 12}, {"mcvs": [[1, 7, 960], [1, 7, 945], [1, 7, 946]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 960], "distinct_count": 17}, {"mcvs": [[1, 7, 979], [1, 7, 962], [1, 7, 963]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 979], "distinct_count": 19}, {"mcvs": [[1, 7, 985], [1, 7, 981], [1, 7, 982]], "row_count": 6, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 985], "distinct_count": 6}, {"mcvs": [[1, 7, 1009], [1, 7, 987], [1, 7, 988]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1009], "distinct_count": 24}, {"mcvs": [[1, 7, 1035], [1, 7, 1011], [1, 7, 1012]], "row_count": 26, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1035], "distinct_count": 26}, {"mcvs": [[1, 7, 1056], [1, 7, 1037], [1, 7, 1038]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1056], "distinct_count": 21}, {"mcvs": [[1, 7, 1074], [1, 7, 1058], [1, 7, 1059]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1074], "distinct_count": 18}, {"mcvs": [[1, 7, 1091], [1, 7, 1076], [1, 7, 1077]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1091], "distinct_count": 17}, {"mcvs": [[1, 7, 1108], [1, 7, 1093], [1, 7, 1094]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1108], "distinct_count": 17}, {"mcvs": [[1, 7, 1130], [1, 7, 1110], [1, 7, 1111]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1130], "distinct_count": 22}, {"mcvs": [[1, 7, 1147], [1, 7, 1132], [1, 7, 1133]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1147], "distinct_count": 17}, {"mcvs": [[1, 7, 1160], [1, 7, 1149], [1, 7, 1150]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1160], "distinct_count": 13}, {"mcvs": [[1, 7, 1184], [1, 7, 1162], [1, 7, 1163]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1184], "distinct_count": 24}, {"mcvs": [[1, 7, 1204], [1, 7, 1186], [1, 7, 1187]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1204], "distinct_count": 20}, {"mcvs": [[1, 7, 1227], [1, 7, 1206], [1, 7, 1207]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1227], "distinct_count": 23}, {"mcvs": [[1, 7, 1238], [1, 7, 1229], [1, 7, 1230]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1238], "distinct_count": 11}, {"mcvs": [[1, 7, 1252], [1, 7, 1240], [1, 7, 1241]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1252], "distinct_count": 14}, {"mcvs": [[1, 7, 1267], [1, 7, 1254], [1, 7, 1255]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1267], "distinct_count": 15}, {"mcvs": [[1, 7, 1275], [1, 7, 1269], [1, 7, 1270]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1275], "distinct_count": 8}, {"mcvs": [[1, 7, 1285], [1, 7, 1277], [1, 7, 1278]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1285], "distinct_count": 10}, {"mcvs": [[1, 7, 1299], [1, 7, 1287], [1, 7, 1288]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1299], "distinct_count": 14}, {"mcvs": [[1, 7, 1310], [1, 7, 1301], [1, 7, 1302]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1310], "distinct_count": 11}, {"mcvs": [[1, 7, 1322], [1, 7, 1312], [1, 7, 1313]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1322], "distinct_count": 12}, {"mcvs": [[1, 7, 1338], [1, 7, 1324], [1, 7, 1325]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1338], "distinct_count": 16}, {"mcvs": [[1, 7, 1354], [1, 7, 1340], [1, 7, 1341]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1354], "distinct_count": 16}, {"mcvs": [[1, 7, 1374], [1, 7, 1356], [1, 7, 1357]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1374], "distinct_count": 20}, {"mcvs": [[1, 7, 1397], [1, 7, 1376], [1, 7, 1377]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1397], "distinct_count": 23}, {"mcvs": [[1, 7, 1413], [1, 7, 1399], [1, 7, 1400]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1413], "distinct_count": 16}, {"mcvs": [[1, 7, 1428], [1, 7, 1415], [1, 7, 1416]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1428], "distinct_count": 15}, {"mcvs": [[1, 7, 1438], [1, 7, 1430], [1, 7, 1431]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1438], "distinct_count": 10}, {"mcvs": [[1, 7, 1457], [1, 7, 1440], [1, 7, 1441]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1457], "distinct_count": 19}, {"mcvs": [[1, 7, 1468], [1, 7, 1459], [1, 7, 1460]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1468], "distinct_count": 11}, {"mcvs": [[1, 7, 1481], [1, 7, 1470], [1, 7, 1471]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1481], "distinct_count": 13}, {"mcvs": [[1, 7, 1503], [1, 7, 1483], [1, 7, 1484]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1503], "distinct_count": 22}, {"mcvs": [[1, 7, 1513], [1, 7, 1505], [1, 7, 1506]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1513], "distinct_count": 10}, {"mcvs": [[1, 7, 1537], [1, 7, 1515], [1, 7, 1516]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1537], "distinct_count": 24}, {"mcvs": [[1, 7, 1558], [1, 7, 1539], [1, 7, 1540]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1558], "distinct_count": 21}, {"mcvs": [[1, 7, 1568], [1, 7, 1560], [1, 7, 1561]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1568], "distinct_count": 10}, {"mcvs": [[1, 7, 1590], [1, 7, 1570], [1, 7, 1571]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1590], "distinct_count": 22}, {"mcvs": [[1, 7, 1610], [1, 7, 1592], [1, 7, 1593]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1610], "distinct_count": 20}, {"mcvs": [[1, 7, 1623], [1, 7, 1612], [1, 7, 1613]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1623], "distinct_count": 13}, {"mcvs": [[1, 7, 1643], [1, 7, 1625], [1, 7, 1626]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1643], "distinct_count": 20}, {"mcvs": [[1, 7, 1660], [1, 7, 1645], [1, 7, 1646]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1660], "distinct_count": 17}, {"mcvs": [[1, 7, 1669], [1, 7, 1662], [1, 7, 1663]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1669], "distinct_count": 9}, {"mcvs": [[1, 7, 1684], [1, 7, 1671], [1, 7, 1672]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1684], "distinct_count": 15}, {"mcvs": [[1, 7, 1695], [1, 7, 1686], [1, 7, 1687]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1695], "distinct_count": 11}, {"mcvs": [[1, 7, 1712], [1, 7, 1697], [1, 7, 1698]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1712], "distinct_count": 17}, {"mcvs": [[1, 7, 1730], [1, 7, 1714], [1, 7, 1715]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1730], "distinct_count": 18}, {"mcvs": [[1, 7, 1741], [1, 7, 1732], [1, 7, 1733]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1741], "distinct_count": 11}, {"mcvs": [[1, 7, 1757], [1, 7, 1743], [1, 7, 1744]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1757], "distinct_count": 16}, {"mcvs": [[1, 7, 1770], [1, 7, 1759], [1, 7, 1760]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1770], "distinct_count": 13}, {"mcvs": [[1, 7, 1781], [1, 7, 1772], [1, 7, 1773]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1781], "distinct_count": 11}, {"mcvs": [[1, 7, 1791], [1, 7, 1783], [1, 7, 1784]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1791], "distinct_count": 10}, {"mcvs": [[1, 7, 1809], [1, 7, 1793], [1, 7, 1794]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1809], "distinct_count": 18}, {"mcvs": [[1, 7, 1823], [1, 7, 1811], [1, 7, 1812]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1823], "distinct_count": 14}, {"mcvs": [[1, 7, 1840], [1, 7, 1825], [1, 7, 1826]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1840], "distinct_count": 17}, {"mcvs": [[1, 7, 1853], [1, 7, 1842], [1, 7, 1843]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1853], "distinct_count": 13}, {"mcvs": [[1, 7, 1872], [1, 7, 1855], [1, 7, 1856]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1872], "distinct_count": 19}, {"mcvs": [[1, 7, 1882], [1, 7, 1874], [1, 7, 1875]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1882], "distinct_count": 10}, {"mcvs": [[1, 7, 1895], [1, 7, 1884], [1, 7, 1885]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1895], "distinct_count": 13}, {"mcvs": [[1, 7, 1908], [1, 7, 1897], [1, 7, 1898]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1908], "distinct_count": 13}, {"mcvs": [[1, 7, 1923], [1, 7, 1910], [1, 7, 1911]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1923], "distinct_count": 15}, {"mcvs": [[1, 7, 1943], [1, 7, 1925], [1, 7, 1926]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1943], "distinct_count": 20}, {"mcvs": [[1, 7, 1952], [1, 7, 1945], [1, 7, 1946]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1952], "distinct_count": 9}, {"mcvs": [[1, 7, 1966], [1, 7, 1954], [1, 7, 1955]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1966], "distinct_count": 14}, {"mcvs": [[1, 7, 1975], [1, 7, 1968], [1, 7, 1969]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1975], "distinct_count": 9}, {"mcvs": [[1, 7, 1991], [1, 7, 1977], [1, 7, 1978]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1991], "distinct_count": 16}, {"mcvs": [[1, 7, 2007], [1, 7, 1993], [1, 7, 1994]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2007], "distinct_count": 16}, {"mcvs": [[1, 7, 2022], [1, 7, 2009], [1, 7, 2010]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2022], "distinct_count": 15}, {"mcvs": [[1, 7, 2047], [1, 7, 2024], [1, 7, 2025]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2047], "distinct_count": 25}, {"mcvs": [[1, 7, 2061], [1, 7, 2049], [1, 7, 2050]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2061], "distinct_count": 14}, {"mcvs": [[1, 7, 2083], [1, 7, 2063], [1, 7, 2064]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2083], "distinct_count": 22}, {"mcvs": [[1, 7, 2092], [1, 7, 2085], [1, 7, 2086]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2092], "distinct_count": 9}, {"mcvs": [[1, 7, 2114], [1, 7, 2094], [1, 7, 2095]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2114], "distinct_count": 22}, {"mcvs": [[1, 7, 2132], [1, 7, 2116], [1, 7, 2117]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2132], "distinct_count": 18}, {"mcvs": [[1, 7, 2146], [1, 7, 2134], [1, 7, 2135]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2146], "distinct_count": 14}, {"mcvs": [[1, 7, 2166], [1, 7, 2148], [1, 7, 2149]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2166], "distinct_count": 20}, {"mcvs": [[1, 7, 2185], [1, 7, 2168], [1, 7, 2169]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2185], "distinct_count": 19}, {"mcvs": [[1, 7, 2204], [1, 7, 2187], [1, 7, 2188]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2204], "distinct_count": 19}, {"mcvs": [[1, 7, 2228], [1, 7, 2206], [1, 7, 2207]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2228], "distinct_count": 24}, {"mcvs": [[1, 7, 2241], [1, 7, 2230], [1, 7, 2231]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2241], "distinct_count": 13}, {"mcvs": [[1, 7, 2257], [1, 7, 2243], [1, 7, 2244]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2257], "distinct_count": 16}, {"mcvs": [[1, 7, 2272], [1, 7, 2259], [1, 7, 2260]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2272], "distinct_count": 15}, {"mcvs": [[1, 7, 2289], [1, 7, 2274], [1, 7, 2275]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2289], "distinct_count": 17}, {"mcvs": [[1, 7, 2311], [1, 7, 2291], [1, 7, 2292]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2311], "distinct_count": 22}, {"mcvs": [[1, 7, 2332], [1, 7, 2313], [1, 7, 2314]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2332], "distinct_count": 21}, {"mcvs": [[1, 7, 2344], [1, 7, 2334], [1, 7, 2335]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2344], "distinct_count": 12}, {"mcvs": [[1, 7, 2363], [1, 7, 2346], [1, 7, 2347]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2363], "distinct_count": 19}, {"mcvs": [[1, 7, 2377], [1, 7, 2365], [1, 7, 2366]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2377], "distinct_count": 14}, {"mcvs": [[1, 7, 2396], [1, 7, 2379], [1, 7, 2380]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2396], "distinct_count": 19}, {"mcvs": [[1, 7, 2409], [1, 7, 2398], [1, 7, 2399]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2409], "distinct_count": 13}, {"mcvs": [[1, 7, 2421], [1, 7, 2411], [1, 7, 2412]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2421], "distinct_count": 12}, {"mcvs": [[1, 7, 2442], [1, 7, 2423], [1, 7, 2424]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2442], "distinct_count": 21}, {"mcvs": [[1, 7, 2463], [1, 7, 2444], [1, 7, 2445]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2463], "distinct_count": 21}, {"mcvs": [[1, 7, 2474], [1, 7, 2465], [1, 7, 2466]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2474], "distinct_count": 11}, {"mcvs": [[1, 7, 2495], [1, 7, 2476], [1, 7, 2477]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2495], "distinct_count": 21}, {"mcvs": [[1, 7, 2509], [1, 7, 2497], [1, 7, 2498]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2509], "distinct_count": 14}, {"mcvs": [[1, 7, 2527], [1, 7, 2511], [1, 7, 2512]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2527], "distinct_count": 18}, {"mcvs": [[1, 7, 2544], [1, 7, 2529], [1, 7, 2530]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2544], "distinct_count": 17}, {"mcvs": [[1, 7, 2569], [1, 7, 2546], [1, 7, 2547]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2569], "distinct_count": 25}, {"mcvs": [[1, 7, 2583], [1, 7, 2571], [1, 7, 2572]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2583], "distinct_count": 14}, {"mcvs": [[1, 7, 2597], [1, 7, 2585], [1, 7, 2586]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2597], "distinct_count": 14}, {"mcvs": [[1, 7, 2611], [1, 7, 2599], [1, 7, 2600]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2611], "distinct_count": 14}, {"mcvs": [[1, 7, 2631], [1, 7, 2613], [1, 7, 2614]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2631], "distinct_count": 20}, {"mcvs": [[1, 7, 2642], [1, 7, 2633], [1, 7, 2634]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2642], "distinct_count": 11}, {"mcvs": [[1, 7, 2659], [1, 7, 2644], [1, 7, 2645]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2659], "distinct_count": 17}, {"mcvs": [[1, 7, 2678], [1, 7, 2661], [1, 7, 2662]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2678], "distinct_count": 19}, {"mcvs": [[1, 7, 2692], [1, 7, 2680], [1, 7, 2681]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2692], "distinct_count": 14}, {"mcvs": [[1, 7, 2703], [1, 7, 2694], [1, 7, 2695]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2703], "distinct_count": 11}, {"mcvs": [[1, 7, 2714], [1, 7, 2705], [1, 7, 2706]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2714], "distinct_count": 11}, {"mcvs": [[1, 7, 2729], [1, 7, 2716], [1, 7, 2717]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2729], "distinct_count": 15}, {"mcvs": [[1, 7, 2742], [1, 7, 2731], [1, 7, 2732]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2742], "distinct_count": 13}, {"mcvs": [[1, 7, 2761], [1, 7, 2744], [1, 7, 2745]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2761], "distinct_count": 19}, {"mcvs": [[1, 7, 2774], [1, 7, 2763], [1, 7, 2764]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2774], "distinct_count": 13}, {"mcvs": [[1, 7, 2788], [1, 7, 2776], [1, 7, 2777]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2788], "distinct_count": 14}, {"mcvs": [[1, 7, 2809], [1, 7, 2790], [1, 7, 2791]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2809], "distinct_count": 21}, {"mcvs": [[1, 7, 2824], [1, 7, 2811], [1, 7, 2812]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2824], "distinct_count": 15}, {"mcvs": [[1, 7, 2840], [1, 7, 2826], [1, 7, 2827]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2840], "distinct_count": 16}, {"mcvs": [[1, 7, 2851], [1, 7, 2842], [1, 7, 2843]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2851], "distinct_count": 11}, {"mcvs": [[1, 7, 2863], [1, 7, 2853], [1, 7, 2854]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2863], "distinct_count": 12}, {"mcvs": [[1, 7, 2879], [1, 7, 2865], [1, 7, 2866]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2879], "distinct_count": 16}, {"mcvs": [[1, 7, 2898], [1, 7, 2881], [1, 7, 2882]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2898], "distinct_count": 19}, {"mcvs": [[1, 7, 2911], [1, 7, 2900], [1, 7, 2901]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2911], "distinct_count": 13}, {"mcvs": [[1, 7, 2936], [1, 7, 2913], [1, 7, 2914]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2936], "distinct_count": 25}, {"mcvs": [[1, 7, 2954], [1, 7, 2938], [1, 7, 2939]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2954], "distinct_count": 18}, {"mcvs": [[1, 7, 2972], [1, 7, 2956], [1, 7, 2957]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2972], "distinct_count": 18}, {"mcvs": [[1, 7, 2989], [1, 7, 2974], [1, 7, 2975]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2989], "distinct_count": 17}, {"mcvs": [[1, 8, 7], [1, 7, 2991], [1, 7, 2992]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 7], "distinct_count": 18}, {"mcvs": [[1, 8, 27], [1, 8, 9], [1, 8, 10]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 27], "distinct_count": 20}, {"mcvs": [[1, 8, 48], [1, 8, 29], [1, 8, 30]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 48], "distinct_count": 21}, {"mcvs": [[1, 8, 68], [1, 8, 50], [1, 8, 51]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 68], "distinct_count": 20}, {"mcvs": [[1, 8, 81], [1, 8, 70], [1, 8, 71]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 81], "distinct_count": 13}, {"mcvs": [[1, 8, 101], [1, 8, 83], [1, 8, 84]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 101], "distinct_count": 20}, {"mcvs": [[1, 8, 124], [1, 8, 103], [1, 8, 104]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 124], "distinct_count": 23}, {"mcvs": [[1, 8, 139], [1, 8, 126], [1, 8, 127]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 139], "distinct_count": 15}, {"mcvs": [[1, 8, 154], [1, 8, 141], [1, 8, 142]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 154], "distinct_count": 15}, {"mcvs": [[1, 8, 167], [1, 8, 156], [1, 8, 157]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 167], "distinct_count": 13}, {"mcvs": [[1, 8, 188], [1, 8, 169], [1, 8, 170]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 188], "distinct_count": 21}, {"mcvs": [[1, 8, 200], [1, 8, 190], [1, 8, 191]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 200], "distinct_count": 12}, {"mcvs": [[1, 8, 216], [1, 8, 202], [1, 8, 203]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 216], "distinct_count": 16}, {"mcvs": [[1, 8, 235], [1, 8, 218], [1, 8, 219]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 235], "distinct_count": 19}, {"mcvs": [[1, 8, 250], [1, 8, 237], [1, 8, 238]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 250], "distinct_count": 15}, {"mcvs": [[1, 8, 268], [1, 8, 252], [1, 8, 253]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 268], "distinct_count": 18}, {"mcvs": [[1, 8, 280], [1, 8, 270], [1, 8, 271]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 280], "distinct_count": 12}, {"mcvs": [[1, 8, 300], [1, 8, 282], [1, 8, 283]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 300], "distinct_count": 20}, {"mcvs": [[1, 8, 324], [1, 8, 302], [1, 8, 303]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 324], "distinct_count": 24}, {"mcvs": [[1, 8, 333], [1, 8, 326], [1, 8, 327]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 333], "distinct_count": 9}, {"mcvs": [[1, 8, 350], [1, 8, 335], [1, 8, 336]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 350], "distinct_count": 17}, {"mcvs": [[1, 8, 364], [1, 8, 352], [1, 8, 353]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 364], "distinct_count": 14}, {"mcvs": [[1, 8, 379], [1, 8, 366], [1, 8, 367]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 379], "distinct_count": 15}, {"mcvs": [[1, 8, 400], [1, 8, 381], [1, 8, 382]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 400], "distinct_count": 21}, {"mcvs": [[1, 8, 412], [1, 8, 402], [1, 8, 403]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 412], "distinct_count": 12}, {"mcvs": [[1, 8, 434], [1, 8, 414], [1, 8, 415]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 434], "distinct_count": 22}, {"mcvs": [[1, 8, 451], [1, 8, 436], [1, 8, 437]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 451], "distinct_count": 17}, {"mcvs": [[1, 8, 470], [1, 8, 453], [1, 8, 454]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 470], "distinct_count": 19}, {"mcvs": [[1, 8, 484], [1, 8, 472], [1, 8, 473]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 484], "distinct_count": 14}, {"mcvs": [[1, 8, 507], [1, 8, 486], [1, 8, 487]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 507], "distinct_count": 23}, {"mcvs": [[1, 8, 518], [1, 8, 509], [1, 8, 510]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 518], "distinct_count": 11}, {"mcvs": [[1, 8, 535], [1, 8, 520], [1, 8, 521]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 535], "distinct_count": 17}, {"mcvs": [[1, 8, 549], [1, 8, 537], [1, 8, 538]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 549], "distinct_count": 14}, {"mcvs": [[1, 8, 562], [1, 8, 551], [1, 8, 552]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 562], "distinct_count": 13}, {"mcvs": [[1, 8, 575], [1, 8, 564], [1, 8, 565]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 575], "distinct_count": 13}, {"mcvs": [[1, 8, 588], [1, 8, 577], [1, 8, 578]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 588], "distinct_count": 13}, {"mcvs": [[1, 8, 606], [1, 8, 590], [1, 8, 591]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 606], "distinct_count": 18}, {"mcvs": [[1, 8, 622], [1, 8, 608], [1, 8, 609]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 622], "distinct_count": 16}, {"mcvs": [[1, 8, 643], [1, 8, 624], [1, 8, 625]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 643], "distinct_count": 21}, {"mcvs": [[1, 8, 667], [1, 8, 645], [1, 8, 646]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 667], "distinct_count": 24}, {"mcvs": [[1, 8, 680], [1, 8, 669], [1, 8, 670]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 680], "distinct_count": 13}, {"mcvs": [[1, 8, 693], [1, 8, 682], [1, 8, 683]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 693], "distinct_count": 13}, {"mcvs": [[1, 8, 714], [1, 8, 695], [1, 8, 696]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 714], "distinct_count": 21}, {"mcvs": [[1, 8, 725], [1, 8, 716], [1, 8, 717]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 725], "distinct_count": 11}, {"mcvs": [[1, 8, 750], [1, 8, 727], [1, 8, 728]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 750], "distinct_count": 25}, {"mcvs": [[1, 8, 767], [1, 8, 752], [1, 8, 753]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 767], "distinct_count": 17}, {"mcvs": [[1, 8, 787], [1, 8, 769], [1, 8, 770]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 787], "distinct_count": 20}, {"mcvs": [[1, 8, 796], [1, 8, 789], [1, 8, 790]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 796], "distinct_count": 9}, {"mcvs": [[1, 8, 811], [1, 8, 798], [1, 8, 799]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 811], "distinct_count": 15}, {"mcvs": [[1, 8, 833], [1, 8, 813], [1, 8, 814]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 833], "distinct_count": 22}, {"mcvs": [[1, 8, 849], [1, 8, 835], [1, 8, 836]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 849], "distinct_count": 16}, {"mcvs": [[1, 8, 864], [1, 8, 851], [1, 8, 852]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 864], "distinct_count": 15}, {"mcvs": [[1, 8, 884], [1, 8, 866], [1, 8, 867]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 884], "distinct_count": 20}, {"mcvs": [[1, 8, 900], [1, 8, 886], [1, 8, 887]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 900], "distinct_count": 16}, {"mcvs": [[1, 8, 916], [1, 8, 902], [1, 8, 903]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 916], "distinct_count": 16}, {"mcvs": [[1, 8, 930], [1, 8, 918], [1, 8, 919]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 930], "distinct_count": 14}, {"mcvs": [[1, 8, 945], [1, 8, 932], [1, 8, 933]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 945], "distinct_count": 15}, {"mcvs": [[1, 8, 962], [1, 8, 947], [1, 8, 948]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 962], "distinct_count": 17}, {"mcvs": [[1, 8, 973], [1, 8, 964], [1, 8, 965]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 973], "distinct_count": 11}, {"mcvs": [[1, 8, 993], [1, 8, 975], [1, 8, 976]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 993], "distinct_count": 20}, {"mcvs": [[1, 8, 1009], [1, 8, 995], [1, 8, 996]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1009], "distinct_count": 16}, {"mcvs": [[1, 8, 1022], [1, 8, 1011], [1, 8, 1012]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1022], "distinct_count": 13}, {"mcvs": [[1, 8, 1046], [1, 8, 1024], [1, 8, 1025]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1046], "distinct_count": 24}, {"mcvs": [[1, 8, 1058], [1, 8, 1048], [1, 8, 1049]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1058], "distinct_count": 12}, {"mcvs": [[1, 8, 1079], [1, 8, 1060], [1, 8, 1061]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1079], "distinct_count": 21}, {"mcvs": [[1, 8, 1093], [1, 8, 1081], [1, 8, 1082]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1093], "distinct_count": 14}, {"mcvs": [[1, 8, 1107], [1, 8, 1095], [1, 8, 1096]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1107], "distinct_count": 14}, {"mcvs": [[1, 8, 1119], [1, 8, 1109], [1, 8, 1110]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1119], "distinct_count": 12}, {"mcvs": [[1, 8, 1132], [1, 8, 1121], [1, 8, 1122]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1132], "distinct_count": 13}, {"mcvs": [[1, 8, 1152], [1, 8, 1134], [1, 8, 1135]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1152], "distinct_count": 20}, {"mcvs": [[1, 8, 1169], [1, 8, 1154], [1, 8, 1155]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1169], "distinct_count": 17}, {"mcvs": [[1, 8, 1180], [1, 8, 1171], [1, 8, 1172]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1180], "distinct_count": 11}, {"mcvs": [[1, 8, 1196], [1, 8, 1182], [1, 8, 1183]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1196], "distinct_count": 16}, {"mcvs": [[1, 8, 1212], [1, 8, 1198], [1, 8, 1199]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1212], "distinct_count": 16}, {"mcvs": [[1, 8, 1226], [1, 8, 1214], [1, 8, 1215]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1226], "distinct_count": 14}, {"mcvs": [[1, 8, 1245], [1, 8, 1228], [1, 8, 1229]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1245], "distinct_count": 19}, {"mcvs": [[1, 8, 1259], [1, 8, 1247], [1, 8, 1248]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1259], "distinct_count": 14}, {"mcvs": [[1, 8, 1265], [1, 8, 1261], [1, 8, 1262]], "row_count": 6, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1265], "distinct_count": 6}, {"mcvs": [[1, 8, 1282], [1, 8, 1267], [1, 8, 1268]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1282], "distinct_count": 17}, {"mcvs": [[1, 8, 1295], [1, 8, 1284], [1, 8, 1285]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1295], "distinct_count": 13}, {"mcvs": [[1, 8, 1311], [1, 8, 1297], [1, 8, 1298]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1311], "distinct_count": 16}, {"mcvs": [[1, 8, 1320], [1, 8, 1313], [1, 8, 1314]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1320], "distinct_count": 9}, {"mcvs": [[1, 8, 1338], [1, 8, 1322], [1, 8, 1323]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1338], "distinct_count": 18}, {"mcvs": [[1, 8, 1354], [1, 8, 1340], [1, 8, 1341]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1354], "distinct_count": 16}, {"mcvs": [[1, 8, 1364], [1, 8, 1356], [1, 8, 1357]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1364], "distinct_count": 10}, {"mcvs": [[1, 8, 1386], [1, 8, 1366], [1, 8, 1367]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1386], "distinct_count": 22}, {"mcvs": [[1, 8, 1399], [1, 8, 1388], [1, 8, 1389]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1399], "distinct_count": 13}, {"mcvs": [[1, 8, 1413], [1, 8, 1401], [1, 8, 1402]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1413], "distinct_count": 14}, {"mcvs": [[1, 8, 1431], [1, 8, 1415], [1, 8, 1416]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1431], "distinct_count": 18}, {"mcvs": [[1, 8, 1450], [1, 8, 1433], [1, 8, 1434]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1450], "distinct_count": 19}, {"mcvs": [[1, 8, 1469], [1, 8, 1452], [1, 8, 1453]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1469], "distinct_count": 19}, {"mcvs": [[1, 8, 1484], [1, 8, 1471], [1, 8, 1472]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1484], "distinct_count": 15}, {"mcvs": [[1, 8, 1501], [1, 8, 1486], [1, 8, 1487]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1501], "distinct_count": 17}, {"mcvs": [[1, 8, 1516], [1, 8, 1503], [1, 8, 1504]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1516], "distinct_count": 15}, {"mcvs": [[1, 8, 1529], [1, 8, 1518], [1, 8, 1519]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1529], "distinct_count": 13}, {"mcvs": [[1, 8, 1549], [1, 8, 1531], [1, 8, 1532]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1549], "distinct_count": 20}, {"mcvs": [[1, 8, 1574], [1, 8, 1551], [1, 8, 1552]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1574], "distinct_count": 25}, {"mcvs": [[1, 8, 1589], [1, 8, 1576], [1, 8, 1577]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1589], "distinct_count": 15}, {"mcvs": [[1, 8, 1604], [1, 8, 1591], [1, 8, 1592]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1604], "distinct_count": 15}, {"mcvs": [[1, 8, 1618], [1, 8, 1606], [1, 8, 1607]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1618], "distinct_count": 14}, {"mcvs": [[1, 8, 1637], [1, 8, 1620], [1, 8, 1621]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1637], "distinct_count": 19}, {"mcvs": [[1, 8, 1657], [1, 8, 1639], [1, 8, 1640]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1657], "distinct_count": 20}, {"mcvs": [[1, 8, 1676], [1, 8, 1659], [1, 8, 1660]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1676], "distinct_count": 19}, {"mcvs": [[1, 8, 1696], [1, 8, 1678], [1, 8, 1679]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1696], "distinct_count": 20}, {"mcvs": [[1, 8, 1710], [1, 8, 1698], [1, 8, 1699]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1710], "distinct_count": 14}, {"mcvs": [[1, 8, 1727], [1, 8, 1712], [1, 8, 1713]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1727], "distinct_count": 17}, {"mcvs": [[1, 8, 1741], [1, 8, 1729], [1, 8, 1730]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1741], "distinct_count": 14}, {"mcvs": [[1, 8, 1758], [1, 8, 1743], [1, 8, 1744]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1758], "distinct_count": 17}, {"mcvs": [[1, 8, 1770], [1, 8, 1760], [1, 8, 1761]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1770], "distinct_count": 12}, {"mcvs": [[1, 8, 1793], [1, 8, 1772], [1, 8, 1773]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1793], "distinct_count": 23}, {"mcvs": [[1, 8, 1814], [1, 8, 1795], [1, 8, 1796]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1814], "distinct_count": 21}, {"mcvs": [[1, 8, 1831], [1, 8, 1816], [1, 8, 1817]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1831], "distinct_count": 17}, {"mcvs": [[1, 8, 1850], [1, 8, 1833], [1, 8, 1834]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1850], "distinct_count": 19}, {"mcvs": [[1, 8, 1868], [1, 8, 1852], [1, 8, 1853]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1868], "distinct_count": 18}, {"mcvs": [[1, 8, 1887], [1, 8, 1870], [1, 8, 1871]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1887], "distinct_count": 19}, {"mcvs": [[1, 8, 1899], [1, 8, 1889], [1, 8, 1890]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1899], "distinct_count": 12}, {"mcvs": [[1, 8, 1916], [1, 8, 1901], [1, 8, 1902]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1916], "distinct_count": 17}, {"mcvs": [[1, 8, 1936], [1, 8, 1918], [1, 8, 1919]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1936], "distinct_count": 20}, {"mcvs": [[1, 8, 1949], [1, 8, 1938], [1, 8, 1939]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1949], "distinct_count": 13}, {"mcvs": [[1, 8, 1967], [1, 8, 1951], [1, 8, 1952]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1967], "distinct_count": 18}, {"mcvs": [[1, 8, 1975], [1, 8, 1969], [1, 8, 1970]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1975], "distinct_count": 8}, {"mcvs": [[1, 8, 1982], [1, 8, 1977], [1, 8, 1978]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1982], "distinct_count": 7}, {"mcvs": [[1, 8, 2003], [1, 8, 1984], [1, 8, 1985]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2003], "distinct_count": 21}, {"mcvs": [[1, 8, 2021], [1, 8, 2005], [1, 8, 2006]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2021], "distinct_count": 18}, {"mcvs": [[1, 8, 2039], [1, 8, 2023], [1, 8, 2024]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2039], "distinct_count": 18}, {"mcvs": [[1, 8, 2052], [1, 8, 2041], [1, 8, 2042]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2052], "distinct_count": 13}, {"mcvs": [[1, 8, 2065], [1, 8, 2054], [1, 8, 2055]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2065], "distinct_count": 13}, {"mcvs": [[1, 8, 2081], [1, 8, 2067], [1, 8, 2068]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2081], "distinct_count": 16}, {"mcvs": [[1, 8, 2102], [1, 8, 2083], [1, 8, 2084]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2102], "distinct_count": 21}, {"mcvs": [[1, 8, 2116], [1, 8, 2104], [1, 8, 2105]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2116], "distinct_count": 14}, {"mcvs": [[1, 8, 2132], [1, 8, 2118], [1, 8, 2119]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2132], "distinct_count": 16}, {"mcvs": [[1, 8, 2151], [1, 8, 2134], [1, 8, 2135]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2151], "distinct_count": 19}, {"mcvs": [[1, 8, 2168], [1, 8, 2153], [1, 8, 2154]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2168], "distinct_count": 17}, {"mcvs": [[1, 8, 2186], [1, 8, 2170], [1, 8, 2171]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2186], "distinct_count": 18}, {"mcvs": [[1, 8, 2200], [1, 8, 2188], [1, 8, 2189]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2200], "distinct_count": 14}, {"mcvs": [[1, 8, 2210], [1, 8, 2202], [1, 8, 2203]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2210], "distinct_count": 10}, {"mcvs": [[1, 8, 2222], [1, 8, 2212], [1, 8, 2213]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2222], "distinct_count": 12}, {"mcvs": [[1, 8, 2226], [1, 8, 2224], [1, 8, 2225]], "row_count": 4, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2226], "distinct_count": 4}, {"mcvs": [[1, 8, 2233], [1, 8, 2228], [1, 8, 2229]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2233], "distinct_count": 7}, {"mcvs": [[1, 8, 2256], [1, 8, 2235], [1, 8, 2236]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2256], "distinct_count": 23}, {"mcvs": [[1, 8, 2269], [1, 8, 2258], [1, 8, 2259]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2269], "distinct_count": 13}, {"mcvs": [[1, 8, 2285], [1, 8, 2271], [1, 8, 2272]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2285], "distinct_count": 16}, {"mcvs": [[1, 8, 2303], [1, 8, 2287], [1, 8, 2288]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2303], "distinct_count": 18}, {"mcvs": [[1, 8, 2314], [1, 8, 2305], [1, 8, 2306]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2314], "distinct_count": 11}, {"mcvs": [[1, 8, 2326], [1, 8, 2316], [1, 8, 2317]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2326], "distinct_count": 12}, {"mcvs": [[1, 8, 2337], [1, 8, 2328], [1, 8, 2329]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2337], "distinct_count": 11}, {"mcvs": [[1, 8, 2349], [1, 8, 2339], [1, 8, 2340]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2349], "distinct_count": 12}, {"mcvs": [[1, 8, 2366], [1, 8, 2351], [1, 8, 2352]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2366], "distinct_count": 17}, {"mcvs": [[1, 8, 2384], [1, 8, 2368], [1, 8, 2369]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2384], "distinct_count": 18}, {"mcvs": [[1, 8, 2403], [1, 8, 2386], [1, 8, 2387]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2403], "distinct_count": 19}, {"mcvs": [[1, 8, 2415], [1, 8, 2405], [1, 8, 2406]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2415], "distinct_count": 12}, {"mcvs": [[1, 8, 2426], [1, 8, 2417], [1, 8, 2418]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2426], "distinct_count": 11}, {"mcvs": [[1, 8, 2434], [1, 8, 2428], [1, 8, 2429]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2434], "distinct_count": 8}, {"mcvs": [[1, 8, 2447], [1, 8, 2436], [1, 8, 2437]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2447], "distinct_count": 13}, {"mcvs": [[1, 8, 2463], [1, 8, 2449], [1, 8, 2450]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2463], "distinct_count": 16}, {"mcvs": [[1, 8, 2476], [1, 8, 2465], [1, 8, 2466]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2476], "distinct_count": 13}, {"mcvs": [[1, 8, 2489], [1, 8, 2478], [1, 8, 2479]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2489], "distinct_count": 13}, {"mcvs": [[1, 8, 2497], [1, 8, 2491], [1, 8, 2492]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2497], "distinct_count": 8}, {"mcvs": [[1, 8, 2511], [1, 8, 2499], [1, 8, 2500]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2511], "distinct_count": 14}, {"mcvs": [[1, 8, 2521], [1, 8, 2513], [1, 8, 2514]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2521], "distinct_count": 10}, {"mcvs": [[1, 8, 2535], [1, 8, 2523], [1, 8, 2524]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2535], "distinct_count": 14}, {"mcvs": [[1, 8, 2549], [1, 8, 2537], [1, 8, 2538]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2549], "distinct_count": 14}, {"mcvs": [[1, 8, 2570], [1, 8, 2551], [1, 8, 2552]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2570], "distinct_count": 21}, {"mcvs": [[1, 8, 2590], [1, 8, 2572], [1, 8, 2573]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2590], "distinct_count": 20}, {"mcvs": [[1, 8, 2610], [1, 8, 2592], [1, 8, 2593]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2610], "distinct_count": 20}, {"mcvs": [[1, 8, 2627], [1, 8, 2612], [1, 8, 2613]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2627], "distinct_count": 17}, {"mcvs": [[1, 8, 2649], [1, 8, 2629], [1, 8, 2630]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2649], "distinct_count": 22}, {"mcvs": [[1, 8, 2673], [1, 8, 2651], [1, 8, 2652]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2673], "distinct_count": 24}, {"mcvs": [[1, 8, 2699], [1, 8, 2675], [1, 8, 2676]], "row_count": 26, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2699], "distinct_count": 26}, {"mcvs": [[1, 8, 2720], [1, 8, 2701], [1, 8, 2702]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2720], "distinct_count": 21}, {"mcvs": [[1, 8, 2735], [1, 8, 2722], [1, 8, 2723]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2735], "distinct_count": 15}, {"mcvs": [[1, 8, 2747], [1, 8, 2737], [1, 8, 2738]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2747], "distinct_count": 12}, {"mcvs": [[1, 8, 2763], [1, 8, 2749], [1, 8, 2750]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2763], "distinct_count": 16}, {"mcvs": [[1, 8, 2784], [1, 8, 2765], [1, 8, 2766]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2784], "distinct_count": 21}, {"mcvs": [[1, 8, 2803], [1, 8, 2786], [1, 8, 2787]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2803], "distinct_count": 19}, {"mcvs": [[1, 8, 2814], [1, 8, 2805], [1, 8, 2806]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2814], "distinct_count": 11}, {"mcvs": [[1, 8, 2824], [1, 8, 2816], [1, 8, 2817]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2824], "distinct_count": 10}, {"mcvs": [[1, 8, 2840], [1, 8, 2826], [1, 8, 2827]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2840], "distinct_count": 16}, {"mcvs": [[1, 8, 2847], [1, 8, 2842], [1, 8, 2843]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2847], "distinct_count": 7}, {"mcvs": [[1, 8, 2865], [1, 8, 2849], [1, 8, 2850]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2865], "distinct_count": 18}, {"mcvs": [[1, 8, 2880], [1, 8, 2867], [1, 8, 2868]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2880], "distinct_count": 15}, {"mcvs": [[1, 8, 2888], [1, 8, 2882], [1, 8, 2883]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2888], "distinct_count": 8}, {"mcvs": [[1, 8, 2903], [1, 8, 2890], [1, 8, 2891]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2903], "distinct_count": 15}, {"mcvs": [[1, 8, 2912], [1, 8, 2905], [1, 8, 2906]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2912], "distinct_count": 9}, {"mcvs": [[1, 8, 2926], [1, 8, 2914], [1, 8, 2915]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2926], "distinct_count": 14}, {"mcvs": [[1, 8, 2940], [1, 8, 2928], [1, 8, 2929]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2940], "distinct_count": 14}, {"mcvs": [[1, 8, 2955], [1, 8, 2942], [1, 8, 2943]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2955], "distinct_count": 15}, {"mcvs": [[1, 8, 2971], [1, 8, 2957], [1, 8, 2958]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2971], "distinct_count": 16}, {"mcvs": [[1, 8, 2994], [1, 8, 2973], [1, 8, 2974]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2994], "distinct_count": 23}, {"mcvs": [[1, 9, 8], [1, 8, 2996], [1, 8, 2997]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 8], "distinct_count": 14}, {"mcvs": [[1, 9, 24], [1, 9, 10], [1, 9, 11]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 24], "distinct_count": 16}, {"mcvs": [[1, 9, 39], [1, 9, 26], [1, 9, 27]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 39], "distinct_count": 15}, {"mcvs": [[1, 9, 54], [1, 9, 41], [1, 9, 42]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 54], "distinct_count": 15}, {"mcvs": [[1, 9, 67], [1, 9, 56], [1, 9, 57]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 67], "distinct_count": 13}, {"mcvs": [[1, 9, 76], [1, 9, 69], [1, 9, 70]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 76], "distinct_count": 9}, {"mcvs": [[1, 9, 100], [1, 9, 78], [1, 9, 79]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 100], "distinct_count": 24}, {"mcvs": [[1, 9, 120], [1, 9, 102], [1, 9, 103]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 120], "distinct_count": 20}, {"mcvs": [[1, 9, 134], [1, 9, 122], [1, 9, 123]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 134], "distinct_count": 14}, {"mcvs": [[1, 9, 143], [1, 9, 136], [1, 9, 137]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 143], "distinct_count": 9}, {"mcvs": [[1, 9, 155], [1, 9, 145], [1, 9, 146]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 155], "distinct_count": 12}, {"mcvs": [[1, 9, 167], [1, 9, 157], [1, 9, 158]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 167], "distinct_count": 12}, {"mcvs": [[1, 9, 184], [1, 9, 169], [1, 9, 170]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 184], "distinct_count": 17}, {"mcvs": [[1, 9, 205], [1, 9, 186], [1, 9, 187]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 205], "distinct_count": 21}, {"mcvs": [[1, 9, 216], [1, 9, 207], [1, 9, 208]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 216], "distinct_count": 11}, {"mcvs": [[1, 9, 231], [1, 9, 218], [1, 9, 219]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 231], "distinct_count": 15}, {"mcvs": [[1, 9, 244], [1, 9, 233], [1, 9, 234]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 244], "distinct_count": 13}, {"mcvs": [[1, 9, 262], [1, 9, 246], [1, 9, 247]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 262], "distinct_count": 18}, {"mcvs": [[1, 9, 273], [1, 9, 264], [1, 9, 265]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 273], "distinct_count": 11}, {"mcvs": [[1, 9, 291], [1, 9, 275], [1, 9, 276]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 291], "distinct_count": 18}, {"mcvs": [[1, 9, 307], [1, 9, 293], [1, 9, 294]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 307], "distinct_count": 16}, {"mcvs": [[1, 9, 325], [1, 9, 309], [1, 9, 310]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 325], "distinct_count": 18}, {"mcvs": [[1, 9, 339], [1, 9, 327], [1, 9, 328]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 339], "distinct_count": 14}, {"mcvs": [[1, 9, 352], [1, 9, 341], [1, 9, 342]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 352], "distinct_count": 13}, {"mcvs": [[1, 9, 370], [1, 9, 354], [1, 9, 355]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 370], "distinct_count": 18}, {"mcvs": [[1, 9, 389], [1, 9, 372], [1, 9, 373]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 389], "distinct_count": 19}, {"mcvs": [[1, 9, 404], [1, 9, 391], [1, 9, 392]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 404], "distinct_count": 15}, {"mcvs": [[1, 9, 422], [1, 9, 406], [1, 9, 407]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 422], "distinct_count": 18}, {"mcvs": [[1, 9, 435], [1, 9, 424], [1, 9, 425]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 435], "distinct_count": 13}, {"mcvs": [[1, 9, 452], [1, 9, 437], [1, 9, 438]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 452], "distinct_count": 17}, {"mcvs": [[1, 9, 471], [1, 9, 454], [1, 9, 455]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 471], "distinct_count": 19}, {"mcvs": [[1, 9, 487], [1, 9, 473], [1, 9, 474]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 487], "distinct_count": 16}, {"mcvs": [[1, 9, 501], [1, 9, 489], [1, 9, 490]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 501], "distinct_count": 14}, {"mcvs": [[1, 9, 509], [1, 9, 503], [1, 9, 504]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 509], "distinct_count": 8}, {"mcvs": [[1, 9, 518], [1, 9, 511], [1, 9, 512]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 518], "distinct_count": 9}, {"mcvs": [[1, 9, 536], [1, 9, 520], [1, 9, 521]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 536], "distinct_count": 18}, {"mcvs": [[1, 9, 554], [1, 9, 538], [1, 9, 539]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 554], "distinct_count": 18}, {"mcvs": [[1, 9, 571], [1, 9, 556], [1, 9, 557]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 571], "distinct_count": 17}, {"mcvs": [[1, 9, 596], [1, 9, 573], [1, 9, 574]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 596], "distinct_count": 25}, {"mcvs": [[1, 9, 611], [1, 9, 598], [1, 9, 599]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 611], "distinct_count": 15}, {"mcvs": [[1, 9, 634], [1, 9, 613], [1, 9, 614]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 634], "distinct_count": 23}, {"mcvs": [[1, 9, 653], [1, 9, 636], [1, 9, 637]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 653], "distinct_count": 19}, {"mcvs": [[1, 9, 669], [1, 9, 655], [1, 9, 656]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 669], "distinct_count": 16}, {"mcvs": [[1, 9, 680], [1, 9, 671], [1, 9, 672]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 680], "distinct_count": 11}, {"mcvs": [[1, 9, 695], [1, 9, 682], [1, 9, 683]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 695], "distinct_count": 15}, {"mcvs": [[1, 9, 709], [1, 9, 697], [1, 9, 698]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 709], "distinct_count": 14}, {"mcvs": [[1, 9, 727], [1, 9, 711], [1, 9, 712]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 727], "distinct_count": 18}, {"mcvs": [[1, 9, 744], [1, 9, 729], [1, 9, 730]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 744], "distinct_count": 17}, {"mcvs": [[1, 9, 759], [1, 9, 746], [1, 9, 747]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 759], "distinct_count": 15}, {"mcvs": [[1, 9, 771], [1, 9, 761], [1, 9, 762]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 771], "distinct_count": 12}, {"mcvs": [[1, 9, 785], [1, 9, 773], [1, 9, 774]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 785], "distinct_count": 14}, {"mcvs": [[1, 9, 798], [1, 9, 787], [1, 9, 788]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 798], "distinct_count": 13}, {"mcvs": [[1, 9, 818], [1, 9, 800], [1, 9, 801]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 818], "distinct_count": 20}, {"mcvs": [[1, 9, 829], [1, 9, 820], [1, 9, 821]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 829], "distinct_count": 11}, {"mcvs": [[1, 9, 842], [1, 9, 831], [1, 9, 832]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 842], "distinct_count": 13}, {"mcvs": [[1, 9, 858], [1, 9, 844], [1, 9, 845]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 858], "distinct_count": 16}, {"mcvs": [[1, 9, 873], [1, 9, 860], [1, 9, 861]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 873], "distinct_count": 15}, {"mcvs": [[1, 9, 885], [1, 9, 875], [1, 9, 876]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 885], "distinct_count": 12}, {"mcvs": [[1, 9, 894], [1, 9, 887], [1, 9, 888]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 894], "distinct_count": 9}, {"mcvs": [[1, 9, 906], [1, 9, 896], [1, 9, 897]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 906], "distinct_count": 12}, {"mcvs": [[1, 9, 920], [1, 9, 908], [1, 9, 909]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 920], "distinct_count": 14}, {"mcvs": [[1, 9, 929], [1, 9, 922], [1, 9, 923]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 929], "distinct_count": 9}, {"mcvs": [[1, 9, 951], [1, 9, 931], [1, 9, 932]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 951], "distinct_count": 22}, {"mcvs": [[1, 9, 971], [1, 9, 953], [1, 9, 954]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 971], "distinct_count": 20}, {"mcvs": [[1, 9, 981], [1, 9, 973], [1, 9, 974]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 981], "distinct_count": 10}, {"mcvs": [[1, 9, 997], [1, 9, 983], [1, 9, 984]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 997], "distinct_count": 16}, {"mcvs": [[1, 9, 1012], [1, 9, 999], [1, 9, 1000]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1012], "distinct_count": 15}, {"mcvs": [[1, 9, 1034], [1, 9, 1014], [1, 9, 1015]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1034], "distinct_count": 22}, {"mcvs": [[1, 9, 1058], [1, 9, 1036], [1, 9, 1037]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1058], "distinct_count": 24}, {"mcvs": [[1, 9, 1071], [1, 9, 1060], [1, 9, 1061]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1071], "distinct_count": 13}, {"mcvs": [[1, 9, 1092], [1, 9, 1073], [1, 9, 1074]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1092], "distinct_count": 21}, {"mcvs": [[1, 9, 1107], [1, 9, 1094], [1, 9, 1095]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1107], "distinct_count": 15}, {"mcvs": [[1, 9, 1117], [1, 9, 1109], [1, 9, 1110]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1117], "distinct_count": 10}, {"mcvs": [[1, 9, 1135], [1, 9, 1119], [1, 9, 1120]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1135], "distinct_count": 18}, {"mcvs": [[1, 9, 1154], [1, 9, 1137], [1, 9, 1138]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1154], "distinct_count": 19}, {"mcvs": [[1, 9, 1174], [1, 9, 1156], [1, 9, 1157]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1174], "distinct_count": 20}, {"mcvs": [[1, 9, 1197], [1, 9, 1176], [1, 9, 1177]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1197], "distinct_count": 23}, {"mcvs": [[1, 9, 1209], [1, 9, 1199], [1, 9, 1200]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1209], "distinct_count": 12}, {"mcvs": [[1, 9, 1220], [1, 9, 1211], [1, 9, 1212]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1220], "distinct_count": 11}, {"mcvs": [[1, 9, 1236], [1, 9, 1222], [1, 9, 1223]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1236], "distinct_count": 16}, {"mcvs": [[1, 9, 1250], [1, 9, 1238], [1, 9, 1239]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1250], "distinct_count": 14}, {"mcvs": [[1, 9, 1262], [1, 9, 1252], [1, 9, 1253]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1262], "distinct_count": 12}, {"mcvs": [[1, 9, 1286], [1, 9, 1264], [1, 9, 1265]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1286], "distinct_count": 24}, {"mcvs": [[1, 9, 1300], [1, 9, 1288], [1, 9, 1289]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1300], "distinct_count": 14}, {"mcvs": [[1, 9, 1320], [1, 9, 1302], [1, 9, 1303]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1320], "distinct_count": 20}, {"mcvs": [[1, 9, 1328], [1, 9, 1322], [1, 9, 1323]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1328], "distinct_count": 8}, {"mcvs": [[1, 9, 1340], [1, 9, 1330], [1, 9, 1331]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1340], "distinct_count": 12}, {"mcvs": [[1, 9, 1360], [1, 9, 1342], [1, 9, 1343]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1360], "distinct_count": 20}, {"mcvs": [[1, 9, 1376], [1, 9, 1362], [1, 9, 1363]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1376], "distinct_count": 16}, {"mcvs": [[1, 9, 1390], [1, 9, 1378], [1, 9, 1379]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1390], "distinct_count": 14}, {"mcvs": [[1, 9, 1407], [1, 9, 1392], [1, 9, 1393]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1407], "distinct_count": 17}, {"mcvs": [[1, 9, 1419], [1, 9, 1409], [1, 9, 1410]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1419], "distinct_count": 12}, {"mcvs": [[1, 9, 1439], [1, 9, 1421], [1, 9, 1422]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1439], "distinct_count": 20}, {"mcvs": [[1, 9, 1461], [1, 9, 1441], [1, 9, 1442]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1461], "distinct_count": 22}, {"mcvs": [[1, 9, 1475], [1, 9, 1463], [1, 9, 1464]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1475], "distinct_count": 14}, {"mcvs": [[1, 9, 1497], [1, 9, 1477], [1, 9, 1478]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1497], "distinct_count": 22}, {"mcvs": [[1, 9, 1512], [1, 9, 1499], [1, 9, 1500]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1512], "distinct_count": 15}, {"mcvs": [[1, 9, 1527], [1, 9, 1514], [1, 9, 1515]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1527], "distinct_count": 15}, {"mcvs": [[1, 9, 1548], [1, 9, 1529], [1, 9, 1530]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1548], "distinct_count": 21}, {"mcvs": [[1, 9, 1568], [1, 9, 1550], [1, 9, 1551]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1568], "distinct_count": 20}, {"mcvs": [[1, 9, 1583], [1, 9, 1570], [1, 9, 1571]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1583], "distinct_count": 15}, {"mcvs": [[1, 9, 1609], [1, 9, 1585], [1, 9, 1586]], "row_count": 26, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1609], "distinct_count": 26}, {"mcvs": [[1, 9, 1627], [1, 9, 1611], [1, 9, 1612]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1627], "distinct_count": 18}, {"mcvs": [[1, 9, 1640], [1, 9, 1629], [1, 9, 1630]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1640], "distinct_count": 13}, {"mcvs": [[1, 9, 1652], [1, 9, 1642], [1, 9, 1643]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1652], "distinct_count": 12}, {"mcvs": [[1, 9, 1674], [1, 9, 1654], [1, 9, 1655]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1674], "distinct_count": 22}, {"mcvs": [[1, 9, 1693], [1, 9, 1676], [1, 9, 1677]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1693], "distinct_count": 19}, {"mcvs": [[1, 9, 1708], [1, 9, 1695], [1, 9, 1696]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1708], "distinct_count": 15}, {"mcvs": [[1, 9, 1729], [1, 9, 1710], [1, 9, 1711]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1729], "distinct_count": 21}, {"mcvs": [[1, 9, 1746], [1, 9, 1731], [1, 9, 1732]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1746], "distinct_count": 17}, {"mcvs": [[1, 9, 1765], [1, 9, 1748], [1, 9, 1749]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1765], "distinct_count": 19}, {"mcvs": [[1, 9, 1778], [1, 9, 1767], [1, 9, 1768]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1778], "distinct_count": 13}, {"mcvs": [[1, 9, 1790], [1, 9, 1780], [1, 9, 1781]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1790], "distinct_count": 12}, {"mcvs": [[1, 9, 1799], [1, 9, 1792], [1, 9, 1793]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1799], "distinct_count": 9}, {"mcvs": [[1, 9, 1817], [1, 9, 1801], [1, 9, 1802]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1817], "distinct_count": 18}, {"mcvs": [[1, 9, 1830], [1, 9, 1819], [1, 9, 1820]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1830], "distinct_count": 13}, {"mcvs": [[1, 9, 1850], [1, 9, 1832], [1, 9, 1833]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1850], "distinct_count": 20}, {"mcvs": [[1, 9, 1866], [1, 9, 1852], [1, 9, 1853]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1866], "distinct_count": 16}, {"mcvs": [[1, 9, 1874], [1, 9, 1868], [1, 9, 1869]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1874], "distinct_count": 8}, {"mcvs": [[1, 9, 1895], [1, 9, 1876], [1, 9, 1877]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1895], "distinct_count": 21}, {"mcvs": [[1, 9, 1911], [1, 9, 1897], [1, 9, 1898]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1911], "distinct_count": 16}, {"mcvs": [[1, 9, 1922], [1, 9, 1913], [1, 9, 1914]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1922], "distinct_count": 11}, {"mcvs": [[1, 9, 1930], [1, 9, 1924], [1, 9, 1925]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1930], "distinct_count": 8}, {"mcvs": [[1, 9, 1941], [1, 9, 1932], [1, 9, 1933]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1941], "distinct_count": 11}, {"mcvs": [[1, 9, 1951], [1, 9, 1943], [1, 9, 1944]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1951], "distinct_count": 10}, {"mcvs": [[1, 9, 1964], [1, 9, 1953], [1, 9, 1954]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1964], "distinct_count": 13}, {"mcvs": [[1, 9, 1971], [1, 9, 1966], [1, 9, 1967]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1971], "distinct_count": 7}, {"mcvs": [[1, 9, 1988], [1, 9, 1973], [1, 9, 1974]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1988], "distinct_count": 17}, {"mcvs": [[1, 9, 2000], [1, 9, 1990], [1, 9, 1991]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2000], "distinct_count": 12}, {"mcvs": [[1, 9, 2020], [1, 9, 2002], [1, 9, 2003]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2020], "distinct_count": 20}, {"mcvs": [[1, 9, 2034], [1, 9, 2022], [1, 9, 2023]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2034], "distinct_count": 14}, {"mcvs": [[1, 9, 2041], [1, 9, 2036], [1, 9, 2037]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2041], "distinct_count": 7}, {"mcvs": [[1, 9, 2053], [1, 9, 2043], [1, 9, 2044]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2053], "distinct_count": 12}, {"mcvs": [[1, 9, 2078], [1, 9, 2055], [1, 9, 2056]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2078], "distinct_count": 25}, {"mcvs": [[1, 9, 2085], [1, 9, 2080], [1, 9, 2081]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2085], "distinct_count": 7}, {"mcvs": [[1, 9, 2092], [1, 9, 2087], [1, 9, 2088]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2092], "distinct_count": 7}, {"mcvs": [[1, 9, 2111], [1, 9, 2094], [1, 9, 2095]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2111], "distinct_count": 19}, {"mcvs": [[1, 9, 2134], [1, 9, 2113], [1, 9, 2114]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2134], "distinct_count": 23}, {"mcvs": [[1, 9, 2150], [1, 9, 2136], [1, 9, 2137]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2150], "distinct_count": 16}, {"mcvs": [[1, 9, 2174], [1, 9, 2152], [1, 9, 2153]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2174], "distinct_count": 24}, {"mcvs": [[1, 9, 2193], [1, 9, 2176], [1, 9, 2177]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2193], "distinct_count": 19}, {"mcvs": [[1, 9, 2208], [1, 9, 2195], [1, 9, 2196]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2208], "distinct_count": 15}, {"mcvs": [[1, 9, 2222], [1, 9, 2210], [1, 9, 2211]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2222], "distinct_count": 14}, {"mcvs": [[1, 9, 2241], [1, 9, 2224], [1, 9, 2225]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2241], "distinct_count": 19}, {"mcvs": [[1, 9, 2257], [1, 9, 2243], [1, 9, 2244]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2257], "distinct_count": 16}, {"mcvs": [[1, 9, 2269], [1, 9, 2259], [1, 9, 2260]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2269], "distinct_count": 12}, {"mcvs": [[1, 9, 2285], [1, 9, 2271], [1, 9, 2272]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2285], "distinct_count": 16}, {"mcvs": [[1, 9, 2306], [1, 9, 2287], [1, 9, 2288]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2306], "distinct_count": 21}, {"mcvs": [[1, 9, 2332], [1, 9, 2308], [1, 9, 2309]], "row_count": 26, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2332], "distinct_count": 26}, {"mcvs": [[1, 9, 2349], [1, 9, 2334], [1, 9, 2335]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2349], "distinct_count": 17}, {"mcvs": [[1, 9, 2369], [1, 9, 2351], [1, 9, 2352]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2369], "distinct_count": 20}, {"mcvs": [[1, 9, 2385], [1, 9, 2371], [1, 9, 2372]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2385], "distinct_count": 16}, {"mcvs": [[1, 9, 2407], [1, 9, 2387], [1, 9, 2388]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2407], "distinct_count": 22}, {"mcvs": [[1, 9, 2423], [1, 9, 2409], [1, 9, 2410]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2423], "distinct_count": 16}, {"mcvs": [[1, 9, 2441], [1, 9, 2425], [1, 9, 2426]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2441], "distinct_count": 18}, {"mcvs": [[1, 9, 2449], [1, 9, 2443], [1, 9, 2444]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2449], "distinct_count": 8}, {"mcvs": [[1, 9, 2461], [1, 9, 2451], [1, 9, 2452]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2461], "distinct_count": 12}, {"mcvs": [[1, 9, 2477], [1, 9, 2463], [1, 9, 2464]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2477], "distinct_count": 16}, {"mcvs": [[1, 9, 2489], [1, 9, 2479], [1, 9, 2480]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2489], "distinct_count": 12}, {"mcvs": [[1, 9, 2506], [1, 9, 2491], [1, 9, 2492]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2506], "distinct_count": 17}, {"mcvs": [[1, 9, 2521], [1, 9, 2508], [1, 9, 2509]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2521], "distinct_count": 15}, {"mcvs": [[1, 9, 2537], [1, 9, 2523], [1, 9, 2524]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2537], "distinct_count": 16}, {"mcvs": [[1, 9, 2548], [1, 9, 2539], [1, 9, 2540]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2548], "distinct_count": 11}, {"mcvs": [[1, 9, 2559], [1, 9, 2550], [1, 9, 2551]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2559], "distinct_count": 11}, {"mcvs": [[1, 9, 2575], [1, 9, 2561], [1, 9, 2562]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2575], "distinct_count": 16}, {"mcvs": [[1, 9, 2587], [1, 9, 2577], [1, 9, 2578]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2587], "distinct_count": 12}, {"mcvs": [[1, 9, 2606], [1, 9, 2589], [1, 9, 2590]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2606], "distinct_count": 19}, {"mcvs": [[1, 9, 2623], [1, 9, 2608], [1, 9, 2609]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2623], "distinct_count": 17}, {"mcvs": [[1, 9, 2639], [1, 9, 2625], [1, 9, 2626]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2639], "distinct_count": 16}, {"mcvs": [[1, 9, 2651], [1, 9, 2641], [1, 9, 2642]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2651], "distinct_count": 12}, {"mcvs": [[1, 9, 2668], [1, 9, 2653], [1, 9, 2654]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2668], "distinct_count": 17}, {"mcvs": [[1, 9, 2679], [1, 9, 2670], [1, 9, 2671]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2679], "distinct_count": 11}, {"mcvs": [[1, 9, 2694], [1, 9, 2681], [1, 9, 2682]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2694], "distinct_count": 15}, {"mcvs": [[1, 9, 2709], [1, 9, 2696], [1, 9, 2697]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2709], "distinct_count": 15}, {"mcvs": [[1, 9, 2721], [1, 9, 2711], [1, 9, 2712]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2721], "distinct_count": 12}, {"mcvs": [[1, 9, 2739], [1, 9, 2723], [1, 9, 2724]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2739], "distinct_count": 18}, {"mcvs": [[1, 9, 2760], [1, 9, 2741], [1, 9, 2742]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2760], "distinct_count": 21}, {"mcvs": [[1, 9, 2779], [1, 9, 2762], [1, 9, 2763]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2779], "distinct_count": 19}, {"mcvs": [[1, 9, 2798], [1, 9, 2781], [1, 9, 2782]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2798], "distinct_count": 19}, {"mcvs": [[1, 9, 2811], [1, 9, 2800], [1, 9, 2801]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2811], "distinct_count": 13}, {"mcvs": [[1, 9, 2826], [1, 9, 2813], [1, 9, 2814]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2826], "distinct_count": 15}, {"mcvs": [[1, 9, 2848], [1, 9, 2828], [1, 9, 2829]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2848], "distinct_count": 22}, {"mcvs": [[1, 9, 2863], [1, 9, 2850], [1, 9, 2851]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2863], "distinct_count": 15}, {"mcvs": [[1, 9, 2880], [1, 9, 2865], [1, 9, 2866]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2880], "distinct_count": 17}, {"mcvs": [[1, 9, 2890], [1, 9, 2882], [1, 9, 2883]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2890], "distinct_count": 10}, {"mcvs": [[1, 9, 2905], [1, 9, 2892], [1, 9, 2893]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2905], "distinct_count": 15}, {"mcvs": [[1, 9, 2920], [1, 9, 2907], [1, 9, 2908]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2920], "distinct_count": 15}, {"mcvs": [[1, 9, 2935], [1, 9, 2922], [1, 9, 2923]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2935], "distinct_count": 15}, {"mcvs": [[1, 9, 2952], [1, 9, 2937], [1, 9, 2938]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2952], "distinct_count": 17}, {"mcvs": [[1, 9, 2971], [1, 9, 2954], [1, 9, 2955]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2971], "distinct_count": 19}, {"mcvs": [[1, 9, 2987], [1, 9, 2973], [1, 9, 2974]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2987], "distinct_count": 16}, {"mcvs": [[1, 9, 2997], [1, 9, 2989], [1, 9, 2990]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2997], "distinct_count": 10}, {"mcvs": [[1, 10, 14], [1, 9, 2999], [1, 9, 3000]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 14], "distinct_count": 17}, {"mcvs": [[1, 10, 33], [1, 10, 16], [1, 10, 17]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 33], "distinct_count": 19}, {"mcvs": [[1, 10, 49], [1, 10, 35], [1, 10, 36]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 49], "distinct_count": 16}, {"mcvs": [[1, 10, 66], [1, 10, 51], [1, 10, 52]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 66], "distinct_count": 17}, {"mcvs": [[1, 10, 75], [1, 10, 68], [1, 10, 69]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 75], "distinct_count": 9}, {"mcvs": [[1, 10, 98], [1, 10, 77], [1, 10, 78]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 98], "distinct_count": 23}, {"mcvs": [[1, 10, 112], [1, 10, 100], [1, 10, 101]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 112], "distinct_count": 14}, {"mcvs": [[1, 10, 127], [1, 10, 114], [1, 10, 115]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 127], "distinct_count": 15}, {"mcvs": [[1, 10, 142], [1, 10, 129], [1, 10, 130]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 142], "distinct_count": 15}, {"mcvs": [[1, 10, 159], [1, 10, 144], [1, 10, 145]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 159], "distinct_count": 17}, {"mcvs": [[1, 10, 174], [1, 10, 161], [1, 10, 162]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 174], "distinct_count": 15}, {"mcvs": [[1, 10, 193], [1, 10, 176], [1, 10, 177]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 193], "distinct_count": 19}, {"mcvs": [[1, 10, 205], [1, 10, 195], [1, 10, 196]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 205], "distinct_count": 12}, {"mcvs": [[1, 10, 206], [1, 10, 207], [1, 10, 208]], "row_count": 3, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 208], "distinct_count": 3}, {"mcvs": [[1, 10, 225], [1, 10, 210], [1, 10, 211]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 225], "distinct_count": 17}, {"mcvs": [[1, 10, 242], [1, 10, 227], [1, 10, 228]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 242], "distinct_count": 17}, {"mcvs": [[1, 10, 250], [1, 10, 244], [1, 10, 245]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 250], "distinct_count": 8}, {"mcvs": [[1, 10, 271], [1, 10, 252], [1, 10, 253]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 271], "distinct_count": 21}, {"mcvs": [[1, 10, 294], [1, 10, 273], [1, 10, 274]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 294], "distinct_count": 23}, {"mcvs": [[1, 10, 315], [1, 10, 296], [1, 10, 297]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 315], "distinct_count": 21}, {"mcvs": [[1, 10, 330], [1, 10, 317], [1, 10, 318]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 330], "distinct_count": 15}, {"mcvs": [[1, 10, 346], [1, 10, 332], [1, 10, 333]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 346], "distinct_count": 16}, {"mcvs": [[1, 10, 361], [1, 10, 348], [1, 10, 349]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 361], "distinct_count": 15}, {"mcvs": [[1, 10, 368], [1, 10, 363], [1, 10, 364]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 368], "distinct_count": 7}, {"mcvs": [[1, 10, 382], [1, 10, 370], [1, 10, 371]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 382], "distinct_count": 14}, {"mcvs": [[1, 10, 398], [1, 10, 384], [1, 10, 385]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 398], "distinct_count": 16}, {"mcvs": [[1, 10, 415], [1, 10, 400], [1, 10, 401]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 415], "distinct_count": 17}, {"mcvs": [[1, 10, 426], [1, 10, 417], [1, 10, 418]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 426], "distinct_count": 11}, {"mcvs": [[1, 10, 446], [1, 10, 428], [1, 10, 429]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 446], "distinct_count": 20}, {"mcvs": [[1, 10, 458], [1, 10, 448], [1, 10, 449]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 458], "distinct_count": 12}, {"mcvs": [[1, 10, 474], [1, 10, 460], [1, 10, 461]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 474], "distinct_count": 16}, {"mcvs": [[1, 10, 485], [1, 10, 476], [1, 10, 477]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 485], "distinct_count": 11}, {"mcvs": [[1, 10, 502], [1, 10, 487], [1, 10, 488]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 502], "distinct_count": 17}, {"mcvs": [[1, 10, 519], [1, 10, 504], [1, 10, 505]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 519], "distinct_count": 17}, {"mcvs": [[1, 10, 537], [1, 10, 521], [1, 10, 522]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 537], "distinct_count": 18}, {"mcvs": [[1, 10, 555], [1, 10, 539], [1, 10, 540]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 555], "distinct_count": 18}, {"mcvs": [[1, 10, 571], [1, 10, 557], [1, 10, 558]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 571], "distinct_count": 16}, {"mcvs": [[1, 10, 593], [1, 10, 573], [1, 10, 574]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 593], "distinct_count": 22}, {"mcvs": [[1, 10, 604], [1, 10, 595], [1, 10, 596]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 604], "distinct_count": 11}, {"mcvs": [[1, 10, 617], [1, 10, 606], [1, 10, 607]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 617], "distinct_count": 13}, {"mcvs": [[1, 10, 635], [1, 10, 619], [1, 10, 620]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 635], "distinct_count": 18}, {"mcvs": [[1, 10, 653], [1, 10, 637], [1, 10, 638]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 653], "distinct_count": 18}, {"mcvs": [[1, 10, 667], [1, 10, 655], [1, 10, 656]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 667], "distinct_count": 14}, {"mcvs": [[1, 10, 678], [1, 10, 669], [1, 10, 670]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 678], "distinct_count": 11}, {"mcvs": [[1, 10, 692], [1, 10, 680], [1, 10, 681]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 692], "distinct_count": 14}, {"mcvs": [[1, 10, 708], [1, 10, 694], [1, 10, 695]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 708], "distinct_count": 16}, {"mcvs": [[1, 10, 725], [1, 10, 710], [1, 10, 711]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 725], "distinct_count": 17}, {"mcvs": [[1, 10, 749], [1, 10, 727], [1, 10, 728]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 749], "distinct_count": 24}, {"mcvs": [[1, 10, 762], [1, 10, 751], [1, 10, 752]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 762], "distinct_count": 13}, {"mcvs": [[1, 10, 771], [1, 10, 764], [1, 10, 765]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 771], "distinct_count": 9}, {"mcvs": [[1, 10, 793], [1, 10, 773], [1, 10, 774]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 793], "distinct_count": 22}, {"mcvs": [[1, 10, 809], [1, 10, 795], [1, 10, 796]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 809], "distinct_count": 16}, {"mcvs": [[1, 10, 823], [1, 10, 811], [1, 10, 812]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 823], "distinct_count": 14}, {"mcvs": [[1, 10, 835], [1, 10, 825], [1, 10, 826]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 835], "distinct_count": 12}, {"mcvs": [[1, 10, 851], [1, 10, 837], [1, 10, 838]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 851], "distinct_count": 16}, {"mcvs": [[1, 10, 870], [1, 10, 853], [1, 10, 854]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 870], "distinct_count": 19}, {"mcvs": [[1, 10, 887], [1, 10, 872], [1, 10, 873]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 887], "distinct_count": 17}, {"mcvs": [[1, 10, 902], [1, 10, 889], [1, 10, 890]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 902], "distinct_count": 15}, {"mcvs": [[1, 10, 921], [1, 10, 904], [1, 10, 905]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 921], "distinct_count": 19}, {"mcvs": [[1, 10, 935], [1, 10, 923], [1, 10, 924]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 935], "distinct_count": 14}, {"mcvs": [[1, 10, 959], [1, 10, 937], [1, 10, 938]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 959], "distinct_count": 24}, {"mcvs": [[1, 10, 985], [1, 10, 961], [1, 10, 962]], "row_count": 26, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 985], "distinct_count": 26}, {"mcvs": [[1, 10, 1005], [1, 10, 987], [1, 10, 988]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1005], "distinct_count": 20}, {"mcvs": [[1, 10, 1029], [1, 10, 1007], [1, 10, 1008]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1029], "distinct_count": 24}, {"mcvs": [[1, 10, 1049], [1, 10, 1031], [1, 10, 1032]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1049], "distinct_count": 20}, {"mcvs": [[1, 10, 1061], [1, 10, 1051], [1, 10, 1052]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1061], "distinct_count": 12}, {"mcvs": [[1, 10, 1084], [1, 10, 1063], [1, 10, 1064]], "row_count": 23, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1084], "distinct_count": 23}, {"mcvs": [[1, 10, 1106], [1, 10, 1086], [1, 10, 1087]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1106], "distinct_count": 22}, {"mcvs": [[1, 10, 1120], [1, 10, 1108], [1, 10, 1109]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1120], "distinct_count": 14}, {"mcvs": [[1, 10, 1137], [1, 10, 1122], [1, 10, 1123]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1137], "distinct_count": 17}, {"mcvs": [[1, 10, 1152], [1, 10, 1139], [1, 10, 1140]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1152], "distinct_count": 15}, {"mcvs": [[1, 10, 1170], [1, 10, 1154], [1, 10, 1155]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1170], "distinct_count": 18}, {"mcvs": [[1, 10, 1187], [1, 10, 1172], [1, 10, 1173]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1187], "distinct_count": 17}, {"mcvs": [[1, 10, 1202], [1, 10, 1189], [1, 10, 1190]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1202], "distinct_count": 15}, {"mcvs": [[1, 10, 1218], [1, 10, 1204], [1, 10, 1205]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1218], "distinct_count": 16}, {"mcvs": [[1, 10, 1233], [1, 10, 1220], [1, 10, 1221]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1233], "distinct_count": 15}, {"mcvs": [[1, 10, 1249], [1, 10, 1235], [1, 10, 1236]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1249], "distinct_count": 16}, {"mcvs": [[1, 10, 1269], [1, 10, 1251], [1, 10, 1252]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1269], "distinct_count": 20}, {"mcvs": [[1, 10, 1281], [1, 10, 1271], [1, 10, 1272]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1281], "distinct_count": 12}, {"mcvs": [[1, 10, 1298], [1, 10, 1283], [1, 10, 1284]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1298], "distinct_count": 17}, {"mcvs": [[1, 10, 1319], [1, 10, 1300], [1, 10, 1301]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1319], "distinct_count": 21}, {"mcvs": [[1, 10, 1333], [1, 10, 1321], [1, 10, 1322]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1333], "distinct_count": 14}, {"mcvs": [[1, 10, 1351], [1, 10, 1335], [1, 10, 1336]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1351], "distinct_count": 18}, {"mcvs": [[1, 10, 1372], [1, 10, 1353], [1, 10, 1354]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1372], "distinct_count": 21}, {"mcvs": [[1, 10, 1391], [1, 10, 1374], [1, 10, 1375]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1391], "distinct_count": 19}, {"mcvs": [[1, 10, 1403], [1, 10, 1393], [1, 10, 1394]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1403], "distinct_count": 12}, {"mcvs": [[1, 10, 1414], [1, 10, 1405], [1, 10, 1406]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1414], "distinct_count": 11}, {"mcvs": [[1, 10, 1422], [1, 10, 1416], [1, 10, 1417]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1422], "distinct_count": 8}, {"mcvs": [[1, 10, 1440], [1, 10, 1424], [1, 10, 1425]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1440], "distinct_count": 18}, {"mcvs": [[1, 10, 1459], [1, 10, 1442], [1, 10, 1443]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1459], "distinct_count": 19}, {"mcvs": [[1, 10, 1476], [1, 10, 1461], [1, 10, 1462]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1476], "distinct_count": 17}, {"mcvs": [[1, 10, 1488], [1, 10, 1478], [1, 10, 1479]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1488], "distinct_count": 12}, {"mcvs": [[1, 10, 1498], [1, 10, 1490], [1, 10, 1491]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1498], "distinct_count": 10}, {"mcvs": [[1, 10, 1515], [1, 10, 1500], [1, 10, 1501]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1515], "distinct_count": 17}, {"mcvs": [[1, 10, 1528], [1, 10, 1517], [1, 10, 1518]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1528], "distinct_count": 13}, {"mcvs": [[1, 10, 1542], [1, 10, 1530], [1, 10, 1531]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1542], "distinct_count": 14}, {"mcvs": [[1, 10, 1554], [1, 10, 1544], [1, 10, 1545]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1554], "distinct_count": 12}, {"mcvs": [[1, 10, 1569], [1, 10, 1556], [1, 10, 1557]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1569], "distinct_count": 15}, {"mcvs": [[1, 10, 1583], [1, 10, 1571], [1, 10, 1572]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1583], "distinct_count": 14}, {"mcvs": [[1, 10, 1597], [1, 10, 1585], [1, 10, 1586]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1597], "distinct_count": 14}, {"mcvs": [[1, 10, 1613], [1, 10, 1599], [1, 10, 1600]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1613], "distinct_count": 16}, {"mcvs": [[1, 10, 1624], [1, 10, 1615], [1, 10, 1616]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1624], "distinct_count": 11}, {"mcvs": [[1, 10, 1632], [1, 10, 1626], [1, 10, 1627]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1632], "distinct_count": 8}, {"mcvs": [[1, 10, 1650], [1, 10, 1634], [1, 10, 1635]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1650], "distinct_count": 18}, {"mcvs": [[1, 10, 1667], [1, 10, 1652], [1, 10, 1653]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1667], "distinct_count": 17}, {"mcvs": [[1, 10, 1686], [1, 10, 1669], [1, 10, 1670]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1686], "distinct_count": 19}, {"mcvs": [[1, 10, 1694], [1, 10, 1688], [1, 10, 1689]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1694], "distinct_count": 8}, {"mcvs": [[1, 10, 1715], [1, 10, 1696], [1, 10, 1697]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1715], "distinct_count": 21}, {"mcvs": [[1, 10, 1723], [1, 10, 1717], [1, 10, 1718]], "row_count": 8, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1723], "distinct_count": 8}, {"mcvs": [[1, 10, 1743], [1, 10, 1725], [1, 10, 1726]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1743], "distinct_count": 20}, {"mcvs": [[1, 10, 1763], [1, 10, 1745], [1, 10, 1746]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1763], "distinct_count": 20}, {"mcvs": [[1, 10, 1775], [1, 10, 1765], [1, 10, 1766]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1775], "distinct_count": 12}, {"mcvs": [[1, 10, 1797], [1, 10, 1777], [1, 10, 1778]], "row_count": 22, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1797], "distinct_count": 22}, {"mcvs": [[1, 10, 1807], [1, 10, 1799], [1, 10, 1800]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1807], "distinct_count": 10}, {"mcvs": [[1, 10, 1819], [1, 10, 1809], [1, 10, 1810]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1819], "distinct_count": 12}, {"mcvs": [[1, 10, 1837], [1, 10, 1821], [1, 10, 1822]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1837], "distinct_count": 18}, {"mcvs": [[1, 10, 1851], [1, 10, 1839], [1, 10, 1840]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1851], "distinct_count": 14}, {"mcvs": [[1, 10, 1866], [1, 10, 1853], [1, 10, 1854]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1866], "distinct_count": 15}, {"mcvs": [[1, 10, 1877], [1, 10, 1868], [1, 10, 1869]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1877], "distinct_count": 11}, {"mcvs": [[1, 10, 1894], [1, 10, 1879], [1, 10, 1880]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1894], "distinct_count": 17}, {"mcvs": [[1, 10, 1903], [1, 10, 1896], [1, 10, 1897]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1903], "distinct_count": 9}, {"mcvs": [[1, 10, 1916], [1, 10, 1905], [1, 10, 1906]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1916], "distinct_count": 13}, {"mcvs": [[1, 10, 1937], [1, 10, 1918], [1, 10, 1919]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1937], "distinct_count": 21}, {"mcvs": [[1, 10, 1953], [1, 10, 1939], [1, 10, 1940]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1953], "distinct_count": 16}, {"mcvs": [[1, 10, 1969], [1, 10, 1955], [1, 10, 1956]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1969], "distinct_count": 16}, {"mcvs": [[1, 10, 1980], [1, 10, 1971], [1, 10, 1972]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1980], "distinct_count": 11}, {"mcvs": [[1, 10, 1996], [1, 10, 1982], [1, 10, 1983]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1996], "distinct_count": 16}, {"mcvs": [[1, 10, 2009], [1, 10, 1998], [1, 10, 1999]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2009], "distinct_count": 13}, {"mcvs": [[1, 10, 2024], [1, 10, 2011], [1, 10, 2012]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2024], "distinct_count": 15}, {"mcvs": [[1, 10, 2038], [1, 10, 2026], [1, 10, 2027]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2038], "distinct_count": 14}, {"mcvs": [[1, 10, 2055], [1, 10, 2040], [1, 10, 2041]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2055], "distinct_count": 17}, {"mcvs": [[1, 10, 2071], [1, 10, 2057], [1, 10, 2058]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2071], "distinct_count": 16}, {"mcvs": [[1, 10, 2085], [1, 10, 2073], [1, 10, 2074]], "row_count": 14, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2085], "distinct_count": 14}, {"mcvs": [[1, 10, 2105], [1, 10, 2087], [1, 10, 2088]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2105], "distinct_count": 20}, {"mcvs": [[1, 10, 2126], [1, 10, 2107], [1, 10, 2108]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2126], "distinct_count": 21}, {"mcvs": [[1, 10, 2136], [1, 10, 2128], [1, 10, 2129]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2136], "distinct_count": 10}, {"mcvs": [[1, 10, 2151], [1, 10, 2138], [1, 10, 2139]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2151], "distinct_count": 15}, {"mcvs": [[1, 10, 2167], [1, 10, 2153], [1, 10, 2154]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2167], "distinct_count": 16}, {"mcvs": [[1, 10, 2180], [1, 10, 2169], [1, 10, 2170]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2180], "distinct_count": 13}, {"mcvs": [[1, 10, 2196], [1, 10, 2182], [1, 10, 2183]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2196], "distinct_count": 16}, {"mcvs": [[1, 10, 2216], [1, 10, 2198], [1, 10, 2199]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2216], "distinct_count": 20}, {"mcvs": [[1, 10, 2234], [1, 10, 2218], [1, 10, 2219]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2234], "distinct_count": 18}, {"mcvs": [[1, 10, 2243], [1, 10, 2236], [1, 10, 2237]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2243], "distinct_count": 9}, {"mcvs": [[1, 10, 2255], [1, 10, 2245], [1, 10, 2246]], "row_count": 12, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2255], "distinct_count": 12}, {"mcvs": [[1, 10, 2273], [1, 10, 2257], [1, 10, 2258]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2273], "distinct_count": 18}, {"mcvs": [[1, 10, 2292], [1, 10, 2275], [1, 10, 2276]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2292], "distinct_count": 19}, {"mcvs": [[1, 10, 2313], [1, 10, 2294], [1, 10, 2295]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2313], "distinct_count": 21}, {"mcvs": [[1, 10, 2330], [1, 10, 2315], [1, 10, 2316]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2330], "distinct_count": 17}, {"mcvs": [[1, 10, 2337], [1, 10, 2332], [1, 10, 2333]], "row_count": 7, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2337], "distinct_count": 7}, {"mcvs": [[1, 10, 2350], [1, 10, 2339], [1, 10, 2340]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2350], "distinct_count": 13}, {"mcvs": [[1, 10, 2371], [1, 10, 2352], [1, 10, 2353]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2371], "distinct_count": 21}, {"mcvs": [[1, 10, 2386], [1, 10, 2373], [1, 10, 2374]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2386], "distinct_count": 15}, {"mcvs": [[1, 10, 2397], [1, 10, 2388], [1, 10, 2389]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2397], "distinct_count": 11}, {"mcvs": [[1, 10, 2412], [1, 10, 2399], [1, 10, 2400]], "row_count": 15, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2412], "distinct_count": 15}, {"mcvs": [[1, 10, 2431], [1, 10, 2414], [1, 10, 2415]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2431], "distinct_count": 19}, {"mcvs": [[1, 10, 2440], [1, 10, 2433], [1, 10, 2434]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2440], "distinct_count": 9}, {"mcvs": [[1, 10, 2458], [1, 10, 2442], [1, 10, 2443]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2458], "distinct_count": 18}, {"mcvs": [[1, 10, 2474], [1, 10, 2460], [1, 10, 2461]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2474], "distinct_count": 16}, {"mcvs": [[1, 10, 2495], [1, 10, 2476], [1, 10, 2477]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2495], "distinct_count": 21}, {"mcvs": [[1, 10, 2511], [1, 10, 2497], [1, 10, 2498]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2511], "distinct_count": 16}, {"mcvs": [[1, 10, 2530], [1, 10, 2513], [1, 10, 2514]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2530], "distinct_count": 19}, {"mcvs": [[1, 10, 2541], [1, 10, 2532], [1, 10, 2533]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2541], "distinct_count": 11}, {"mcvs": [[1, 10, 2558], [1, 10, 2543], [1, 10, 2544]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2558], "distinct_count": 17}, {"mcvs": [[1, 10, 2575], [1, 10, 2560], [1, 10, 2561]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2575], "distinct_count": 17}, {"mcvs": [[1, 10, 2585], [1, 10, 2577], [1, 10, 2578]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2585], "distinct_count": 10}, {"mcvs": [[1, 10, 2598], [1, 10, 2587], [1, 10, 2588]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2598], "distinct_count": 13}, {"mcvs": [[1, 10, 2608], [1, 10, 2600], [1, 10, 2601]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2608], "distinct_count": 10}, {"mcvs": [[1, 10, 2626], [1, 10, 2610], [1, 10, 2611]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2626], "distinct_count": 18}, {"mcvs": [[1, 10, 2639], [1, 10, 2628], [1, 10, 2629]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2639], "distinct_count": 13}, {"mcvs": [[1, 10, 2649], [1, 10, 2641], [1, 10, 2642]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2649], "distinct_count": 10}, {"mcvs": [[1, 10, 2665], [1, 10, 2651], [1, 10, 2652]], "row_count": 16, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2665], "distinct_count": 16}, {"mcvs": [[1, 10, 2682], [1, 10, 2667], [1, 10, 2668]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2682], "distinct_count": 17}, {"mcvs": [[1, 10, 2695], [1, 10, 2684], [1, 10, 2685]], "row_count": 13, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2695], "distinct_count": 13}, {"mcvs": [[1, 10, 2712], [1, 10, 2697], [1, 10, 2698]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2712], "distinct_count": 17}, {"mcvs": [[1, 10, 2723], [1, 10, 2714], [1, 10, 2715]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2723], "distinct_count": 11}, {"mcvs": [[1, 10, 2742], [1, 10, 2725], [1, 10, 2726]], "row_count": 19, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2742], "distinct_count": 19}, {"mcvs": [[1, 10, 2766], [1, 10, 2744], [1, 10, 2745]], "row_count": 24, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2766], "distinct_count": 24}, {"mcvs": [[1, 10, 2783], [1, 10, 2768], [1, 10, 2769]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2783], "distinct_count": 17}, {"mcvs": [[1, 10, 2808], [1, 10, 2785], [1, 10, 2786]], "row_count": 25, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2808], "distinct_count": 25}, {"mcvs": [[1, 10, 2825], [1, 10, 2810], [1, 10, 2811]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2825], "distinct_count": 17}, {"mcvs": [[1, 10, 2843], [1, 10, 2827], [1, 10, 2828]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2843], "distinct_count": 18}, {"mcvs": [[1, 10, 2854], [1, 10, 2845], [1, 10, 2846]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2854], "distinct_count": 11}, {"mcvs": [[1, 10, 2874], [1, 10, 2856], [1, 10, 2857]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2874], "distinct_count": 20}, {"mcvs": [[1, 10, 2884], [1, 10, 2876], [1, 10, 2877]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2884], "distinct_count": 10}, {"mcvs": [[1, 10, 2901], [1, 10, 2886], [1, 10, 2887]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2901], "distinct_count": 17}, {"mcvs": [[1, 10, 2918], [1, 10, 2903], [1, 10, 2904]], "row_count": 17, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2918], "distinct_count": 17}, {"mcvs": [[1, 10, 2938], [1, 10, 2920], [1, 10, 2921]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2938], "distinct_count": 20}, {"mcvs": [[1, 10, 2956], [1, 10, 2940], [1, 10, 2941]], "row_count": 18, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2956], "distinct_count": 18}, {"mcvs": [[1, 10, 2966], [1, 10, 2958], [1, 10, 2959]], "row_count": 10, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2966], "distinct_count": 10}, {"mcvs": [[1, 10, 2975], [1, 10, 2968], [1, 10, 2969]], "row_count": 9, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2975], "distinct_count": 9}, {"mcvs": [[1, 10, 2996], [1, 10, 2977], [1, 10, 2978]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2996], "distinct_count": 21}, {"mcvs": [[1, 10, 3000], [1, 10, 2998], [1, 10, 2999]], "row_count": 4, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 3000], "distinct_count": 4}], "columns": ["c_w_id", "c_d_id", "c_id"], "avg_size": 0, "qualifier": {"database": "sbt", "table": "customer2", "index": "primary"}, "row_count": 30000, "created_at": "2023-11-10T15:06:17-08:00", "null_count": 30000, "distinct_count": 30000}';`,
`analyze table customer2 update histogram on (c_w_id, c_d_id, c_last, c_first) using data '{"types": ["smallint", "tinyint", "varchar(16)", "varchar(16)"], "buckets": [{"mcvs": [[1, 1, "ABLEANTIPRI", "first-mlcrygmuhv"], [1, 1, "ABLEABLEABLE", "first-wejugfujb"], [1, 1, "ABLEABLEANTI", "first-lhdqj"]], "row_count": 56, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ABLEANTIPRI", "first-mlcrygmuhv"], "distinct_count": 56}, {"mcvs": [[1, 1, "ABLECALLYPRI", "first-wo"], [1, 1, "ABLEANTIPRI", "first-szdac"], [1, 1, "ABLEATIONABLE", "first-sik"]], "row_count": 79, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ABLECALLYPRI", "first-wo"], "distinct_count": 79}, {"mcvs": [[1, 1, "ABLEESECALLY", "first-qonvi"], [1, 1, "ABLEEINGABLE", "first-lafkxeeh"], [1, 1, "ABLEEINGABLE", "first-lkzyrijtv"]], "row_count": 57, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ABLEESECALLY", "first-qonvi"], "distinct_count": 57}, {"mcvs": [[1, 1, "ABLEPRICALLY", "first-xoirlqriz"], [1, 1, "ABLEESEEING", "first-ukpvpurooo"], [1, 1, "ABLEESEEING", "first-wqkk"]], "row_count": 97, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ABLEPRICALLY", "first-xoirlqriz"], "distinct_count": 97}, {"mcvs": [[1, 1, "ANTIATIONEING", "first-ijhedwyl"], [1, 1, "ABLEPRIEING", "first-lmatnznkx"], [1, 1, "ABLEPRIEING", "first-nix"]], "row_count": 89, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ANTIATIONEING", "first-ijhedwyl"], "distinct_count": 89}, {"mcvs": [[1, 1, "ANTIEINGATION", "first-joakbv"], [1, 1, "ANTIATIONEING", "first-oux"], [1, 1, "ANTIATIONESE", "first-rnugentg"]], "row_count": 79, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ANTIEINGATION", "first-joakbv"], "distinct_count": 79}, {"mcvs": [[1, 1, "ANTIOUGHTEING", "first-rexukocq"], [1, 1, "ANTIEINGATION", "first-lurbrfito"], [1, 1, "ANTIEINGATION", "first-maohmsoww"]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ANTIOUGHTEING", "first-rexukocq"], "distinct_count": 77}, {"mcvs": [[1, 1, "ATIONABLEANTI", "first-oiq"], [1, 1, "ANTIOUGHTOUGHT", "first-evtfiift"], [1, 1, "ANTIOUGHTOUGHT", "first-nhs"]], "row_count": 83, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ATIONABLEANTI", "first-oiq"], "distinct_count": 83}, {"mcvs": [[1, 1, "ATIONATIONESE", "first-yetymsha"], [1, 1, "ATIONABLEATION", "first-fmi"], [1, 1, "ATIONABLEATION", "first-uclqvq"]], "row_count": 69, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ATIONATIONESE", "first-yetymsha"], "distinct_count": 69}, {"mcvs": [[1, 1, "ATIONCALLYPRES", "first-ld"], [1, 1, "ATIONATIONOUGHT", "first-vpbpww"], [1, 1, "ATIONATIONPRES", "first-ga"]], "row_count": 72, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ATIONCALLYPRES", "first-ld"], "distinct_count": 72}, {"mcvs": [[1, 1, "ATIONEINGPRI", "first-zbmf"], [1, 1, "ATIONCALLYPRES", "first-wyc"], [1, 1, "ATIONCALLYPRES", "first-ygeoaa"]], "row_count": 37, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ATIONEINGPRI", "first-zbmf"], "distinct_count": 37}, {"mcvs": [[1, 1, "ATIONPRESANTI", "first-hctqd"], [1, 1, "ATIONESEABLE", "first-sfznvz"], [1, 1, "ATIONESEANTI", "first-dtbs"]], "row_count": 68, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ATIONPRESANTI", "first-hctqd"], "distinct_count": 68}, {"mcvs": [[1, 1, "BARANTIEING", "first-ks"], [1, 1, "ATIONPRESATION", "first-dlpzn"], [1, 1, "ATIONPRESATION", "first-wfqm"]], "row_count": 99, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "BARANTIEING", "first-ks"], "distinct_count": 99}, {"mcvs": [[1, 1, "BARCALLYATION", "first-pnue"], [1, 1, "BARANTIEING", "first-xrndk"], [1, 1, "BARANTIESE", "first-dshjcqyvw"]], "row_count": 72, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "BARCALLYATION", "first-pnue"], "distinct_count": 72}, {"mcvs": [[1, 1, "BAREINGESE", "first-jts"], [1, 1, "BARCALLYBAR", "first-zxodnie"], [1, 1, "BARCALLYCALLY", "first-bcv"]], "row_count": 44, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "BAREINGESE", "first-jts"], "distinct_count": 44}, {"mcvs": [[1, 1, "BARPRESOUGHT", "first-feanrgcsw"], [1, 1, "BAREINGESE", "first-vpnwj"], [1, 1, "BAREINGOUGHT", "first-gffzuo"]], "row_count": 89, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "BARPRESOUGHT", "first-feanrgcsw"], "distinct_count": 89}, {"mcvs": [[1, 1, "CALLYABLEOUGHT", "first-pj"], [1, 1, "BARPRESOUGHT", "first-uolho"], [1, 1, "BARPRESOUGHT", "first-wbspfcif"]], "row_count": 60, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "CALLYABLEOUGHT", "first-pj"], "distinct_count": 60}, {"mcvs": [[1, 1, "CALLYCALLYABLE", "first-wp"], [1, 1, "CALLYABLEPRES", "first-fraowt"], [1, 1, "CALLYABLEPRES", "first-pleh"]], "row_count": 115, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "CALLYCALLYABLE", "first-wp"], "distinct_count": 115}, {"mcvs": [[1, 1, "CALLYEINGANTI", "first-ppagwuoxw"], [1, 1, "CALLYCALLYANTI", "first-jvak"], [1, 1, "CALLYCALLYANTI", "first-liwol"]], "row_count": 34, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "CALLYEINGANTI", "first-ppagwuoxw"], "distinct_count": 34}, {"mcvs": [[1, 1, "CALLYPRESOUGHT", "first-rds"], [1, 1, "CALLYEINGATION", "first-imfe"], [1, 1, "CALLYEINGATION", "first-uiqbgsue"]], "row_count": 116, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "CALLYPRESOUGHT", "first-rds"], "distinct_count": 116}, {"mcvs": [[1, 1, "EINGABLEPRES", "first-st"], [1, 1, "CALLYPRESPRES", "first-gqe"], [1, 1, "CALLYPRESPRES", "first-llel"]], "row_count": 67, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "EINGABLEPRES", "first-st"], "distinct_count": 67}, {"mcvs": [[1, 1, "EINGCALLYATION", "first-uznlajfcv"], [1, 1, "EINGABLEPRES", "first-ujgalcbl"], [1, 1, "EINGABLEPRI", "first-iuclray"]], "row_count": 91, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "EINGCALLYATION", "first-uznlajfcv"], "distinct_count": 91}, {"mcvs": [[1, 1, "EINGPRESABLE", "first-dweuxrh"], [1, 1, "EINGCALLYBAR", "first-nmfmxgm"], [1, 1, "EINGCALLYBAR", "first-per"]], "row_count": 115, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "EINGPRESABLE", "first-dweuxrh"], "distinct_count": 115}, {"mcvs": [[1, 1, "ESEABLEABLE", "first-zxixgkz"], [1, 1, "EINGPRESABLE", "first-ntdkdqfspi"], [1, 1, "EINGPRESANTI", "first-eeanzm"]], "row_count": 65, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ESEABLEABLE", "first-zxixgkz"], "distinct_count": 65}, {"mcvs": [[1, 1, "ESEANTIBAR", "first-ihjvgqp"], [1, 1, "ESEABLEATION", "first-oral"], [1, 1, "ESEABLEATION", "first-pp"]], "row_count": 37, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ESEANTIBAR", "first-ihjvgqp"], "distinct_count": 37}, {"mcvs": [[1, 1, "ESEEINGESE", "first-ugjpvv"], [1, 1, "ESEANTIBAR", "first-ux"], [1, 1, "ESEANTICALLY", "first-kbsgoq"]], "row_count": 113, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "ESEEINGESE", "first-ugjpvv"], "distinct_count": 113}, {"mcvs": [[1, 1, "OUGHTABLEBAR", "first-owdvzhv"], [1, 1, "ESEEINGOUGHT", "first-njruxceyrq"], [1, 1, "ESEEINGPRES", "first-cr"]], "row_count": 122, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "OUGHTABLEBAR", "first-owdvzhv"], "distinct_count": 122}, {"mcvs": [[1, 1, "OUGHTBARATION", "first-gsfjmprpo"], [1, 1, "OUGHTABLECALLY", "first-jfpxg"], [1, 1, "OUGHTABLECALLY", "first-jro"]], "row_count": 85, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "OUGHTBARATION", "first-gsfjmprpo"], "distinct_count": 85}, {"mcvs": [[1, 1, "OUGHTEINGCALLY", "first-ejeniiuuw"], [1, 1, "OUGHTBARATION", "first-zzz"], [1, 1, "OUGHTBARBAR", "first-lhhwnacy"]], "row_count": 66, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "OUGHTEINGCALLY", "first-ejeniiuuw"], "distinct_count": 66}, {"mcvs": [[1, 1, "OUGHTPRESESE", "first-tgduzrzjr"], [1, 1, "OUGHTEINGCALLY", "first-ky"], [1, 1, "OUGHTEINGCALLY", "first-xjn"]], "row_count": 107, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "OUGHTPRESESE", "first-tgduzrzjr"], "distinct_count": 107}, {"mcvs": [[1, 1, "PRESATIONATION", "first-lwmhfox"], [1, 1, "OUGHTPRESOUGHT", "first-gntoex"], [1, 1, "OUGHTPRESOUGHT", "first-sdsmqlqbi"]], "row_count": 115, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "PRESATIONATION", "first-lwmhfox"], "distinct_count": 115}, {"mcvs": [[1, 1, "PRESEINGATION", "first-vahifpdj"], [1, 1, "PRESATIONBAR", "first-obxuqymtx"], [1, 1, "PRESATIONCALLY", "first-uwp"]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "PRESEINGATION", "first-vahifpdj"], "distinct_count": 82}, {"mcvs": [[1, 1, "PRESOUGHTPRES", "first-nrrtyjbrpf"], [1, 1, "PRESEINGBAR", "first-odsh"], [1, 1, "PRESEINGBAR", "first-tvyrahoz"]], "row_count": 81, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "PRESOUGHTPRES", "first-nrrtyjbrpf"], "distinct_count": 81}, {"mcvs": [[1, 1, "PRIATIONPRI", "first-iumgwesn"], [1, 1, "PRESPRESABLE", "first-ygsia"], [1, 1, "PRESPRESANTI", "first-bfymzv"]], "row_count": 137, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "PRIATIONPRI", "first-iumgwesn"], "distinct_count": 137}, {"mcvs": [[1, 1, "PRIEINGANTI", "first-pemhrlhtt"], [1, 1, "PRIBARABLE", "first-btzjes"], [1, 1, "PRIBARABLE", "first-jushib"]], "row_count": 84, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "PRIEINGANTI", "first-pemhrlhtt"], "distinct_count": 84}, {"mcvs": [[1, 1, "PRIPRESEING", "first-tln"], [1, 1, "PRIEINGATION", "first-fdhdjayqxn"], [1, 1, "PRIEINGATION", "first-nmisegauyl"]], "row_count": 102, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, "PRIPRESEING", "first-tln"], "distinct_count": 102}, {"mcvs": [[1, 2, "ABLEANTIOUGHT", "first-mvrduq"], [1, 1, "PRIPRESEING", "first-zjbukugzwx"], [1, 1, "PRIPRESESE", "first-qmaoaar"]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "ABLEANTIOUGHT", "first-mvrduq"], "distinct_count": 94}, {"mcvs": [[1, 2, "ABLECALLYPRI", "first-cvpdvsvvy"], [1, 2, "ABLEANTIPRES", "first-iqwuucnla"], [1, 2, "ABLEANTIPRES", "first-oqa"]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "ABLECALLYPRI", "first-cvpdvsvvy"], "distinct_count": 94}, {"mcvs": [[1, 2, "ABLEPRIANTI", "first-tgpodz"], [1, 2, "ABLECALLYPRI", "first-wcighxoptn"], [1, 2, "ABLECALLYPRI", "first-xzmcgwxml"]], "row_count": 131, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "ABLEPRIANTI", "first-tgpodz"], "distinct_count": 131}, {"mcvs": [[1, 2, "ANTIATIONESE", "first-giz"], [1, 2, "ABLEPRIATION", "first-mednspe"], [1, 2, "ABLEPRIATION", "first-sjlno"]], "row_count": 113, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "ANTIATIONESE", "first-giz"], "distinct_count": 113}, {"mcvs": [[1, 2, "ANTIEINGOUGHT", "first-aucwoqj"], [1, 2, "ANTIATIONESE", "first-lmnr"], [1, 2, "ANTIATIONESE", "first-ogqzmmppg"]], "row_count": 91, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "ANTIEINGOUGHT", "first-aucwoqj"], "distinct_count": 91}, {"mcvs": [[1, 2, "ANTIPRESESE", "first-odzni"], [1, 2, "ANTIEINGPRES", "first-lxcubo"], [1, 2, "ANTIEINGPRES", "first-wbio"]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "ANTIPRESESE", "first-odzni"], "distinct_count": 82}, {"mcvs": [[1, 2, "ATIONABLEANTI", "first-dkwg"], [1, 2, "ANTIPRESOUGHT", "first-fhx"], [1, 2, "ANTIPRESOUGHT", "first-giyhmlp"]], "row_count": 52, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "ATIONABLEANTI", "first-dkwg"], "distinct_count": 52}, {"mcvs": [[1, 2, "ATIONBARESE", "first-kkmc"], [1, 2, "ATIONABLEANTI", "first-ijbjexidmi"], [1, 2, "ATIONABLEATION", "first-axwerte"]], "row_count": 103, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "ATIONBARESE", "first-kkmc"], "distinct_count": 103}, {"mcvs": [[1, 2, "ATIONEINGESE", "first-xsfprnav"], [1, 2, "ATIONBARESE", "first-xcsmkzt"], [1, 2, "ATIONBAROUGHT", "first-lmuds"]], "row_count": 60, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "ATIONEINGESE", "first-xsfprnav"], "distinct_count": 60}, {"mcvs": [[1, 2, "ATIONOUGHTATION", "first-imcuap"], [1, 2, "ATIONEINGOUGHT", "first-phdc"], [1, 2, "ATIONEINGOUGHT", "first-qk"]], "row_count": 53, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "ATIONOUGHTATION", "first-imcuap"], "distinct_count": 53}, {"mcvs": [[1, 2, "BARABLECALLY", "first-shc"], [1, 2, "ATIONOUGHTCALLY", "first-iryjtoeb"], [1, 2, "ATIONOUGHTCALLY", "first-spkmohrign"]], "row_count": 91, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "BARABLECALLY", "first-shc"], "distinct_count": 91}, {"mcvs": [[1, 2, "BARATIONEING", "first-gndvemeyk"], [1, 2, "BARABLEEING", "first-oormg"], [1, 2, "BARABLEEING", "first-smiljfw"]], "row_count": 55, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "BARATIONEING", "first-gndvemeyk"], "distinct_count": 55}, {"mcvs": [[1, 2, "BAREINGPRES", "first-pqokemwyh"], [1, 2, "BARATIONEING", "first-ujv"], [1, 2, "BARATIONEING", "first-zp"]], "row_count": 86, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "BAREINGPRES", "first-pqokemwyh"], "distinct_count": 86}, {"mcvs": [[1, 2, "BARPRESESE", "first-ba"], [1, 2, "BAREINGPRI", "first-firnt"], [1, 2, "BAREINGPRI", "first-xtz"]], "row_count": 83, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "BARPRESESE", "first-ba"], "distinct_count": 83}, {"mcvs": [[1, 2, "CALLYATIONCALLY", "first-mhdwyh"], [1, 2, "BARPRESESE", "first-rnotkhbd"], [1, 2, "BARPRESESE", "first-sq"]], "row_count": 120, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "CALLYATIONCALLY", "first-mhdwyh"], "distinct_count": 120}, {"mcvs": [[1, 2, "CALLYEINGPRI", "first-gltplbz"], [1, 2, "CALLYATIONEING", "first-uxjp"], [1, 2, "CALLYATIONEING", "first-zezdne"]], "row_count": 97, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "CALLYEINGPRI", "first-gltplbz"], "distinct_count": 97}, {"mcvs": [[1, 2, "CALLYOUGHTPRES", "first-yaceijaxw"], [1, 2, "CALLYEINGPRI", "first-la"], [1, 2, "CALLYEINGPRI", "first-nhkrxrmbda"]], "row_count": 58, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "CALLYOUGHTPRES", "first-yaceijaxw"], "distinct_count": 58}, {"mcvs": [[1, 2, "EINGABLEANTI", "first-dhnahaz"], [1, 2, "CALLYOUGHTPRI", "first-nssrduxvzz"], [1, 2, "CALLYOUGHTPRI", "first-xjtfubvapd"]], "row_count": 88, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "EINGABLEANTI", "first-dhnahaz"], "distinct_count": 88}, {"mcvs": [[1, 2, "EINGBARESE", "first-drcz"], [1, 2, "EINGABLEATION", "first-tsqlnh"], [1, 2, "EINGABLEBAR", "first-btmgqztj"]], "row_count": 102, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "EINGBARESE", "first-drcz"], "distinct_count": 102}, {"mcvs": [[1, 2, "EINGESEBAR", "first-cfere"], [1, 2, "EINGBARESE", "first-ur"], [1, 2, "EINGBARESE", "first-zyxzqtwpao"]], "row_count": 83, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "EINGESEBAR", "first-cfere"], "distinct_count": 83}, {"mcvs": [[1, 2, "EINGPRESCALLY", "first-qgigkd"], [1, 2, "EINGESEBAR", "first-rbrt"], [1, 2, "EINGESEBAR", "first-uivyfrzpbo"]], "row_count": 71, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "EINGPRESCALLY", "first-qgigkd"], "distinct_count": 71}, {"mcvs": [[1, 2, "ESEANTIBAR", "first-vhbeo"], [1, 2, "EINGPRESEING", "first-qenplymfbk"], [1, 2, "EINGPRESEING", "first-simh"]], "row_count": 85, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "ESEANTIBAR", "first-vhbeo"], "distinct_count": 85}, {"mcvs": [[1, 2, "ESEBAREING", "first-dbzykmwog"], [1, 2, "ESEANTICALLY", "first-ki"], [1, 2, "ESEANTICALLY", "first-loqefyfujy"]], "row_count": 59, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "ESEBAREING", "first-dbzykmwog"], "distinct_count": 59}, {"mcvs": [[1, 2, "ESEEINGBAR", "first-yypaa"], [1, 2, "ESEBAREING", "first-wq"], [1, 2, "ESEBARESE", "first-jvjphbxjmt"]], "row_count": 60, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "ESEEINGBAR", "first-yypaa"], "distinct_count": 60}, {"mcvs": [[1, 2, "ESEPRESPRI", "first-lrjgxknjff"], [1, 2, "ESEEINGCALLY", "first-em"], [1, 2, "ESEEINGCALLY", "first-fwfzrkyojh"]], "row_count": 103, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "ESEPRESPRI", "first-lrjgxknjff"], "distinct_count": 103}, {"mcvs": [[1, 2, "OUGHTANTIEING", "first-hutrijted"], [1, 2, "ESEPRIABLE", "first-wesrssqcvl"], [1, 2, "ESEPRIANTI", "first-ddpgac"]], "row_count": 76, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "OUGHTANTIEING", "first-hutrijted"], "distinct_count": 76}, {"mcvs": [[1, 2, "OUGHTBARPRI", "first-gzvtc"], [1, 2, "OUGHTANTIEING", "first-pbo"], [1, 2, "OUGHTANTIEING", "first-srikdmpz"]], "row_count": 63, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "OUGHTBARPRI", "first-gzvtc"], "distinct_count": 63}, {"mcvs": [[1, 2, "OUGHTESEPRI", "first-nwzqjjhtc"], [1, 2, "OUGHTBARPRI", "first-olzucjfa"], [1, 2, "OUGHTBARPRI", "first-vmbispxzt"]], "row_count": 68, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "OUGHTESEPRI", "first-nwzqjjhtc"], "distinct_count": 68}, {"mcvs": [[1, 2, "OUGHTPRIEING", "first-hrvouvk"], [1, 2, "OUGHTOUGHTABLE", "first-hb"], [1, 2, "OUGHTOUGHTABLE", "first-uj"]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "OUGHTPRIEING", "first-hrvouvk"], "distinct_count": 77}, {"mcvs": [[1, 2, "PRESATIONATION", "first-gn"], [1, 2, "OUGHTPRIEING", "first-zvnvjmth"], [1, 2, "OUGHTPRIESE", "first-io"]], "row_count": 89, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "PRESATIONATION", "first-gn"], "distinct_count": 89}, {"mcvs": [[1, 2, "PRESEINGATION", "first-zrvgyrlmrv"], [1, 2, "PRESATIONATION", "first-rfdtwb"], [1, 2, "PRESATIONATION", "first-ttulmydvjl"]], "row_count": 96, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "PRESEINGATION", "first-zrvgyrlmrv"], "distinct_count": 96}, {"mcvs": [[1, 2, "PRESPRESPRES", "first-uehturqky"], [1, 2, "PRESEINGCALLY", "first-bhintq"], [1, 2, "PRESEINGCALLY", "first-bmozlqqt"]], "row_count": 112, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "PRESPRESPRES", "first-uehturqky"], "distinct_count": 112}, {"mcvs": [[1, 2, "PRIANTIESE", "first-mrnparsgcw"], [1, 2, "PRESPRESPRI", "first-bigpqocbrr"], [1, 2, "PRESPRESPRI", "first-jdqffqb"]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "PRIANTIESE", "first-mrnparsgcw"], "distinct_count": 82}, {"mcvs": [[1, 2, "PRIBARPRI", "first-sepagdeer"], [1, 2, "PRIANTIOUGHT", "first-qzligcg"], [1, 2, "PRIANTIPRES", "first-kun"]], "row_count": 63, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "PRIBARPRI", "first-sepagdeer"], "distinct_count": 63}, {"mcvs": [[1, 2, "PRIESEESE", "first-pidcyydxdc"], [1, 2, "PRICALLYABLE", "first-na"], [1, 2, "PRICALLYABLE", "first-pxe"]], "row_count": 91, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "PRIESEESE", "first-pidcyydxdc"], "distinct_count": 91}, {"mcvs": [[1, 2, "PRIPRESPRI", "first-rcvhx"], [1, 2, "PRIESEOUGHT", "first-prpmiuqahv"], [1, 2, "PRIESEPRES", "first-gvsjt"]], "row_count": 71, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, "PRIPRESPRI", "first-rcvhx"], "distinct_count": 71}, {"mcvs": [[1, 3, "ABLEANTIESE", "first-jtelbcyiey"], [1, 2, "PRIPRIABLE", "first-bovosnfbea"], [1, 2, "PRIPRIABLE", "first-dakfnyf"]], "row_count": 93, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ABLEANTIESE", "first-jtelbcyiey"], "distinct_count": 93}, {"mcvs": [[1, 3, "ABLECALLYPRES", "first-sxor"], [1, 3, "ABLEANTIESE", "first-wijgkxietq"], [1, 3, "ABLEANTIESE", "first-ymgzzmybyl"]], "row_count": 90, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ABLECALLYPRES", "first-sxor"], "distinct_count": 90}, {"mcvs": [[1, 3, "ABLEPRESCALLY", "first-afr"], [1, 3, "ABLECALLYPRI", "first-nbxsmv"], [1, 3, "ABLEEINGABLE", "first-ehbanecw"]], "row_count": 117, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ABLEPRESCALLY", "first-afr"], "distinct_count": 117}, {"mcvs": [[1, 3, "ANTIANTIABLE", "first-dfnm"], [1, 3, "ABLEPRESEING", "first-aubut"], [1, 3, "ABLEPRESEING", "first-nsk"]], "row_count": 78, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ANTIANTIABLE", "first-dfnm"], "distinct_count": 78}, {"mcvs": [[1, 3, "ANTIBAROUGHT", "first-vx"], [1, 3, "ANTIANTIABLE", "first-iredfab"], [1, 3, "ANTIANTIABLE", "first-vrio"]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ANTIBAROUGHT", "first-vx"], "distinct_count": 82}, {"mcvs": [[1, 3, "ANTIEINGPRI", "first-ardntxzgdu"], [1, 3, "ANTIBARPRES", "first-tjrtwnqusm"], [1, 3, "ANTIBARPRES", "first-ylg"]], "row_count": 56, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ANTIEINGPRI", "first-ardntxzgdu"], "distinct_count": 56}, {"mcvs": [[1, 3, "ANTIOUGHTOUGHT", "first-lc"], [1, 3, "ANTIEINGPRI", "first-tsj"], [1, 3, "ANTIESEABLE", "first-cfrtvyzle"]], "row_count": 61, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ANTIOUGHTOUGHT", "first-lc"], "distinct_count": 61}, {"mcvs": [[1, 3, "ATIONANTIPRI", "first-rfoqkd"], [1, 3, "ANTIOUGHTOUGHT", "first-xqccaj"], [1, 3, "ANTIOUGHTPRES", "first-cqth"]], "row_count": 115, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ATIONANTIPRI", "first-rfoqkd"], "distinct_count": 115}, {"mcvs": [[1, 3, "ATIONCALLYANTI", "first-cedgnekmsg"], [1, 3, "ATIONATIONABLE", "first-nsacdwktoz"], [1, 3, "ATIONATIONABLE", "first-shfksf"]], "row_count": 76, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ATIONCALLYANTI", "first-cedgnekmsg"], "distinct_count": 76}, {"mcvs": [[1, 3, "ATIONEINGPRI", "first-kh"], [1, 3, "ATIONCALLYANTI", "first-wmnluxwn"], [1, 3, "ATIONCALLYATION", "first-bxh"]], "row_count": 58, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ATIONEINGPRI", "first-kh"], "distinct_count": 58}, {"mcvs": [[1, 3, "ATIONPRIABLE", "first-kbo"], [1, 3, "ATIONEINGPRI", "first-wfi"], [1, 3, "ATIONESEABLE", "first-ecfdvsj"]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ATIONPRIABLE", "first-kbo"], "distinct_count": 94}, {"mcvs": [[1, 3, "BARANTIATION", "first-rdjqhqr"], [1, 3, "ATIONPRIANTI", "first-ajalsm"], [1, 3, "ATIONPRIANTI", "first-frn"]], "row_count": 64, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "BARANTIATION", "first-rdjqhqr"], "distinct_count": 64}, {"mcvs": [[1, 3, "BARCALLYESE", "first-jtnnfe"], [1, 3, "BARANTIBAR", "first-qficqluvws"], [1, 3, "BARANTIBAR", "first-qz"]], "row_count": 98, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "BARCALLYESE", "first-jtnnfe"], "distinct_count": 98}, {"mcvs": [[1, 3, "BARPRESATION", "first-rapnofqiz"], [1, 3, "BARCALLYESE", "first-yachnqa"], [1, 3, "BARCALLYOUGHT", "first-ajlwxuou"]], "row_count": 99, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "BARPRESATION", "first-rapnofqiz"], "distinct_count": 99}, {"mcvs": [[1, 3, "CALLYANTIPRES", "first-oukmrep"], [1, 3, "BARPRESBAR", "first-ljlf"], [1, 3, "BARPRESBAR", "first-sfjecrism"]], "row_count": 96, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "CALLYANTIPRES", "first-oukmrep"], "distinct_count": 96}, {"mcvs": [[1, 3, "CALLYBAROUGHT", "first-byv"], [1, 3, "CALLYATIONABLE", "first-cxtacqslgr"], [1, 3, "CALLYATIONABLE", "first-nzef"]], "row_count": 64, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "CALLYBAROUGHT", "first-byv"], "distinct_count": 64}, {"mcvs": [[1, 3, "CALLYEINGABLE", "first-dp"], [1, 3, "CALLYBAROUGHT", "first-wyzsoh"], [1, 3, "CALLYBAROUGHT", "first-zgxgp"]], "row_count": 43, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "CALLYEINGABLE", "first-dp"], "distinct_count": 43}, {"mcvs": [[1, 3, "CALLYPRIANTI", "first-otq"], [1, 3, "CALLYEINGABLE", "first-iakrxva"], [1, 3, "CALLYEINGABLE", "first-ukp"]], "row_count": 119, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "CALLYPRIANTI", "first-otq"], "distinct_count": 119}, {"mcvs": [[1, 3, "EINGATIONPRI", "first-cd"], [1, 3, "CALLYPRIATION", "first-safl"], [1, 3, "CALLYPRIATION", "first-smlb"]], "row_count": 112, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "EINGATIONPRI", "first-cd"], "distinct_count": 112}, {"mcvs": [[1, 3, "EINGESEBAR", "first-uufyd"], [1, 3, "EINGATIONPRI", "first-xfflkd"], [1, 3, "EINGATIONPRI", "first-xpqvqyp"]], "row_count": 99, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "EINGESEBAR", "first-uufyd"], "distinct_count": 99}, {"mcvs": [[1, 3, "EINGOUGHTPRI", "first-npfumg"], [1, 3, "EINGESEBAR", "first-yqdyit"], [1, 3, "EINGESECALLY", "first-fbqsh"]], "row_count": 39, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "EINGOUGHTPRI", "first-npfumg"], "distinct_count": 39}, {"mcvs": [[1, 3, "ESEABLEABLE", "first-jhmoi"], [1, 3, "EINGOUGHTPRI", "first-qohnxhozcr"], [1, 3, "EINGOUGHTPRI", "first-uahgrnassj"]], "row_count": 71, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ESEABLEABLE", "first-jhmoi"], "distinct_count": 71}, {"mcvs": [[1, 3, "ESECALLYBAR", "first-lplqbfki"], [1, 3, "ESEABLEABLE", "first-siei"], [1, 3, "ESEABLEANTI", "first-ktpq"]], "row_count": 127, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ESECALLYBAR", "first-lplqbfki"], "distinct_count": 127}, {"mcvs": [[1, 3, "ESEESEABLE", "first-dhh"], [1, 3, "ESECALLYEING", "first-kfdnzbyjav"], [1, 3, "ESECALLYEING", "first-opihhvphf"]], "row_count": 56, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ESEESEABLE", "first-dhh"], "distinct_count": 56}, {"mcvs": [[1, 3, "ESEPRESEING", "first-fcpf"], [1, 3, "ESEESEABLE", "first-ndakplmkm"], [1, 3, "ESEESEABLE", "first-umei"]], "row_count": 76, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "ESEPRESEING", "first-fcpf"], "distinct_count": 76}, {"mcvs": [[1, 3, "OUGHTATIONEING", "first-manuqknmk"], [1, 3, "ESEPRESESE", "first-iudq"], [1, 3, "ESEPRESESE", "first-jywqm"]], "row_count": 113, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "OUGHTATIONEING", "first-manuqknmk"], "distinct_count": 113}, {"mcvs": [[1, 3, "OUGHTEINGANTI", "first-ithdywjz"], [1, 3, "OUGHTATIONEING", "first-wjpdctqnl"], [1, 3, "OUGHTATIONEING", "first-wwilrqvy"]], "row_count": 83, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "OUGHTEINGANTI", "first-ithdywjz"], "distinct_count": 83}, {"mcvs": [[1, 3, "OUGHTPRESANTI", "first-bibegriinm"], [1, 3, "OUGHTEINGANTI", "first-oofoq"], [1, 3, "OUGHTEINGATION", "first-ee"]], "row_count": 97, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "OUGHTPRESANTI", "first-bibegriinm"], "distinct_count": 97}, {"mcvs": [[1, 3, "PRESABLEESE", "first-xyfjxc"], [1, 3, "OUGHTPRESANTI", "first-toreey"], [1, 3, "OUGHTPRESATION", "first-lajuzj"]], "row_count": 86, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "PRESABLEESE", "first-xyfjxc"], "distinct_count": 86}, {"mcvs": [[1, 3, "PRESCALLYATION", "first-esrzun"], [1, 3, "PRESABLEPRES", "first-fpfaofphou"], [1, 3, "PRESABLEPRI", "first-orzsywnpt"]], "row_count": 104, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "PRESCALLYATION", "first-esrzun"], "distinct_count": 104}, {"mcvs": [[1, 3, "PRESESEBAR", "first-ncldzvnsmy"], [1, 3, "PRESCALLYCALLY", "first-egstapfqe"], [1, 3, "PRESCALLYCALLY", "first-icxwbk"]], "row_count": 62, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "PRESESEBAR", "first-ncldzvnsmy"], "distinct_count": 62}, {"mcvs": [[1, 3, "PRESPRIPRES", "first-zsp"], [1, 3, "PRESESECALLY", "first-ipx"], [1, 3, "PRESESECALLY", "first-kjkzm"]], "row_count": 104, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "PRESPRIPRES", "first-zsp"], "distinct_count": 104}, {"mcvs": [[1, 3, "PRIATIONABLE", "first-zqrjhk"], [1, 3, "PRESPRIPRI", "first-pbu"], [1, 3, "PRESPRIPRI", "first-qoqyibgjwo"]], "row_count": 67, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "PRIATIONABLE", "first-zqrjhk"], "distinct_count": 67}, {"mcvs": [[1, 3, "PRIESEOUGHT", "first-mdl"], [1, 3, "PRIATIONANTI", "first-gegp"], [1, 3, "PRIATIONANTI", "first-mpheis"]], "row_count": 132, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "PRIESEOUGHT", "first-mdl"], "distinct_count": 132}, {"mcvs": [[1, 3, "PRIPRIOUGHT", "first-wdclnifi"], [1, 3, "PRIESEOUGHT", "first-zlrwmje"], [1, 3, "PRIESEOUGHT", "first-zno"]], "row_count": 98, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, "PRIPRIOUGHT", "first-wdclnifi"], "distinct_count": 98}, {"mcvs": [[1, 4, "ABLEATIONBAR", "first-zyg"], [1, 3, "PRIPRIPRES", "first-caitguwh"], [1, 3, "PRIPRIPRES", "first-dcwm"]], "row_count": 89, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "ABLEATIONBAR", "first-zyg"], "distinct_count": 89}, {"mcvs": [[1, 4, "ABLEEINGABLE", "first-ghd"], [1, 4, "ABLEATIONCALLY", "first-uswcj"], [1, 4, "ABLEATIONEING", "first-bzinxgmuz"]], "row_count": 74, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "ABLEEINGABLE", "first-ghd"], "distinct_count": 74}, {"mcvs": [[1, 4, "ABLEESEOUGHT", "first-ayd"], [1, 4, "ABLEEINGABLE", "first-krhokj"], [1, 4, "ABLEEINGANTI", "first-bchddc"]], "row_count": 62, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "ABLEESEOUGHT", "first-ayd"], "distinct_count": 62}, {"mcvs": [[1, 4, "ANTIABLEANTI", "first-qsb"], [1, 4, "ABLEESEPRES", "first-jzou"], [1, 4, "ABLEESEPRI", "first-puuj"]], "row_count": 101, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "ANTIABLEANTI", "first-qsb"], "distinct_count": 101}, {"mcvs": [[1, 4, "ANTIBARANTI", "first-ph"], [1, 4, "ANTIABLEATION", "first-cwsusbncng"], [1, 4, "ANTIABLEATION", "first-jqhegrjfb"]], "row_count": 90, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "ANTIBARANTI", "first-ph"], "distinct_count": 90}, {"mcvs": [[1, 4, "ANTIEINGOUGHT", "first-xh"], [1, 4, "ANTIBARATION", "first-to"], [1, 4, "ANTIBARBAR", "first-lnojwegai"]], "row_count": 66, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "ANTIEINGOUGHT", "first-xh"], "distinct_count": 66}, {"mcvs": [[1, 4, "ANTIOUGHTOUGHT", "first-awkywd"], [1, 4, "ANTIEINGPRI", "first-axa"], [1, 4, "ANTIESEABLE", "first-tleh"]], "row_count": 57, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "ANTIOUGHTOUGHT", "first-awkywd"], "distinct_count": 57}, {"mcvs": [[1, 4, "ATIONABLEEING", "first-kr"], [1, 4, "ANTIOUGHTOUGHT", "first-wuirjm"], [1, 4, "ANTIOUGHTOUGHT", "first-xsirga"]], "row_count": 86, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "ATIONABLEEING", "first-kr"], "distinct_count": 86}, {"mcvs": [[1, 4, "ATIONBARBAR", "first-gyanso"], [1, 4, "ATIONABLEEING", "first-ywgm"], [1, 4, "ATIONABLEESE", "first-cqcppjglb"]], "row_count": 75, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "ATIONBARBAR", "first-gyanso"], "distinct_count": 75}, {"mcvs": [[1, 4, "ATIONCALLYPRI", "first-fgcrnyuv"], [1, 4, "ATIONBARBAR", "first-xnicc"], [1, 4, "ATIONBARBAR", "first-xzqxseijyp"]], "row_count": 53, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "ATIONCALLYPRI", "first-fgcrnyuv"], "distinct_count": 53}, {"mcvs": [[1, 4, "ATIONOUGHTEING", "first-mezaghf"], [1, 4, "ATIONCALLYPRI", "first-uivcwoc"], [1, 4, "ATIONEINGABLE", "first-fwk"]], "row_count": 81, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "ATIONOUGHTEING", "first-mezaghf"], "distinct_count": 81}, {"mcvs": [[1, 4, "BARABLEPRES", "first-hakgd"], [1, 4, "ATIONOUGHTEING", "first-ujkgfn"], [1, 4, "ATIONOUGHTESE", "first-emqveeo"]], "row_count": 93, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "BARABLEPRES", "first-hakgd"], "distinct_count": 93}, {"mcvs": [[1, 4, "BARATIONPRES", "first-zjadtrfw"], [1, 4, "BARABLEPRI", "first-jwas"], [1, 4, "BARABLEPRI", "first-vqn"]], "row_count": 61, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "BARATIONPRES", "first-zjadtrfw"], "distinct_count": 61}, {"mcvs": [[1, 4, "BARESEATION", "first-abk"], [1, 4, "BARATIONPRI", "first-ukkpvs"], [1, 4, "BARBARABLE", "first-rsjo"]], "row_count": 105, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "BARESEATION", "first-abk"], "distinct_count": 105}, {"mcvs": [[1, 4, "BARPRICALLY", "first-mfutg"], [1, 4, "BARESEATION", "first-slttj"], [1, 4, "BARESEBAR", "first-amvqwbrhl"]], "row_count": 95, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "BARPRICALLY", "first-mfutg"], "distinct_count": 95}, {"mcvs": [[1, 4, "BARPRIPRI", "first-ntfzm"], [1, 4, "BARPRIEING", "first-cndae"], [1, 4, "BARPRIEING", "first-jkzdxfeqwz"]], "row_count": 20, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "BARPRIPRI", "first-ntfzm"], "distinct_count": 20}, {"mcvs": [[1, 4, "CALLYANTIPRI", "first-blsmuvy"], [1, 4, "CALLYABLEABLE", "first-ic"], [1, 4, "CALLYABLEABLE", "first-yzadndapmz"]], "row_count": 62, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "CALLYANTIPRI", "first-blsmuvy"], "distinct_count": 62}, {"mcvs": [[1, 4, "CALLYCALLYOUGHT", "first-yavfmeba"], [1, 4, "CALLYANTIPRI", "first-njxzm"], [1, 4, "CALLYANTIPRI", "first-nnn"]], "row_count": 73, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "CALLYCALLYOUGHT", "first-yavfmeba"], "distinct_count": 73}, {"mcvs": [[1, 4, "CALLYOUGHTPRI", "first-fwwstq"], [1, 4, "CALLYCALLYPRES", "first-pe"], [1, 4, "CALLYCALLYPRES", "first-roihyx"]], "row_count": 98, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "CALLYOUGHTPRI", "first-fwwstq"], "distinct_count": 98}, {"mcvs": [[1, 4, "CALLYPRIPRES", "first-cwb"], [1, 4, "CALLYOUGHTPRI", "first-vfklomxj"], [1, 4, "CALLYPRESABLE", "first-oqztrp"]], "row_count": 58, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "CALLYPRIPRES", "first-cwb"], "distinct_count": 58}, {"mcvs": [[1, 4, "EINGANTIOUGHT", "first-apezmoprvu"], [1, 4, "CALLYPRIPRI", "first-ehtl"], [1, 4, "CALLYPRIPRI", "first-nhllmtxe"]], "row_count": 61, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "EINGANTIOUGHT", "first-apezmoprvu"], "distinct_count": 61}, {"mcvs": [[1, 4, "EINGCALLYCALLY", "first-uxreipl"], [1, 4, "EINGANTIOUGHT", "first-mtqegubiru"], [1, 4, "EINGANTIOUGHT", "first-pdizdio"]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "EINGCALLYCALLY", "first-uxreipl"], "distinct_count": 87}, {"mcvs": [[1, 4, "EINGOUGHTOUGHT", "first-yzqdeszla"], [1, 4, "EINGCALLYESE", "first-akfxz"], [1, 4, "EINGCALLYESE", "first-aldcxwele"]], "row_count": 89, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "EINGOUGHTOUGHT", "first-yzqdeszla"], "distinct_count": 89}, {"mcvs": [[1, 4, "EINGPRIESE", "first-ljebo"], [1, 4, "EINGOUGHTPRES", "first-bzw"], [1, 4, "EINGOUGHTPRES", "first-joqmwtacad"]], "row_count": 69, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "EINGPRIESE", "first-ljebo"], "distinct_count": 69}, {"mcvs": [[1, 4, "ESECALLYABLE", "first-mvxmtvdl"], [1, 4, "EINGPRIOUGHT", "first-tk"], [1, 4, "EINGPRIOUGHT", "first-vdtosxxcmt"]], "row_count": 101, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "ESECALLYABLE", "first-mvxmtvdl"], "distinct_count": 101}, {"mcvs": [[1, 4, "ESEESEEING", "first-rijuspsrpc"], [1, 4, "ESECALLYANTI", "first-bj"], [1, 4, "ESECALLYANTI", "first-dwrqmbynd"]], "row_count": 84, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "ESEESEEING", "first-rijuspsrpc"], "distinct_count": 84}, {"mcvs": [[1, 4, "ESEPRESPRI", "first-mwv"], [1, 4, "ESEESEESE", "first-kkalbhdiix"], [1, 4, "ESEESEESE", "first-ois"]], "row_count": 70, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "ESEPRESPRI", "first-mwv"], "distinct_count": 70}, {"mcvs": [[1, 4, "OUGHTANTIPRES", "first-ocpbupbp"], [1, 4, "ESEPRESPRI", "first-zobcnveitx"], [1, 4, "ESEPRIABLE", "first-capasoa"]], "row_count": 96, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "OUGHTANTIPRES", "first-ocpbupbp"], "distinct_count": 96}, {"mcvs": [[1, 4, "OUGHTATIONOUGHT", "first-bx"], [1, 4, "OUGHTANTIPRI", "first-dfgjbxw"], [1, 4, "OUGHTANTIPRI", "first-fxzaflu"]], "row_count": 27, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "OUGHTATIONOUGHT", "first-bx"], "distinct_count": 27}, {"mcvs": [[1, 4, "OUGHTESEABLE", "first-uzbmencve"], [1, 4, "OUGHTATIONPRES", "first-iyjwe"], [1, 4, "OUGHTATIONPRES", "first-kd"]], "row_count": 99, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "OUGHTESEABLE", "first-uzbmencve"], "distinct_count": 99}, {"mcvs": [[1, 4, "OUGHTOUGHTESE", "first-hmikngosak"], [1, 4, "OUGHTESEANTI", "first-hyzjg"], [1, 4, "OUGHTESEANTI", "first-lkfigx"]], "row_count": 55, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "OUGHTOUGHTESE", "first-hmikngosak"], "distinct_count": 55}, {"mcvs": [[1, 4, "PRESANTIATION", "first-ljuksiy"], [1, 4, "OUGHTOUGHTESE", "first-xopn"], [1, 4, "OUGHTOUGHTOUGHT", "first-uma"]], "row_count": 108, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "PRESANTIATION", "first-ljuksiy"], "distinct_count": 108}, {"mcvs": [[1, 4, "PRESBARPRES", "first-rwpldrltkd"], [1, 4, "PRESANTIATION", "first-tktxatdgoa"], [1, 4, "PRESANTIBAR", "first-gk"]], "row_count": 88, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "PRESBARPRES", "first-rwpldrltkd"], "distinct_count": 88}, {"mcvs": [[1, 4, "PRESEINGPRI", "first-yjbl"], [1, 4, "PRESBARPRI", "first-awojbqznil"], [1, 4, "PRESBARPRI", "first-dvifqrkkt"]], "row_count": 69, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "PRESEINGPRI", "first-yjbl"], "distinct_count": 69}, {"mcvs": [[1, 4, "PRESOUGHTCALLY", "first-suhvtwmw"], [1, 4, "PRESESEABLE", "first-jnwvtt"], [1, 4, "PRESESEABLE", "first-owo"]], "row_count": 47, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "PRESOUGHTCALLY", "first-suhvtwmw"], "distinct_count": 47}, {"mcvs": [[1, 4, "PRIANTIPRI", "first-mdloaipz"], [1, 4, "PRESOUGHTEING", "first-jbikrebjgx"], [1, 4, "PRESOUGHTEING", "first-qpx"]], "row_count": 117, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "PRIANTIPRI", "first-mdloaipz"], "distinct_count": 117}, {"mcvs": [[1, 4, "PRIBARPRES", "first-rmacjkwxj"], [1, 4, "PRIATIONABLE", "first-wkol"], [1, 4, "PRIATIONANTI", "first-phtdw"]], "row_count": 56, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "PRIBARPRES", "first-rmacjkwxj"], "distinct_count": 56}, {"mcvs": [[1, 4, "PRIEINGEING", "first-fuathn"], [1, 4, "PRIBARPRI", "first-jrgbvql"], [1, 4, "PRIBARPRI", "first-lbzsouvshy"]], "row_count": 54, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "PRIEINGEING", "first-fuathn"], "distinct_count": 54}, {"mcvs": [[1, 4, "PRIPRIEING", "first-fff"], [1, 4, "PRIEINGESE", "first-bhuchmwa"], [1, 4, "PRIEINGESE", "first-megcrqq"]], "row_count": 115, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, "PRIPRIEING", "first-fff"], "distinct_count": 115}, {"mcvs": [[1, 5, "ABLEATIONPRI", "first-sz"], [1, 4, "PRIPRIEING", "first-vwdxynybdr"], [1, 4, "PRIPRIEING", "first-yd"]], "row_count": 113, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "ABLEATIONPRI", "first-sz"], "distinct_count": 113}, {"mcvs": [[1, 5, "ABLEESEBAR", "first-pa"], [1, 5, "ABLEBARABLE", "first-lccdvp"], [1, 5, "ABLEBARABLE", "first-qm"]], "row_count": 103, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "ABLEESEBAR", "first-pa"], "distinct_count": 103}, {"mcvs": [[1, 5, "ABLEPRIANTI", "first-fvjll"], [1, 5, "ABLEESECALLY", "first-ykvuxdcjv"], [1, 5, "ABLEESEEING", "first-nn"]], "row_count": 93, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "ABLEPRIANTI", "first-fvjll"], "distinct_count": 93}, {"mcvs": [[1, 5, "ABLEPRIPRI", "first-qcxyzkn"], [1, 5, "ABLEPRIANTI", "first-vnbez"], [1, 5, "ABLEPRIANTI", "first-vry"]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "ABLEPRIPRI", "first-qcxyzkn"], "distinct_count": 21}, {"mcvs": [[1, 5, "ANTIBAROUGHT", "first-jzlnunauvd"], [1, 5, "ABLEPRIPRI", "first-wggylt"], [1, 5, "ANTIABLEABLE", "first-brwizyl"]], "row_count": 125, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "ANTIBAROUGHT", "first-jzlnunauvd"], "distinct_count": 125}, {"mcvs": [[1, 5, "ANTIESEOUGHT", "first-lbadcpz"], [1, 5, "ANTIBARPRES", "first-cumnmq"], [1, 5, "ANTIBARPRES", "first-femiy"]], "row_count": 99, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "ANTIESEOUGHT", "first-lbadcpz"], "distinct_count": 99}, {"mcvs": [[1, 5, "ANTIPRESPRI", "first-xzhejybf"], [1, 5, "ANTIESEPRES", "first-cx"], [1, 5, "ANTIESEPRES", "first-rcdmot"]], "row_count": 68, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "ANTIPRESPRI", "first-xzhejybf"], "distinct_count": 68}, {"mcvs": [[1, 5, "ATIONANTIEING", "first-ypxz"], [1, 5, "ANTIPRIABLE", "first-kzgh"], [1, 5, "ANTIPRIABLE", "first-xv"]], "row_count": 89, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "ATIONANTIEING", "first-ypxz"], "distinct_count": 89}, {"mcvs": [[1, 5, "ATIONATIONESE", "first-dmwlhqdop"], [1, 5, "ATIONANTIESE", "first-ogrpcdekh"], [1, 5, "ATIONANTIESE", "first-rceticcdy"]], "row_count": 36, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "ATIONATIONESE", "first-dmwlhqdop"], "distinct_count": 36}, {"mcvs": [[1, 5, "ATIONEINGOUGHT", "first-hrzglwszx"], [1, 5, "ATIONATIONOUGHT", "first-ba"], [1, 5, "ATIONATIONOUGHT", "first-pqiwg"]], "row_count": 86, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "ATIONEINGOUGHT", "first-hrzglwszx"], "distinct_count": 86}, {"mcvs": [[1, 5, "ATIONPRESPRES", "first-sno"], [1, 5, "ATIONEINGOUGHT", "first-snfe"], [1, 5, "ATIONEINGOUGHT", "first-yeduqinnm"]], "row_count": 89, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "ATIONPRESPRES", "first-sno"], "distinct_count": 89}, {"mcvs": [[1, 5, "BARANTICALLY", "first-ruy"], [1, 5, "ATIONPRESPRES", "first-yqeiljaq"], [1, 5, "ATIONPRESPRES", "first-yqlavrc"]], "row_count": 83, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "BARANTICALLY", "first-ruy"], "distinct_count": 83}, {"mcvs": [[1, 5, "BAREINGPRI", "first-ectgcglgxp"], [1, 5, "BARANTIEING", "first-reexyabg"], [1, 5, "BARANTIEING", "first-wlozbt"]], "row_count": 121, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "BAREINGPRI", "first-ectgcglgxp"], "distinct_count": 121}, {"mcvs": [[1, 5, "BARPRESATION", "first-oyjmjkat"], [1, 5, "BAREINGPRI", "first-qmqd"], [1, 5, "BARESEABLE", "first-anspzjieo"]], "row_count": 70, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "BARPRESATION", "first-oyjmjkat"], "distinct_count": 70}, {"mcvs": [[1, 5, "CALLYANTIOUGHT", "first-jm"], [1, 5, "BARPRESBAR", "first-moezx"], [1, 5, "BARPRESBAR", "first-zxqt"]], "row_count": 101, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "CALLYANTIOUGHT", "first-jm"], "distinct_count": 101}, {"mcvs": [[1, 5, "CALLYBARPRI", "first-ujziao"], [1, 5, "CALLYANTIOUGHT", "first-wwujgtp"], [1, 5, "CALLYANTIOUGHT", "first-zfesmrdu"]], "row_count": 83, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "CALLYBARPRI", "first-ujziao"], "distinct_count": 83}, {"mcvs": [[1, 5, "CALLYOUGHTANTI", "first-tv"], [1, 5, "CALLYCALLYABLE", "first-ptslyxmtid"], [1, 5, "CALLYCALLYABLE", "first-xjtyombhv"]], "row_count": 97, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "CALLYOUGHTANTI", "first-tv"], "distinct_count": 97}, {"mcvs": [[1, 5, "CALLYPRIEING", "first-ctukuuh"], [1, 5, "CALLYOUGHTATION", "first-kiwzdr"], [1, 5, "CALLYOUGHTATION", "first-zbnevk"]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "CALLYPRIEING", "first-ctukuuh"], "distinct_count": 77}, {"mcvs": [[1, 5, "EINGATIONBAR", "first-uh"], [1, 5, "CALLYPRIEING", "first-vwnu"], [1, 5, "CALLYPRIESE", "first-add"]], "row_count": 96, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "EINGATIONBAR", "first-uh"], "distinct_count": 96}, {"mcvs": [[1, 5, "EINGESEATION", "first-ntib"], [1, 5, "EINGATIONCALLY", "first-jlvfpysjig"], [1, 5, "EINGATIONCALLY", "first-nchdhhtj"]], "row_count": 100, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "EINGESEATION", "first-ntib"], "distinct_count": 100}, {"mcvs": [[1, 5, "EINGPRICALLY", "first-bln"], [1, 5, "EINGESEATION", "first-qkwax"], [1, 5, "EINGESEBAR", "first-godqbqhcv"]], "row_count": 102, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "EINGPRICALLY", "first-bln"], "distinct_count": 102}, {"mcvs": [[1, 5, "ESEBARPRES", "first-gnou"], [1, 5, "EINGPRICALLY", "first-maufcg"], [1, 5, "EINGPRICALLY", "first-rcuniyj"]], "row_count": 131, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "ESEBARPRES", "first-gnou"], "distinct_count": 131}, {"mcvs": [[1, 5, "ESEESEBAR", "first-rvbybjjxr"], [1, 5, "ESEBARPRES", "first-yfe"], [1, 5, "ESEBARPRI", "first-lgpsonf"]], "row_count": 72, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "ESEESEBAR", "first-rvbybjjxr"], "distinct_count": 72}, {"mcvs": [[1, 5, "OUGHTABLECALLY", "first-yjridnej"], [1, 5, "ESEESECALLY", "first-pw"], [1, 5, "ESEESECALLY", "first-wnpwxfif"]], "row_count": 126, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "OUGHTABLECALLY", "first-yjridnej"], "distinct_count": 126}, {"mcvs": [[1, 5, "OUGHTBARANTI", "first-ujdis"], [1, 5, "OUGHTABLEEING", "first-wrn"], [1, 5, "OUGHTABLEEING", "first-ywkntkpn"]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "OUGHTBARANTI", "first-ujdis"], "distinct_count": 77}, {"mcvs": [[1, 5, "OUGHTESEBAR", "first-zuikzlfds"], [1, 5, "OUGHTBARATION", "first-cei"], [1, 5, "OUGHTBARBAR", "first-duypebmje"]], "row_count": 78, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "OUGHTESEBAR", "first-zuikzlfds"], "distinct_count": 78}, {"mcvs": [[1, 5, "OUGHTPRESPRI", "first-muox"], [1, 5, "OUGHTESECALLY", "first-cuhyswtxq"], [1, 5, "OUGHTESECALLY", "first-gdq"]], "row_count": 76, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "OUGHTPRESPRI", "first-muox"], "distinct_count": 76}, {"mcvs": [[1, 5, "PRESANTICALLY", "first-qkoc"], [1, 5, "OUGHTPRIABLE", "first-ejefgm"], [1, 5, "OUGHTPRIABLE", "first-mtkrvr"]], "row_count": 75, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "PRESANTICALLY", "first-qkoc"], "distinct_count": 75}, {"mcvs": [[1, 5, "PRESATIONPRI", "first-itzoieyoc"], [1, 5, "PRESANTIEING", "first-vmswg"], [1, 5, "PRESANTIEING", "first-yvsvm"]], "row_count": 50, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "PRESATIONPRI", "first-itzoieyoc"], "distinct_count": 50}, {"mcvs": [[1, 5, "PRESESEEING", "first-rkztxyxxac"], [1, 5, "PRESATIONPRI", "first-yydokqiq"], [1, 5, "PRESBARABLE", "first-fcd"]], "row_count": 101, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "PRESESEEING", "first-rkztxyxxac"], "distinct_count": 101}, {"mcvs": [[1, 5, "PRESPRIESE", "first-zyuyokea"], [1, 5, "PRESESEESE", "first-qdpzmzx"], [1, 5, "PRESESEOUGHT", "first-ezjztut"]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "PRESPRIESE", "first-zyuyokea"], "distinct_count": 94}, {"mcvs": [[1, 5, "PRIATIONOUGHT", "first-ovc"], [1, 5, "PRESPRIPRES", "first-jwvrmpcm"], [1, 5, "PRESPRIPRES", "first-kvjtzbrmg"]], "row_count": 86, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "PRIATIONOUGHT", "first-ovc"], "distinct_count": 86}, {"mcvs": [[1, 5, "PRIEINGBAR", "first-qmow"], [1, 5, "PRIATIONPRI", "first-dgufucqjxp"], [1, 5, "PRIATIONPRI", "first-uuwgkdidy"]], "row_count": 69, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "PRIEINGBAR", "first-qmow"], "distinct_count": 69}, {"mcvs": [[1, 5, "PRIPRESBAR", "first-fct"], [1, 5, "PRIEINGBAR", "first-xebmnuisby"], [1, 5, "PRIEINGCALLY", "first-agnaetb"]], "row_count": 81, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, "PRIPRESBAR", "first-fct"], "distinct_count": 81}, {"mcvs": [[1, 6, "ABLEABLEOUGHT", "first-lhyzw"], [1, 5, "PRIPRESBAR", "first-iwogvvb"], [1, 5, "PRIPRESBAR", "first-osyliz"]], "row_count": 76, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ABLEABLEOUGHT", "first-lhyzw"], "distinct_count": 76}, {"mcvs": [[1, 6, "ABLEBARPRI", "first-sbwmb"], [1, 6, "ABLEABLEPRES", "first-jcvasegv"], [1, 6, "ABLEABLEPRES", "first-vovulydf"]], "row_count": 100, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ABLEBARPRI", "first-sbwmb"], "distinct_count": 100}, {"mcvs": [[1, 6, "ABLEESEANTI", "first-cbs"], [1, 6, "ABLECALLYABLE", "first-dxirbmv"], [1, 6, "ABLECALLYABLE", "first-etzs"]], "row_count": 73, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ABLEESEANTI", "first-cbs"], "distinct_count": 73}, {"mcvs": [[1, 6, "ABLEPRESOUGHT", "first-obnawxo"], [1, 6, "ABLEESEANTI", "first-lvlkromflp"], [1, 6, "ABLEESEANTI", "first-twpf"]], "row_count": 80, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ABLEPRESOUGHT", "first-obnawxo"], "distinct_count": 80}, {"mcvs": [[1, 6, "ANTIABLEPRES", "first-ekpkdec"], [1, 6, "ABLEPRESPRES", "first-aogrjyywoz"], [1, 6, "ABLEPRESPRES", "first-gdiloudy"]], "row_count": 63, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ANTIABLEPRES", "first-ekpkdec"], "distinct_count": 63}, {"mcvs": [[1, 6, "ANTIBARESE", "first-ower"], [1, 6, "ANTIABLEPRES", "first-ixhx"], [1, 6, "ANTIABLEPRES", "first-obwlcrkx"]], "row_count": 89, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ANTIBARESE", "first-ower"], "distinct_count": 89}, {"mcvs": [[1, 6, "ANTIESEBAR", "first-lchdqu"], [1, 6, "ANTIBAROUGHT", "first-eunt"], [1, 6, "ANTIBAROUGHT", "first-pv"]], "row_count": 78, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ANTIESEBAR", "first-lchdqu"], "distinct_count": 78}, {"mcvs": [[1, 6, "ANTIPRESPRI", "first-pjlyuweu"], [1, 6, "ANTIESECALLY", "first-bhqzukowao"], [1, 6, "ANTIESECALLY", "first-hptc"]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ANTIPRESPRI", "first-pjlyuweu"], "distinct_count": 82}, {"mcvs": [[1, 6, "ATIONABLEPRI", "first-ioqgapu"], [1, 6, "ANTIPRIABLE", "first-ktwkxbf"], [1, 6, "ANTIPRIABLE", "first-vn"]], "row_count": 60, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ATIONABLEPRI", "first-ioqgapu"], "distinct_count": 60}, {"mcvs": [[1, 6, "ATIONCALLYANTI", "first-ptjfjs"], [1, 6, "ATIONABLEPRI", "first-vd"], [1, 6, "ATIONABLEPRI", "first-wcvb"]], "row_count": 109, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ATIONCALLYANTI", "first-ptjfjs"], "distinct_count": 109}, {"mcvs": [[1, 6, "ATIONESEOUGHT", "first-dxt"], [1, 6, "ATIONCALLYATION", "first-mnyjnylo"], [1, 6, "ATIONCALLYATION", "first-qxxckqf"]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ATIONESEOUGHT", "first-dxt"], "distinct_count": 87}, {"mcvs": [[1, 6, "ATIONPRESANTI", "first-peyexfpxv"], [1, 6, "ATIONESEOUGHT", "first-zsvaapaxfq"], [1, 6, "ATIONESEPRES", "first-etegnd"]], "row_count": 54, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ATIONPRESANTI", "first-peyexfpxv"], "distinct_count": 54}, {"mcvs": [[1, 6, "BARANTICALLY", "first-xtmlhm"], [1, 6, "ATIONPRESATION", "first-jtmtxso"], [1, 6, "ATIONPRESATION", "first-koplxinkp"]], "row_count": 101, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "BARANTICALLY", "first-xtmlhm"], "distinct_count": 101}, {"mcvs": [[1, 6, "BARBARABLE", "first-nzalgnz"], [1, 6, "BARANTIEING", "first-ywhn"], [1, 6, "BARANTIESE", "first-fz"]], "row_count": 46, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "BARBARABLE", "first-nzalgnz"], "distinct_count": 46}, {"mcvs": [[1, 6, "BARESEESE", "first-nnx"], [1, 6, "BARBARABLE", "first-stwhnnvmbl"], [1, 6, "BARBARABLE", "first-uy"]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "BARESEESE", "first-nnx"], "distinct_count": 94}, {"mcvs": [[1, 6, "CALLYABLECALLY", "first-nydnpaicnw"], [1, 6, "BARESEOUGHT", "first-jlssqdvt"], [1, 6, "BARESEPRES", "first-dbxr"]], "row_count": 103, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "CALLYABLECALLY", "first-nydnpaicnw"], "distinct_count": 103}, {"mcvs": [[1, 6, "CALLYATIONESE", "first-ejmygwzasc"], [1, 6, "CALLYABLEEING", "first-ckykpz"], [1, 6, "CALLYABLEEING", "first-kiigujail"]], "row_count": 78, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "CALLYATIONESE", "first-ejmygwzasc"], "distinct_count": 78}, {"mcvs": [[1, 6, "CALLYEINGPRI", "first-sdwvhyj"], [1, 6, "CALLYATIONESE", "first-qhbgpe"], [1, 6, "CALLYATIONESE", "first-yhoccdk"]], "row_count": 95, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "CALLYEINGPRI", "first-sdwvhyj"], "distinct_count": 95}, {"mcvs": [[1, 6, "CALLYPRIBAR", "first-gql"], [1, 6, "CALLYESEABLE", "first-jijsbufdau"], [1, 6, "CALLYESEABLE", "first-pay"]], "row_count": 85, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "CALLYPRIBAR", "first-gql"], "distinct_count": 85}, {"mcvs": [[1, 6, "EINGBARATION", "first-cepxpfb"], [1, 6, "CALLYPRIBAR", "first-oshkzm"], [1, 6, "CALLYPRIBAR", "first-pjqotf"]], "row_count": 109, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "EINGBARATION", "first-cepxpfb"], "distinct_count": 109}, {"mcvs": [[1, 6, "EINGESECALLY", "first-xz"], [1, 6, "EINGBARATION", "first-ru"], [1, 6, "EINGBARBAR", "first-dggfygpnw"]], "row_count": 104, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "EINGESECALLY", "first-xz"], "distinct_count": 104}, {"mcvs": [[1, 6, "EINGPRESPRI", "first-xwgejiyvxf"], [1, 6, "EINGESEEING", "first-snbld"], [1, 6, "EINGESEEING", "first-vfunkbv"]], "row_count": 71, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "EINGPRESPRI", "first-xwgejiyvxf"], "distinct_count": 71}, {"mcvs": [[1, 6, "ESEBARATION", "first-bvtwxcsrdn"], [1, 6, "EINGPRIABLE", "first-hinvbo"], [1, 6, "EINGPRIABLE", "first-jvvkn"]], "row_count": 127, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ESEBARATION", "first-bvtwxcsrdn"], "distinct_count": 127}, {"mcvs": [[1, 6, "ESEEINGANTI", "first-qpne"], [1, 6, "ESEBARATION", "first-zvynmsae"], [1, 6, "ESEBARBAR", "first-eixdhonqwy"]], "row_count": 65, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ESEEINGANTI", "first-qpne"], "distinct_count": 65}, {"mcvs": [[1, 6, "ESEOUGHTOUGHT", "first-tlznw"], [1, 6, "ESEEINGATION", "first-otzakgx"], [1, 6, "ESEEINGATION", "first-pxjvbgmpiu"]], "row_count": 84, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "ESEOUGHTOUGHT", "first-tlznw"], "distinct_count": 84}, {"mcvs": [[1, 6, "OUGHTANTIANTI", "first-hs"], [1, 6, "ESEOUGHTPRES", "first-rmhyckzl"], [1, 6, "ESEOUGHTPRES", "first-yhsbfjio"]], "row_count": 99, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "OUGHTANTIANTI", "first-hs"], "distinct_count": 99}, {"mcvs": [[1, 6, "OUGHTEINGATION", "first-psqvbsee"], [1, 6, "OUGHTANTIANTI", "first-wxxbwbggc"], [1, 6, "OUGHTANTIATION", "first-enadvs"]], "row_count": 101, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "OUGHTEINGATION", "first-psqvbsee"], "distinct_count": 101}, {"mcvs": [[1, 6, "OUGHTOUGHTPRI", "first-aph"], [1, 6, "OUGHTEINGATION", "first-wgnpww"], [1, 6, "OUGHTEINGBAR", "first-szspii"]], "row_count": 79, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "OUGHTOUGHTPRI", "first-aph"], "distinct_count": 79}, {"mcvs": [[1, 6, "PRESANTICALLY", "first-rscz"], [1, 6, "OUGHTPRESABLE", "first-shyw"], [1, 6, "OUGHTPRESANTI", "first-mllh"]], "row_count": 98, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "PRESANTICALLY", "first-rscz"], "distinct_count": 98}, {"mcvs": [[1, 6, "PRESBAREING", "first-yjxi"], [1, 6, "PRESANTIEING", "first-emynokau"], [1, 6, "PRESANTIEING", "first-nilt"]], "row_count": 66, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "PRESBAREING", "first-yjxi"], "distinct_count": 66}, {"mcvs": [[1, 6, "PRESOUGHTABLE", "first-axbetv"], [1, 6, "PRESBARESE", "first-txdwic"], [1, 6, "PRESBAROUGHT", "first-bjymmzi"]], "row_count": 103, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "PRESOUGHTABLE", "first-axbetv"], "distinct_count": 103}, {"mcvs": [[1, 6, "PRIABLEPRES", "first-kxescsir"], [1, 6, "PRESOUGHTABLE", "first-lxe"], [1, 6, "PRESOUGHTABLE", "first-mxnbkvt"]], "row_count": 114, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "PRIABLEPRES", "first-kxescsir"], "distinct_count": 114}, {"mcvs": [[1, 6, "PRIATIONEING", "first-pifhezthod"], [1, 6, "PRIABLEPRES", "first-zaa"], [1, 6, "PRIABLEPRI", "first-vdkzjkk"]], "row_count": 56, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "PRIATIONEING", "first-pifhezthod"], "distinct_count": 56}, {"mcvs": [[1, 6, "PRICALLYEING", "first-ecdtrijkky"], [1, 6, "PRIATIONESE", "first-cykhb"], [1, 6, "PRIATIONESE", "first-eprp"]], "row_count": 62, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "PRICALLYEING", "first-ecdtrijkky"], "distinct_count": 62}, {"mcvs": [[1, 6, "PRIPRIANTI", "first-gluimur"], [1, 6, "PRICALLYESE", "first-cxs"], [1, 6, "PRICALLYESE", "first-eesu"]], "row_count": 133, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, "PRIPRIANTI", "first-gluimur"], "distinct_count": 133}, {"mcvs": [[1, 7, "ABLEANTIBAR", "first-gsqavk"], [1, 6, "PRIPRIANTI", "first-pgnwfawyw"], [1, 6, "PRIPRIATION", "first-cyvmake"]], "row_count": 67, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "ABLEANTIBAR", "first-gsqavk"], "distinct_count": 67}, {"mcvs": [[1, 7, "ABLEATIONPRI", "first-hzdaunl"], [1, 7, "ABLEANTIBAR", "first-sriut"], [1, 7, "ABLEANTIBAR", "first-tcjhvhajfr"]], "row_count": 57, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "ABLEATIONPRI", "first-hzdaunl"], "distinct_count": 57}, {"mcvs": [[1, 7, "ABLEESEABLE", "first-jfiscjdgx"], [1, 7, "ABLEATIONPRI", "first-yzyspye"], [1, 7, "ABLEBARABLE", "first-bx"]], "row_count": 108, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "ABLEESEABLE", "first-jfiscjdgx"], "distinct_count": 108}, {"mcvs": [[1, 7, "ABLEPRESOUGHT", "first-todbkfvj"], [1, 7, "ABLEESEABLE", "first-vuewhwreh"], [1, 7, "ABLEESEABLE", "first-ypibdfkb"]], "row_count": 90, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "ABLEPRESOUGHT", "first-todbkfvj"], "distinct_count": 90}, {"mcvs": [[1, 7, "ANTIANTIEING", "first-ubnrn"], [1, 7, "ABLEPRESPRES", "first-eaivo"], [1, 7, "ABLEPRESPRES", "first-gc"]], "row_count": 90, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "ANTIANTIEING", "first-ubnrn"], "distinct_count": 90}, {"mcvs": [[1, 7, "ANTIBARBAR", "first-yeixjim"], [1, 7, "ANTIANTIESE", "first-mqhc"], [1, 7, "ANTIANTIESE", "first-nrchgsv"]], "row_count": 62, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "ANTIBARBAR", "first-yeixjim"], "distinct_count": 62}, {"mcvs": [[1, 7, "ANTIEINGPRI", "first-hsivm"], [1, 7, "ANTIBARCALLY", "first-akxnfejkbc"], [1, 7, "ANTIBARCALLY", "first-enwzyrfqcm"]], "row_count": 88, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "ANTIEINGPRI", "first-hsivm"], "distinct_count": 88}, {"mcvs": [[1, 7, "ANTIPRESPRES", "first-thcj"], [1, 7, "ANTIESEANTI", "first-jdqc"], [1, 7, "ANTIESEANTI", "first-qavnw"]], "row_count": 80, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "ANTIPRESPRES", "first-thcj"], "distinct_count": 80}, {"mcvs": [[1, 7, "ATIONATIONBAR", "first-jvmhtyshi"], [1, 7, "ANTIPRESPRI", "first-kvhj"], [1, 7, "ANTIPRIABLE", "first-arprlwx"]], "row_count": 99, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "ATIONATIONBAR", "first-jvmhtyshi"], "distinct_count": 99}, {"mcvs": [[1, 7, "ATIONESEBAR", "first-se"], [1, 7, "ATIONATIONBAR", "first-vzhvzzswsi"], [1, 7, "ATIONATIONBAR", "first-zoraqxmj"]], "row_count": 128, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "ATIONESEBAR", "first-se"], "distinct_count": 128}, {"mcvs": [[1, 7, "ATIONPRIABLE", "first-ed"], [1, 7, "ATIONESECALLY", "first-gbkemu"], [1, 7, "ATIONESECALLY", "first-jlvkfjvva"]], "row_count": 79, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "ATIONPRIABLE", "first-ed"], "distinct_count": 79}, {"mcvs": [[1, 7, "BARATIONPRI", "first-dadplzv"], [1, 7, "ATIONPRIABLE", "first-syfud"], [1, 7, "ATIONPRIANTI", "first-ak"]], "row_count": 114, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "BARATIONPRI", "first-dadplzv"], "distinct_count": 114}, {"mcvs": [[1, 7, "BARESEANTI", "first-pxotje"], [1, 7, "BARBARABLE", "first-awjnclxi"], [1, 7, "BARBARANTI", "first-twrt"]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "BARESEANTI", "first-pxotje"], "distinct_count": 82}, {"mcvs": [[1, 7, "BARPRICALLY", "first-dumeary"], [1, 7, "BARESEATION", "first-gcngr"], [1, 7, "BARESEATION", "first-qqefstpnf"]], "row_count": 102, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "BARPRICALLY", "first-dumeary"], "distinct_count": 102}, {"mcvs": [[1, 7, "CALLYATIONEING", "first-qcrn"], [1, 7, "BARPRICALLY", "first-ga"], [1, 7, "BARPRICALLY", "first-qtdjj"]], "row_count": 91, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "CALLYATIONEING", "first-qcrn"], "distinct_count": 91}, {"mcvs": [[1, 7, "CALLYEINGEING", "first-hmnwmjyd"], [1, 7, "CALLYATIONESE", "first-hmjsx"], [1, 7, "CALLYATIONOUGHT", "first-iobnkhmm"]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "CALLYEINGEING", "first-hmnwmjyd"], "distinct_count": 87}, {"mcvs": [[1, 7, "CALLYPRIESE", "first-kycbrm"], [1, 7, "CALLYEINGEING", "first-xjhbjmn"], [1, 7, "CALLYEINGESE", "first-bqjim"]], "row_count": 101, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "CALLYPRIESE", "first-kycbrm"], "distinct_count": 101}, {"mcvs": [[1, 7, "EINGBARCALLY", "first-gw"], [1, 7, "CALLYPRIESE", "first-usjtlozwa"], [1, 7, "CALLYPRIOUGHT", "first-esnoz"]], "row_count": 112, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "EINGBARCALLY", "first-gw"], "distinct_count": 112}, {"mcvs": [[1, 7, "EINGOUGHTATION", "first-iu"], [1, 7, "EINGBAREING", "first-kr"], [1, 7, "EINGBAREING", "first-ybjtdvx"]], "row_count": 112, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "EINGOUGHTATION", "first-iu"], "distinct_count": 112}, {"mcvs": [[1, 7, "EINGPRIEING", "first-ucruvecexw"], [1, 7, "EINGOUGHTBAR", "first-hqnqx"], [1, 7, "EINGOUGHTBAR", "first-jtqvm"]], "row_count": 75, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "EINGPRIEING", "first-ucruvecexw"], "distinct_count": 75}, {"mcvs": [[1, 7, "ESECALLYATION", "first-ypd"], [1, 7, "EINGPRIESE", "first-eixkuesn"], [1, 7, "EINGPRIESE", "first-hnmlrbybb"]], "row_count": 145, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "ESECALLYATION", "first-ypd"], "distinct_count": 145}, {"mcvs": [[1, 7, "ESEESEBAR", "first-xahwgcnp"], [1, 7, "ESECALLYBAR", "first-rlkrqam"], [1, 7, "ESECALLYBAR", "first-vtwepapl"]], "row_count": 67, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "ESEESEBAR", "first-xahwgcnp"], "distinct_count": 67}, {"mcvs": [[1, 7, "ESEPRESPRI", "first-kcecid"], [1, 7, "ESEESECALLY", "first-dcybddrhpf"], [1, 7, "ESEESECALLY", "first-mml"]], "row_count": 80, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "ESEPRESPRI", "first-kcecid"], "distinct_count": 80}, {"mcvs": [[1, 7, "OUGHTANTIEING", "first-inp"], [1, 7, "ESEPRESPRI", "first-uzolgyyk"], [1, 7, "ESEPRESPRI", "first-zbzp"]], "row_count": 71, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "OUGHTANTIEING", "first-inp"], "distinct_count": 71}, {"mcvs": [[1, 7, "OUGHTCALLYATION", "first-lzm"], [1, 7, "OUGHTANTIESE", "first-dvupeqwp"], [1, 7, "OUGHTANTIESE", "first-qg"]], "row_count": 88, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "OUGHTCALLYATION", "first-lzm"], "distinct_count": 88}, {"mcvs": [[1, 7, "OUGHTESEPRES", "first-eitwq"], [1, 7, "OUGHTCALLYATION", "first-xntkisfriv"], [1, 7, "OUGHTCALLYBAR", "first-hfuyxccxco"]], "row_count": 81, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "OUGHTESEPRES", "first-eitwq"], "distinct_count": 81}, {"mcvs": [[1, 7, "OUGHTPRIPRI", "first-cqa"], [1, 7, "OUGHTESEPRI", "first-eqpfdei"], [1, 7, "OUGHTESEPRI", "first-uswcxi"]], "row_count": 88, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "OUGHTPRIPRI", "first-cqa"], "distinct_count": 88}, {"mcvs": [[1, 7, "PRESBAREING", "first-qyc"], [1, 7, "PRESABLEABLE", "first-ajl"], [1, 7, "PRESABLEABLE", "first-icyims"]], "row_count": 102, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "PRESBAREING", "first-qyc"], "distinct_count": 102}, {"mcvs": [[1, 7, "PRESOUGHTPRI", "first-swel"], [1, 7, "PRESBAREING", "first-yuxtaprlg"], [1, 7, "PRESBARESE", "first-ffhmxadny"]], "row_count": 125, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "PRESOUGHTPRI", "first-swel"], "distinct_count": 125}, {"mcvs": [[1, 7, "PRIANTIEING", "first-cxmvv"], [1, 7, "PRESPRESABLE", "first-yeo"], [1, 7, "PRESPRESABLE", "first-zphrwhalpt"]], "row_count": 101, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "PRIANTIEING", "first-cxmvv"], "distinct_count": 101}, {"mcvs": [[1, 7, "PRICALLYATION", "first-jpe"], [1, 7, "PRIANTIEING", "first-wuwclkchki"], [1, 7, "PRIANTIEING", "first-yjhvqe"]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "PRICALLYATION", "first-jpe"], "distinct_count": 94}, {"mcvs": [[1, 7, "PRIPRESCALLY", "first-wxivtum"], [1, 7, "PRICALLYBAR", "first-lzj"], [1, 7, "PRICALLYBAR", "first-nto"]], "row_count": 120, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, "PRIPRESCALLY", "first-wxivtum"], "distinct_count": 120}, {"mcvs": [[1, 8, "ABLEANTIATION", "first-jksml"], [1, 7, "PRIPRESEING", "first-hhuf"], [1, 7, "PRIPRESEING", "first-loinin"]], "row_count": 73, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "ABLEANTIATION", "first-jksml"], "distinct_count": 73}, {"mcvs": [[1, 8, "ABLECALLYPRES", "first-lyob"], [1, 8, "ABLEANTIATION", "first-oa"], [1, 8, "ABLEANTIATION", "first-pdvkdmm"]], "row_count": 122, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "ABLECALLYPRES", "first-lyob"], "distinct_count": 122}, {"mcvs": [[1, 8, "ABLEOUGHTPRES", "first-manzhal"], [1, 8, "ABLECALLYPRES", "first-souh"], [1, 8, "ABLECALLYPRI", "first-lvy"]], "row_count": 95, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "ABLEOUGHTPRES", "first-manzhal"], "distinct_count": 95}, {"mcvs": [[1, 8, "ABLEPRIPRI", "first-twyob"], [1, 8, "ABLEOUGHTPRES", "first-rvocegm"], [1, 8, "ABLEOUGHTPRI", "first-diltgdpwap"]], "row_count": 56, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "ABLEPRIPRI", "first-twyob"], "distinct_count": 56}, {"mcvs": [[1, 8, "ANTIATIONABLE", "first-udyvyioxaw"], [1, 8, "ANTIABLEABLE", "first-rxnd"], [1, 8, "ANTIABLEABLE", "first-twlmdlsj"]], "row_count": 63, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "ANTIATIONABLE", "first-udyvyioxaw"], "distinct_count": 63}, {"mcvs": [[1, 8, "ANTIEINGPRI", "first-fxfmimyc"], [1, 8, "ANTIATIONATION", "first-iqjjcdn"], [1, 8, "ANTIATIONBAR", "first-na"]], "row_count": 104, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "ANTIEINGPRI", "first-fxfmimyc"], "distinct_count": 104}, {"mcvs": [[1, 8, "ANTIPRESOUGHT", "first-pzoae"], [1, 8, "ANTIEINGPRI", "first-iah"], [1, 8, "ANTIEINGPRI", "first-oojgr"]], "row_count": 92, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "ANTIPRESOUGHT", "first-pzoae"], "distinct_count": 92}, {"mcvs": [[1, 8, "ATIONATIONESE", "first-grzp"], [1, 8, "ANTIPRESPRES", "first-qyaddnps"], [1, 8, "ANTIPRESPRES", "first-qyzrrpp"]], "row_count": 118, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "ATIONATIONESE", "first-grzp"], "distinct_count": 118}, {"mcvs": [[1, 8, "ATIONCALLYPRI", "first-as"], [1, 8, "ATIONATIONESE", "first-ruit"], [1, 8, "ATIONATIONESE", "first-whmp"]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "ATIONCALLYPRI", "first-as"], "distinct_count": 87}, {"mcvs": [[1, 8, "ATIONOUGHTATION", "first-zpm"], [1, 8, "ATIONCALLYPRI", "first-deicnd"], [1, 8, "ATIONCALLYPRI", "first-pswl"]], "row_count": 72, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "ATIONOUGHTATION", "first-zpm"], "distinct_count": 72}, {"mcvs": [[1, 8, "ATIONPRIBAR", "first-smteds"], [1, 8, "ATIONOUGHTBAR", "first-cmqycp"], [1, 8, "ATIONOUGHTBAR", "first-dfwjawkpmi"]], "row_count": 66, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "ATIONPRIBAR", "first-smteds"], "distinct_count": 66}, {"mcvs": [[1, 8, "BARABLEPRI", "first-ucibezqbgh"], [1, 8, "ATIONPRIEING", "first-aur"], [1, 8, "ATIONPRIEING", "first-pbmvkiitzw"]], "row_count": 46, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "BARABLEPRI", "first-ucibezqbgh"], "distinct_count": 46}, {"mcvs": [[1, 8, "BARCALLYPRI", "first-tjrxn"], [1, 8, "BARANTIABLE", "first-npeqhd"], [1, 8, "BARANTIANTI", "first-nz"]], "row_count": 107, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "BARCALLYPRI", "first-tjrxn"], "distinct_count": 107}, {"mcvs": [[1, 8, "BARPRESOUGHT", "first-syxnkdikrf"], [1, 8, "BAREINGABLE", "first-guhhth"], [1, 8, "BAREINGANTI", "first-eaycljq"]], "row_count": 105, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "BARPRESOUGHT", "first-syxnkdikrf"], "distinct_count": 105}, {"mcvs": [[1, 8, "CALLYATIONCALLY", "first-sesmkeilsb"], [1, 8, "BARPRESPRES", "first-ik"], [1, 8, "BARPRESPRES", "first-onapvyfznp"]], "row_count": 98, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "CALLYATIONCALLY", "first-sesmkeilsb"], "distinct_count": 98}, {"mcvs": [[1, 8, "CALLYCALLYPRI", "first-qgxkggztv"], [1, 8, "CALLYATIONEING", "first-efysfau"], [1, 8, "CALLYATIONEING", "first-exrshjr"]], "row_count": 75, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "CALLYCALLYPRI", "first-qgxkggztv"], "distinct_count": 75}, {"mcvs": [[1, 8, "CALLYPRESOUGHT", "first-fykcb"], [1, 8, "CALLYEINGABLE", "first-ehmbbrra"], [1, 8, "CALLYEINGABLE", "first-gfsujon"]], "row_count": 100, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "CALLYPRESOUGHT", "first-fykcb"], "distinct_count": 100}, {"mcvs": [[1, 8, "EINGANTIEING", "first-ptrulhl"], [1, 8, "CALLYPRESOUGHT", "first-xmwx"], [1, 8, "CALLYPRESPRES", "first-vzdedyeive"]], "row_count": 86, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "EINGANTIEING", "first-ptrulhl"], "distinct_count": 86}, {"mcvs": [[1, 8, "EINGCALLYPRES", "first-ymcykge"], [1, 8, "EINGANTIESE", "first-atcr"], [1, 8, "EINGANTIESE", "first-dkjbrjhle"]], "row_count": 106, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "EINGCALLYPRES", "first-ymcykge"], "distinct_count": 106}, {"mcvs": [[1, 8, "EINGOUGHTESE", "first-hgjwtmze"], [1, 8, "EINGCALLYPRI", "first-qsv"], [1, 8, "EINGEINGABLE", "first-cah"]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "EINGOUGHTESE", "first-hgjwtmze"], "distinct_count": 77}, {"mcvs": [[1, 8, "EINGPRESPRES", "first-ry"], [1, 8, "EINGOUGHTOUGHT", "first-rcrye"], [1, 8, "EINGOUGHTOUGHT", "first-uf"]], "row_count": 44, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "EINGPRESPRES", "first-ry"], "distinct_count": 44}, {"mcvs": [[1, 8, "ESEABLEBAR", "first-ddewnsb"], [1, 8, "EINGPRESPRI", "first-frpoczlvc"], [1, 8, "EINGPRESPRI", "first-it"]], "row_count": 45, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "ESEABLEBAR", "first-ddewnsb"], "distinct_count": 45}, {"mcvs": [[1, 8, "ESECALLYCALLY", "first-gfzjzaad"], [1, 8, "ESEABLEBAR", "first-leseze"], [1, 8, "ESEABLEBAR", "first-lmhr"]], "row_count": 135, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "ESECALLYCALLY", "first-gfzjzaad"], "distinct_count": 135}, {"mcvs": [[1, 8, "ESEPRESABLE", "first-tzym"], [1, 8, "ESECALLYCALLY", "first-pro"], [1, 8, "ESECALLYCALLY", "first-vphoox"]], "row_count": 103, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "ESEPRESABLE", "first-tzym"], "distinct_count": 103}, {"mcvs": [[1, 8, "OUGHTANTIATION", "first-ky"], [1, 8, "ESEPRESANTI", "first-molwsfoy"], [1, 8, "ESEPRESATION", "first-fzksjzoueb"]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "OUGHTANTIATION", "first-ky"], "distinct_count": 87}, {"mcvs": [[1, 8, "OUGHTCALLYPRI", "first-xwg"], [1, 8, "OUGHTANTIBAR", "first-jldtvopitn"], [1, 8, "OUGHTANTIBAR", "first-pansd"]], "row_count": 110, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "OUGHTCALLYPRI", "first-xwg"], "distinct_count": 110}, {"mcvs": [[1, 8, "OUGHTPRESANTI", "first-qskkbfenu"], [1, 8, "OUGHTEINGABLE", "first-iydosdt"], [1, 8, "OUGHTEINGABLE", "first-sra"]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "OUGHTPRESANTI", "first-qskkbfenu"], "distinct_count": 94}, {"mcvs": [[1, 8, "PRESATIONATION", "first-agh"], [1, 8, "OUGHTPRESANTI", "first-vfakh"], [1, 8, "OUGHTPRESANTI", "first-xvfbvhm"]], "row_count": 122, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "PRESATIONATION", "first-agh"], "distinct_count": 122}, {"mcvs": [[1, 8, "PRESCALLYESE", "first-uc"], [1, 8, "PRESATIONATION", "first-ikwkjj"], [1, 8, "PRESATIONATION", "first-mclunzcy"]], "row_count": 81, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "PRESCALLYESE", "first-uc"], "distinct_count": 81}, {"mcvs": [[1, 8, "PRESESEPRI", "first-yazxurlcpl"], [1, 8, "PRESCALLYOUGHT", "first-qzsrab"], [1, 8, "PRESCALLYOUGHT", "first-vxpkyvbqb"]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "PRESESEPRI", "first-yazxurlcpl"], "distinct_count": 77}, {"mcvs": [[1, 8, "PRESPRIATION", "first-hudszemies"], [1, 8, "PRESOUGHTABLE", "first-ijpynk"], [1, 8, "PRESOUGHTABLE", "first-mmkzsdc"]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "PRESPRIATION", "first-hudszemies"], "distinct_count": 77}, {"mcvs": [[1, 8, "PRIBARBAR", "first-gs"], [1, 8, "PRESPRIBAR", "first-orvxep"], [1, 8, "PRESPRICALLY", "first-jcpnn"]], "row_count": 107, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "PRIBARBAR", "first-gs"], "distinct_count": 107}, {"mcvs": [[1, 8, "PRIESEESE", "first-qpuu"], [1, 8, "PRICALLYCALLY", "first-tx"], [1, 8, "PRIBARBAR", "first-xgdl"]], "row_count": 106, "mcv_counts": [1, 2, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "PRIESEESE", "first-qpuu"], "distinct_count": 105}, {"mcvs": [[1, 8, "PRIPRIABLE", "first-rqongfsorz"], [1, 8, "PRIESEESE", "first-vvj"], [1, 8, "PRIESEOUGHT", "first-ddj"]], "row_count": 68, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, "PRIPRIABLE", "first-rqongfsorz"], "distinct_count": 68}, {"mcvs": [[1, 9, "ABLEANTIATION", "first-ytcscfvmr"], [1, 8, "PRIPRIANTI", "first-ewtjzbuwx"], [1, 8, "PRIPRIANTI", "first-gtmzfxwzot"]], "row_count": 90, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ABLEANTIATION", "first-ytcscfvmr"], "distinct_count": 90}, {"mcvs": [[1, 9, "ABLEEINGABLE", "first-hdmnzf"], [1, 9, "ABLEANTIBAR", "first-lgnwoxl"], [1, 9, "ABLEANTIBAR", "first-wg"]], "row_count": 108, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ABLEEINGABLE", "first-hdmnzf"], "distinct_count": 108}, {"mcvs": [[1, 9, "ABLEOUGHTBAR", "first-vcfdhbeclu"], [1, 9, "ABLEEINGANTI", "first-adcwisrqqh"], [1, 9, "ABLEEINGANTI", "first-hvrjd"]], "row_count": 70, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ABLEOUGHTBAR", "first-vcfdhbeclu"], "distinct_count": 70}, {"mcvs": [[1, 9, "ANTIABLEESE", "first-habwyi"], [1, 9, "ABLEOUGHTCALLY", "first-xgyiz"], [1, 9, "ABLEOUGHTEING", "first-aaxgjgfeuc"]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ANTIABLEESE", "first-habwyi"], "distinct_count": 94}, {"mcvs": [[1, 9, "ANTIBARBAR", "first-lw"], [1, 9, "ANTIABLEOUGHT", "first-eedezc"], [1, 9, "ANTIABLEPRES", "first-ovtfgaflhj"]], "row_count": 79, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ANTIBARBAR", "first-lw"], "distinct_count": 79}, {"mcvs": [[1, 9, "ANTIESEPRES", "first-tdhwm"], [1, 9, "ANTIBARCALLY", "first-mcmrwpfoxn"], [1, 9, "ANTIBARCALLY", "first-mm"]], "row_count": 105, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ANTIESEPRES", "first-tdhwm"], "distinct_count": 105}, {"mcvs": [[1, 9, "ANTIPRIBAR", "first-ifkiu"], [1, 9, "ANTIESEPRI", "first-jhqxd"], [1, 9, "ANTIESEPRI", "first-oawadxmmg"]], "row_count": 88, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ANTIPRIBAR", "first-ifkiu"], "distinct_count": 88}, {"mcvs": [[1, 9, "ATIONANTIESE", "first-ywase"], [1, 9, "ANTIPRICALLY", "first-wfdvr"], [1, 9, "ANTIPRIEING", "first-em"]], "row_count": 51, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ATIONANTIESE", "first-ywase"], "distinct_count": 51}, {"mcvs": [[1, 9, "ATIONBARATION", "first-pmczbh"], [1, 9, "ATIONANTIOUGHT", "first-lw"], [1, 9, "ATIONANTIOUGHT", "first-wptvyskpz"]], "row_count": 46, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ATIONBARATION", "first-pmczbh"], "distinct_count": 46}, {"mcvs": [[1, 9, "ATIONESECALLY", "first-lbej"], [1, 9, "ATIONBARBAR", "first-levrixzx"], [1, 9, "ATIONBARBAR", "first-qurnner"]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ATIONESECALLY", "first-lbej"], "distinct_count": 94}, {"mcvs": [[1, 9, "ATIONPRIEING", "first-wbkwr"], [1, 9, "ATIONESEEING", "first-di"], [1, 9, "ATIONESEEING", "first-mbtap"]], "row_count": 97, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ATIONPRIEING", "first-wbkwr"], "distinct_count": 97}, {"mcvs": [[1, 9, "BARANTIEING", "first-ipdpyl"], [1, 9, "ATIONPRIESE", "first-evpc"], [1, 9, "ATIONPRIESE", "first-jyzobaztw"]], "row_count": 56, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "BARANTIEING", "first-ipdpyl"], "distinct_count": 56}, {"mcvs": [[1, 9, "BARCALLYATION", "first-vinseodo"], [1, 9, "BARANTIOUGHT", "first-nzzyq"], [1, 9, "BARANTIOUGHT", "first-rqxlhlbda"]], "row_count": 72, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "BARCALLYATION", "first-vinseodo"], "distinct_count": 72}, {"mcvs": [[1, 9, "BAROUGHTEING", "first-zyjlrbbze"], [1, 9, "BARCALLYCALLY", "first-tcoahdlhk"], [1, 9, "BARCALLYCALLY", "first-zuzy"]], "row_count": 89, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "BAROUGHTEING", "first-zyjlrbbze"], "distinct_count": 89}, {"mcvs": [[1, 9, "CALLYABLEESE", "first-ejyjs"], [1, 9, "BAROUGHTOUGHT", "first-cauaoo"], [1, 9, "BAROUGHTOUGHT", "first-cuaexpma"]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "CALLYABLEESE", "first-ejyjs"], "distinct_count": 94}, {"mcvs": [[1, 9, "CALLYANTIOUGHT", "first-uqkvkdka"], [1, 9, "CALLYABLEESE", "first-rbwu"], [1, 9, "CALLYABLEOUGHT", "first-us"]], "row_count": 38, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "CALLYANTIOUGHT", "first-uqkvkdka"], "distinct_count": 38}, {"mcvs": [[1, 9, "CALLYBARPRI", "first-ujmesfozps"], [1, 9, "CALLYANTIPRES", "first-ucafikz"], [1, 9, "CALLYANTIPRI", "first-bx"]], "row_count": 64, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "CALLYBARPRI", "first-ujmesfozps"], "distinct_count": 64}, {"mcvs": [[1, 9, "CALLYEINGPRES", "first-euefgcen"], [1, 9, "CALLYCALLYABLE", "first-hwijmdc"], [1, 9, "CALLYCALLYABLE", "first-svzrbsmtfk"]], "row_count": 61, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "CALLYEINGPRES", "first-euefgcen"], "distinct_count": 61}, {"mcvs": [[1, 9, "CALLYOUGHTEING", "first-bdfkv"], [1, 9, "CALLYEINGPRES", "first-taxxxaehvg"], [1, 9, "CALLYEINGPRES", "first-vjzca"]], "row_count": 58, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "CALLYOUGHTEING", "first-bdfkv"], "distinct_count": 58}, {"mcvs": [[1, 9, "EINGABLEABLE", "first-rhzits"], [1, 9, "CALLYOUGHTEING", "first-ouvro"], [1, 9, "CALLYOUGHTESE", "first-clvnu"]], "row_count": 68, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "EINGABLEABLE", "first-rhzits"], "distinct_count": 68}, {"mcvs": [[1, 9, "EINGATIONCALLY", "first-wi"], [1, 9, "EINGABLEANTI", "first-as"], [1, 9, "EINGABLEANTI", "first-bldzfme"]], "row_count": 69, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "EINGATIONCALLY", "first-wi"], "distinct_count": 69}, {"mcvs": [[1, 9, "EINGEINGANTI", "first-rcfmcf"], [1, 9, "EINGATIONEING", "first-smlghjy"], [1, 9, "EINGATIONESE", "first-qknyopg"]], "row_count": 81, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "EINGEINGANTI", "first-rcfmcf"], "distinct_count": 81}, {"mcvs": [[1, 9, "EINGPRESABLE", "first-sjpedsfw"], [1, 9, "EINGEINGATION", "first-qbthqvwzvn"], [1, 9, "EINGEINGBAR", "first-eejyzxldn"]], "row_count": 93, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "EINGPRESABLE", "first-sjpedsfw"], "distinct_count": 93}, {"mcvs": [[1, 9, "ESEABLEPRI", "first-egud"], [1, 9, "EINGPRESATION", "first-ddcxvv"], [1, 9, "EINGPRESATION", "first-wwx"]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ESEABLEPRI", "first-egud"], "distinct_count": 94}, {"mcvs": [[1, 9, "ESEATIONESE", "first-zfytohdkjk"], [1, 9, "ESEANTIABLE", "first-vlicse"], [1, 9, "ESEANTIANTI", "first-gham"]], "row_count": 46, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ESEATIONESE", "first-zfytohdkjk"], "distinct_count": 46}, {"mcvs": [[1, 9, "ESECALLYPRI", "first-ghqeqtuzfu"], [1, 9, "ESEATIONOUGHT", "first-mgp"], [1, 9, "ESEATIONOUGHT", "first-rnckod"]], "row_count": 74, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ESECALLYPRI", "first-ghqeqtuzfu"], "distinct_count": 74}, {"mcvs": [[1, 9, "ESEPRESESE", "first-exnnaamndh"], [1, 9, "ESEEINGABLE", "first-my"], [1, 9, "ESEEINGABLE", "first-pwvy"]], "row_count": 118, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "ESEPRESESE", "first-exnnaamndh"], "distinct_count": 118}, {"mcvs": [[1, 9, "OUGHTANTIANTI", "first-lnswurktfz"], [1, 9, "ESEPRESESE", "first-sbdw"], [1, 9, "ESEPRESOUGHT", "first-cvtplywo"]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "OUGHTANTIANTI", "first-lnswurktfz"], "distinct_count": 87}, {"mcvs": [[1, 9, "OUGHTCALLYEING", "first-neycislmlz"], [1, 9, "OUGHTANTIATION", "first-dc"], [1, 9, "OUGHTANTIATION", "first-vwvt"]], "row_count": 90, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "OUGHTCALLYEING", "first-neycislmlz"], "distinct_count": 90}, {"mcvs": [[1, 9, "OUGHTOUGHTANTI", "first-bazlpepdc"], [1, 9, "OUGHTCALLYEING", "first-vpffjutb"], [1, 9, "OUGHTCALLYEING", "first-wfoldi"]], "row_count": 76, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "OUGHTOUGHTANTI", "first-bazlpepdc"], "distinct_count": 76}, {"mcvs": [[1, 9, "PRESABLEANTI", "first-hhinf"], [1, 9, "OUGHTOUGHTANTI", "first-mkokgrxd"], [1, 9, "OUGHTOUGHTANTI", "first-odlqz"]], "row_count": 81, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "PRESABLEANTI", "first-hhinf"], "distinct_count": 81}, {"mcvs": [[1, 9, "PRESANTIPRI", "first-rpkafdazkz"], [1, 9, "PRESABLEATION", "first-dw"], [1, 9, "PRESABLEATION", "first-hirlgpxad"]], "row_count": 62, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "PRESANTIPRI", "first-rpkafdazkz"], "distinct_count": 62}, {"mcvs": [[1, 9, "PRESEINGABLE", "first-edyhbjcuk"], [1, 9, "PRESATIONABLE", "first-lqixrke"], [1, 9, "PRESATIONABLE", "first-ltbcl"]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "PRESEINGABLE", "first-edyhbjcuk"], "distinct_count": 82}, {"mcvs": [[1, 9, "PRESPRESATION", "first-hzjvzpfu"], [1, 9, "PRESEINGABLE", "first-laevvwspij"], [1, 9, "PRESEINGABLE", "first-lcxljf"]], "row_count": 93, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "PRESPRESATION", "first-hzjvzpfu"], "distinct_count": 93}, {"mcvs": [[1, 9, "PRIANTIANTI", "first-bogdjzgx"], [1, 9, "PRESPRESATION", "first-odxervaxm"], [1, 9, "PRESPRESBAR", "first-dacuh"]], "row_count": 99, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "PRIANTIANTI", "first-bogdjzgx"], "distinct_count": 99}, {"mcvs": [[1, 9, "PRIBARCALLY", "first-uuoe"], [1, 9, "PRIANTIANTI", "first-iardpbb"], [1, 9, "PRIANTIANTI", "first-peukoyha"]], "row_count": 74, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "PRIBARCALLY", "first-uuoe"], "distinct_count": 74}, {"mcvs": [[1, 9, "PRIOUGHTATION", "first-hw"], [1, 9, "PRIBAREING", "first-xuitgpr"], [1, 9, "PRIBARESE", "first-dnpkyverwa"]], "row_count": 115, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, "PRIOUGHTATION", "first-hw"], "distinct_count": 115}, {"mcvs": [[1, 10, "ABLEABLEANTI", "first-igmej"], [1, 9, "PRIOUGHTATION", "first-xfiilnpf"], [1, 9, "PRIOUGHTATION", "first-yrjmxvmo"]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ABLEABLEANTI", "first-igmej"], "distinct_count": 87}, {"mcvs": [[1, 10, "ABLEBARCALLY", "first-eymmmq"], [1, 10, "ABLEABLEATION", "first-dch"], [1, 10, "ABLEABLEATION", "first-dey"]], "row_count": 103, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ABLEBARCALLY", "first-eymmmq"], "distinct_count": 103}, {"mcvs": [[1, 10, "ABLEEINGBAR", "first-faoxyygj"], [1, 10, "ABLEBARCALLY", "first-iuwg"], [1, 10, "ABLEBARCALLY", "first-unrzvltnj"]], "row_count": 54, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ABLEEINGBAR", "first-faoxyygj"], "distinct_count": 54}, {"mcvs": [[1, 10, "ABLEOUGHTOUGHT", "first-gidrhqijs"], [1, 10, "ABLEEINGBAR", "first-ialbo"], [1, 10, "ABLEEINGBAR", "first-xaogroea"]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ABLEOUGHTOUGHT", "first-gidrhqijs"], "distinct_count": 77}, {"mcvs": [[1, 10, "ANTIABLECALLY", "first-befqye"], [1, 10, "ABLEOUGHTPRES", "first-aexcqcmno"], [1, 10, "ABLEOUGHTPRES", "first-frwguffid"]], "row_count": 91, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ANTIABLECALLY", "first-befqye"], "distinct_count": 91}, {"mcvs": [[1, 10, "ANTICALLYABLE", "first-lyzd"], [1, 10, "ANTIABLECALLY", "first-qnpnpo"], [1, 10, "ANTIABLEEING", "first-qxh"]], "row_count": 102, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ANTICALLYABLE", "first-lyzd"], "distinct_count": 102}, {"mcvs": [[1, 10, "ANTIOUGHTBAR", "first-blwxyzod"], [1, 10, "ANTICALLYANTI", "first-qx"], [1, 10, "ANTICALLYATION", "first-ganqzoyva"]], "row_count": 75, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ANTIOUGHTBAR", "first-blwxyzod"], "distinct_count": 75}, {"mcvs": [[1, 10, "ATIONABLEEING", "first-znrrymay"], [1, 10, "ANTIOUGHTBAR", "first-rydgvkdmj"], [1, 10, "ANTIOUGHTCALLY", "first-fajusqxhy"]], "row_count": 109, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ATIONABLEEING", "first-znrrymay"], "distinct_count": 109}, {"mcvs": [[1, 10, "ATIONANTIATION", "first-wxbhcfotqu"], [1, 10, "ATIONABLEOUGHT", "first-jnaypt"], [1, 10, "ATIONABLEOUGHT", "first-uaigwu"]], "row_count": 21, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ATIONANTIATION", "first-wxbhcfotqu"], "distinct_count": 21}, {"mcvs": [[1, 10, "ATIONEINGABLE", "first-xvzznvj"], [1, 10, "ATIONANTIBAR", "first-mhtvszl"], [1, 10, "ATIONANTIBAR", "first-vtyqedekm"]], "row_count": 101, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ATIONEINGABLE", "first-xvzznvj"], "distinct_count": 101}, {"mcvs": [[1, 10, "ATIONESEPRES", "first-jzwxnoivvn"], [1, 10, "ATIONEINGANTI", "first-fbtfmcvpac"], [1, 10, "ATIONEINGANTI", "first-upulaod"]], "row_count": 56, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ATIONESEPRES", "first-jzwxnoivvn"], "distinct_count": 56}, {"mcvs": [[1, 10, "ATIONPRIEING", "first-nmwzvwvtpi"], [1, 10, "ATIONESEPRI", "first-htklm"], [1, 10, "ATIONESEPRI", "first-rsqb"]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ATIONPRIEING", "first-nmwzvwvtpi"], "distinct_count": 82}, {"mcvs": [[1, 10, "BARATIONBAR", "first-tfbtwl"], [1, 10, "ATIONPRIESE", "first-anyoe"], [1, 10, "ATIONPRIESE", "first-ezcynl"]], "row_count": 85, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "BARATIONBAR", "first-tfbtwl"], "distinct_count": 85}, {"mcvs": [[1, 10, "BARCALLYCALLY", "first-cnirtnj"], [1, 10, "BARATIONCALLY", "first-jazhzrbsp"], [1, 10, "BARATIONCALLY", "first-ljsnt"]], "row_count": 71, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "BARCALLYCALLY", "first-cnirtnj"], "distinct_count": 71}, {"mcvs": [[1, 10, "BARESEANTI", "first-gwj"], [1, 10, "BARCALLYCALLY", "first-rqmoagms"], [1, 10, "BARCALLYCALLY", "first-rykiotfnn"]], "row_count": 49, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "BARESEANTI", "first-gwj"], "distinct_count": 49}, {"mcvs": [[1, 10, "BARPRESPRI", "first-bfbahwidk"], [1, 10, "BARESEANTI", "first-xyvx"], [1, 10, "BARESEANTI", "first-zuyuax"]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "BARPRESPRI", "first-bfbahwidk"], "distinct_count": 77}, {"mcvs": [[1, 10, "CALLYANTIESE", "first-sdegwnb"], [1, 10, "BARPRIABLE", "first-eiecdmxbt"], [1, 10, "BARPRIABLE", "first-tzjm"]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "CALLYANTIESE", "first-sdegwnb"], "distinct_count": 87}, {"mcvs": [[1, 10, "CALLYCALLYCALLY", "first-rsc"], [1, 10, "CALLYANTIPRES", "first-cyzjkkf"], [1, 10, "CALLYANTIPRES", "first-eguhxhsujk"]], "row_count": 99, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "CALLYCALLYCALLY", "first-rsc"], "distinct_count": 99}, {"mcvs": [[1, 10, "CALLYPRESATION", "first-erdfvfd"], [1, 10, "CALLYCALLYESE", "first-dnqbepwt"], [1, 10, "CALLYCALLYOUGHT", "first-nri"]], "row_count": 102, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "CALLYPRESATION", "first-erdfvfd"], "distinct_count": 102}, {"mcvs": [[1, 10, "EINGABLEEING", "first-eo"], [1, 10, "CALLYPRESATION", "first-tqxk"], [1, 10, "CALLYPRESBAR", "first-abiemdbtft"]], "row_count": 73, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "EINGABLEEING", "first-eo"], "distinct_count": 73}, {"mcvs": [[1, 10, "EINGBARPRI", "first-qxbz"], [1, 10, "EINGABLEEING", "first-ypfqcbgwmj"], [1, 10, "EINGABLEESE", "first-lxhl"]], "row_count": 103, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "EINGBARPRI", "first-qxbz"], "distinct_count": 103}, {"mcvs": [[1, 10, "EINGESEBAR", "first-ziphoysb"], [1, 10, "EINGCALLYABLE", "first-dgxpsjyx"], [1, 10, "EINGCALLYABLE", "first-jgzykbf"]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "EINGESEBAR", "first-ziphoysb"], "distinct_count": 77}, {"mcvs": [[1, 10, "EINGOUGHTOUGHT", "first-bzgflxblg"], [1, 10, "EINGESECALLY", "first-kocd"], [1, 10, "EINGESECALLY", "first-zwzfn"]], "row_count": 41, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "EINGOUGHTOUGHT", "first-bzgflxblg"], "distinct_count": 41}, {"mcvs": [[1, 10, "ESEANTIATION", "first-mhwv"], [1, 10, "EINGOUGHTOUGHT", "first-psu"], [1, 10, "EINGOUGHTPRES", "first-buvr"]], "row_count": 95, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ESEANTIATION", "first-mhwv"], "distinct_count": 95}, {"mcvs": [[1, 10, "ESEBARATION", "first-qbpbgki"], [1, 10, "ESEANTIATION", "first-xjvacxtsl"], [1, 10, "ESEANTIBAR", "first-cypqeh"]], "row_count": 67, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ESEBARATION", "first-qbpbgki"], "distinct_count": 67}, {"mcvs": [[1, 10, "ESEESECALLY", "first-stjtajhg"], [1, 10, "ESEBARCALLY", "first-syxgbhds"], [1, 10, "ESEBARCALLY", "first-tgcykz"]], "row_count": 89, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ESEESECALLY", "first-stjtajhg"], "distinct_count": 89}, {"mcvs": [[1, 10, "ESEPRIPRES", "first-nnbryelbux"], [1, 10, "ESEESECALLY", "first-xin"], [1, 10, "ESEESEEING", "first-irxuttma"]], "row_count": 112, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "ESEPRIPRES", "first-nnbryelbux"], "distinct_count": 112}, {"mcvs": [[1, 10, "OUGHTATIONPRI", "first-ukfhsaox"], [1, 10, "ESEPRIPRES", "first-yw"], [1, 10, "ESEPRIPRI", "first-fpdgpvpqks"]], "row_count": 90, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "OUGHTATIONPRI", "first-ukfhsaox"], "distinct_count": 90}, {"mcvs": [[1, 10, "OUGHTESEPRES", "first-oluoxpeo"], [1, 10, "OUGHTBARABLE", "first-kk"], [1, 10, "OUGHTBARANTI", "first-cilpibgjx"]], "row_count": 111, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "OUGHTESEPRES", "first-oluoxpeo"], "distinct_count": 111}, {"mcvs": [[1, 10, "PRESABLEPRI", "first-nctqin"], [1, 10, "OUGHTESEPRI", "first-doxpoygi"], [1, 10, "OUGHTESEPRI", "first-slazjxtu"]], "row_count": 114, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "PRESABLEPRI", "first-nctqin"], "distinct_count": 114}, {"mcvs": [[1, 10, "PRESATIONESE", "first-ahrq"], [1, 10, "PRESANTIABLE", "first-fihak"], [1, 10, "PRESANTIABLE", "first-ozfhrpbmm"]], "row_count": 52, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "PRESATIONESE", "first-ahrq"], "distinct_count": 52}, {"mcvs": [[1, 10, "PRESESEABLE", "first-didhgouyyt"], [1, 10, "PRESATIONESE", "first-lqy"], [1, 10, "PRESATIONESE", "first-zxuay"]], "row_count": 104, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "PRESESEABLE", "first-didhgouyyt"], "distinct_count": 104}, {"mcvs": [[1, 10, "PRESPRIATION", "first-gd"], [1, 10, "PRESESEABLE", "first-rmryd"], [1, 10, "PRESESEANTI", "first-gfg"]], "row_count": 102, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "PRESPRIATION", "first-gd"], "distinct_count": 102}, {"mcvs": [[1, 10, "PRIANTIANTI", "first-bim"], [1, 10, "PRESPRIATION", "first-zma"], [1, 10, "PRESPRIBAR", "first-drewkqpwml"]], "row_count": 62, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "PRIANTIANTI", "first-bim"], "distinct_count": 62}, {"mcvs": [[1, 10, "PRIBARANTI", "first-exlpgif"], [1, 10, "PRIANTIANTI", "first-nm"], [1, 10, "PRIANTIANTI", "first-opkuntccb"]], "row_count": 64, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "PRIBARANTI", "first-exlpgif"], "distinct_count": 64}, {"mcvs": [[1, 10, "PRIEINGEING", "first-wol"], [1, 10, "PRIBARATION", "first-lc"], [1, 10, "PRIBARATION", "first-ujnl"]], "row_count": 72, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "PRIEINGEING", "first-wol"], "distinct_count": 72}, {"mcvs": [[1, 10, "PRIOUGHTESE", "first-padh"], [1, 10, "PRIEINGESE", "first-hvrdvf"], [1, 10, "PRIEINGESE", "first-jjswx"]], "row_count": 52, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "PRIOUGHTESE", "first-padh"], "distinct_count": 52}, {"mcvs": [[1, 10, "PRIPRIPRI", "first-tvlbtinfv"], [1, 10, "PRIOUGHTESE", "first-yzsdknsn"], [1, 10, "PRIOUGHTOUGHT", "first-fqivff"]], "row_count": 71, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, "PRIPRIPRI", "first-tvlbtinfv"], "distinct_count": 71}], "columns": ["c_w_id", "c_d_id", "c_last", "c_first"], "avg_size": 0, "qualifier": {"database": "sbt", "table": "customer2", "index": "idx_customer2"}, "row_count": 30000, "created_at": "2023-11-10T15:06:17-08:00", "null_count": 30000, "distinct_count": 29999}';`,
`analyze table item2 update histogram on i_id using data '{"types": ["int"], "buckets": [{"mcvs": [[3753], [2], [3]], "row_count": 3753, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [3753], "distinct_count": 3753}, {"mcvs": [[10230], [3755], [3756]], "row_count": 6477, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [10230], "distinct_count": 6477}, {"mcvs": [[15729], [10232], [10233]], "row_count": 5499, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [15729], "distinct_count": 5499}, {"mcvs": [[20219], [15731], [15732]], "row_count": 4490, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [20219], "distinct_count": 4490}, {"mcvs": [[23572], [20221], [20222]], "row_count": 3353, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [23572], "distinct_count": 3353}, {"mcvs": [[28908], [23574], [23575]], "row_count": 5336, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [28908], "distinct_count": 5336}, {"mcvs": [[34158], [28910], [28911]], "row_count": 5250, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [34158], "distinct_count": 5250}, {"mcvs": [[39859], [34160], [34161]], "row_count": 5701, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [39859], "distinct_count": 5701}, {"mcvs": [[45067], [39861], [39862]], "row_count": 5208, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [45067], "distinct_count": 5208}, {"mcvs": [[48391], [45069], [45070]], "row_count": 3324, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [48391], "distinct_count": 3324}, {"mcvs": [[51012], [48393], [48394]], "row_count": 2621, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [51012], "distinct_count": 2621}, {"mcvs": [[54233], [51014], [51015]], "row_count": 3221, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [54233], "distinct_count": 3221}, {"mcvs": [[61441], [54235], [54236]], "row_count": 7208, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [61441], "distinct_count": 7208}, {"mcvs": [[66905], [61443], [61444]], "row_count": 5464, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [66905], "distinct_count": 5464}, {"mcvs": [[73078], [66907], [66908]], "row_count": 6173, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [73078], "distinct_count": 6173}, {"mcvs": [[79313], [73080], [73081]], "row_count": 6235, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [79313], "distinct_count": 6235}, {"mcvs": [[86420], [79315], [79316]], "row_count": 7107, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [86420], "distinct_count": 7107}, {"mcvs": [[93245], [86422], [86423]], "row_count": 6825, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [93245], "distinct_count": 6825}, {"mcvs": [[97785], [93247], [93248]], "row_count": 4540, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [97785], "distinct_count": 4540}, {"mcvs": [[100000], [97787], [97788]], "row_count": 2215, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [100000], "distinct_count": 2215}], "columns": ["i_id"], "avg_size": 0, "qualifier": {"database": "sbt", "table": "item2", "index": "primary"}, "row_count": 100000, "created_at": "2023-11-10T15:42:08-08:00", "null_count": 100000, "distinct_count": 100000}';`,
`analyze table order_line2 update histogram on (ol_supply_w_id, ol_i_id) using data '{"types": ["smallint", "int"], "buckets": [{"mcvs": [[1, 2720], [1, 1180], [1, 105]], "row_count": 12742, "mcv_counts": [10, 10, 10], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3957], "distinct_count": 3812}, {"mcvs": [[1, 4241], [1, 6581], [1, 4551]], "row_count": 11080, "mcv_counts": [10, 10, 11], "null_count": 0, "bound_count": 3, "upper_bound": [1, 7450], "distinct_count": 3350}, {"mcvs": [[1, 11523], [1, 8114], [1, 8948]], "row_count": 16896, "mcv_counts": [11, 11, 11], "null_count": 0, "bound_count": 4, "upper_bound": [1, 12691], "distinct_count": 5028}, {"mcvs": [[1, 13769], [1, 15663], [1, 14017]], "row_count": 10152, "mcv_counts": [10, 11, 11], "null_count": 0, "bound_count": 5, "upper_bound": [1, 15857], "distinct_count": 3047}, {"mcvs": [[1, 18217], [1, 18529], [1, 18105]], "row_count": 12874, "mcv_counts": [11, 11, 11], "null_count": 0, "bound_count": 1, "upper_bound": [1, 19914], "distinct_count": 3900}, {"mcvs": [[1, 20513], [1, 24339], [1, 23278]], "row_count": 14431, "mcv_counts": [11, 11, 12], "null_count": 0, "bound_count": 2, "upper_bound": [1, 24342], "distinct_count": 4241}, {"mcvs": [[1, 24796], [1, 26595], [1, 26638]], "row_count": 8138, "mcv_counts": [10, 12, 13], "null_count": 0, "bound_count": 3, "upper_bound": [1, 26848], "distinct_count": 2412}, {"mcvs": [[1, 31266], [1, 29404], [1, 27576]], "row_count": 14560, "mcv_counts": [11, 11, 12], "null_count": 0, "bound_count": 2, "upper_bound": [1, 31361], "distinct_count": 4334}, {"mcvs": [[1, 34386], [1, 32054], [1, 33042]], "row_count": 10512, "mcv_counts": [10, 10, 10], "null_count": 0, "bound_count": 2, "upper_bound": [1, 34620], "distinct_count": 3146}, {"mcvs": [[1, 38866], [1, 38230], [1, 35492]], "row_count": 13756, "mcv_counts": [10, 10, 11], "null_count": 0, "bound_count": 1, "upper_bound": [1, 38900], "distinct_count": 4085}, {"mcvs": [[1, 41593], [1, 39026], [1, 38986]], "row_count": 10527, "mcv_counts": [9, 10, 9], "null_count": 0, "bound_count": 3, "upper_bound": [1, 42135], "distinct_count": 3111}, {"mcvs": [[1, 44244], [1, 44586], [1, 42605]], "row_count": 11108, "mcv_counts": [10, 10, 11], "null_count": 0, "bound_count": 2, "upper_bound": [1, 45520], "distinct_count": 3264}, {"mcvs": [[1, 48530], [1, 47073], [1, 47930]], "row_count": 11553, "mcv_counts": [11, 11, 11], "null_count": 0, "bound_count": 2, "upper_bound": [1, 49138], "distinct_count": 3450}, {"mcvs": [[1, 51526], [1, 52981], [1, 50533]], "row_count": 12494, "mcv_counts": [10, 11, 11], "null_count": 0, "bound_count": 2, "upper_bound": [1, 53015], "distinct_count": 3725}, {"mcvs": [[1, 54252], [1, 53538], [1, 53212]], "row_count": 4422, "mcv_counts": [9, 12, 10], "null_count": 0, "bound_count": 3, "upper_bound": [1, 54385], "distinct_count": 1314}, {"mcvs": [[1, 56094], [1, 56902], [1, 55197]], "row_count": 10194, "mcv_counts": [11, 11, 12], "null_count": 0, "bound_count": 1, "upper_bound": [1, 57509], "distinct_count": 3011}, {"mcvs": [[1, 59833], [1, 60143], [1, 57613]], "row_count": 11103, "mcv_counts": [10, 11, 12], "null_count": 0, "bound_count": 2, "upper_bound": [1, 60922], "distinct_count": 3271}, {"mcvs": [[1, 61547], [1, 61258], [1, 61515]], "row_count": 2515, "mcv_counts": [9, 10, 10], "null_count": 0, "bound_count": 2, "upper_bound": [1, 61742], "distinct_count": 786}, {"mcvs": [[1, 64085], [1, 63472], [1, 61893]], "row_count": 10058, "mcv_counts": [10, 11, 10], "null_count": 0, "bound_count": 2, "upper_bound": [1, 64851], "distinct_count": 2990}, {"mcvs": [[1, 66953], [1, 66996], [1, 65545]], "row_count": 11087, "mcv_counts": [10, 10, 11], "null_count": 0, "bound_count": 1, "upper_bound": [1, 68248], "distinct_count": 3268}, {"mcvs": [[1, 70510], [1, 70484], [1, 68961]], "row_count": 7449, "mcv_counts": [10, 11, 11], "null_count": 0, "bound_count": 2, "upper_bound": [1, 70514], "distinct_count": 2189}, {"mcvs": [[1, 74089], [1, 73316], [1, 73311]], "row_count": 15276, "mcv_counts": [11, 11, 11], "null_count": 0, "bound_count": 4, "upper_bound": [1, 75227], "distinct_count": 4522}, {"mcvs": [[1, 75349], [1, 76499], [1, 75236]], "row_count": 11689, "mcv_counts": [11, 13, 11], "null_count": 0, "bound_count": 1, "upper_bound": [1, 78879], "distinct_count": 3492}, {"mcvs": [[1, 81082], [1, 81826], [1, 80929]], "row_count": 12771, "mcv_counts": [10, 10, 11], "null_count": 0, "bound_count": 2, "upper_bound": [1, 82865], "distinct_count": 3825}, {"mcvs": [[1, 86781], [1, 85808], [1, 84052]], "row_count": 14845, "mcv_counts": [11, 12, 11], "null_count": 0, "bound_count": 2, "upper_bound": [1, 87446], "distinct_count": 4388}, {"mcvs": [[1, 89189], [1, 88533], [1, 87467]], "row_count": 6394, "mcv_counts": [9, 11, 9], "null_count": 0, "bound_count": 1, "upper_bound": [1, 89388], "distinct_count": 1875}, {"mcvs": [[1, 90490], [1, 89608], [1, 89795]], "row_count": 10141, "mcv_counts": [10, 11, 11], "null_count": 0, "bound_count": 2, "upper_bound": [1, 92553], "distinct_count": 3042}, {"mcvs": [[1, 96486], [1, 93963], [1, 94217]], "row_count": 13373, "mcv_counts": [9, 10, 10], "null_count": 0, "bound_count": 3, "upper_bound": [1, 96628], "distinct_count": 3929}, {"mcvs": [[1, 98912], [1, 97473], [1, 97054]], "row_count": 10905, "mcv_counts": [10, 10, 10], "null_count": 0, "bound_count": 3, "upper_bound": [1, 100000], "distinct_count": 3267}], "columns": ["ol_supply_w_id", "ol_i_id"], "avg_size": 0, "qualifier": {"database": "sbt", "table": "order_line2", "index": "fkey_order_line_22"}, "row_count": 323045, "created_at": "2023-11-10T15:06:18-08:00", "null_count": 323045, "distinct_count": 96074}';`,
`analyze table order_line2 update histogram on (ol_w_id, ol_d_id, ol_o_id, ol_number) using data '{"types": ["smallint", "tinyint", "int", "tinyint"], "buckets": [{"mcvs": [[1, 1, 524, 5], [1, 1, 1, 2], [1, 1, 1, 3]], "row_count": 5226, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 524, 5], "distinct_count": 5226}, {"mcvs": [[1, 1, 899, 1], [1, 1, 525, 2], [1, 1, 525, 3]], "row_count": 3697, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 899, 1], "distinct_count": 3697}, {"mcvs": [[1, 1, 1458, 1], [1, 1, 899, 3], [1, 1, 899, 4]], "row_count": 5551, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1458, 1], "distinct_count": 5551}, {"mcvs": [[1, 1, 1653, 3], [1, 1, 1458, 3], [1, 1, 1458, 4]], "row_count": 2074, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1653, 3], "distinct_count": 2074}, {"mcvs": [[1, 1, 2091, 7], [1, 1, 1653, 5], [1, 1, 1654, 1]], "row_count": 4396, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2091, 7], "distinct_count": 4396}, {"mcvs": [[1, 1, 2562, 7], [1, 1, 2091, 9], [1, 1, 2091, 10]], "row_count": 4671, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2562, 7], "distinct_count": 4671}, {"mcvs": [[1, 1, 2989, 6], [1, 1, 2562, 9], [1, 1, 2562, 10]], "row_count": 4238, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2989, 6], "distinct_count": 4238}, {"mcvs": [[1, 2, 229, 7], [1, 1, 2989, 8], [1, 1, 2989, 9]], "row_count": 4773, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 229, 7], "distinct_count": 4773}, {"mcvs": [[1, 2, 877, 9], [1, 2, 229, 9], [1, 2, 229, 10]], "row_count": 6390, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 877, 9], "distinct_count": 6390}, {"mcvs": [[1, 2, 1428, 12], [1, 2, 877, 11], [1, 2, 877, 12]], "row_count": 5478, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1428, 12], "distinct_count": 5478}, {"mcvs": [[1, 2, 1719, 14], [1, 2, 1428, 14], [1, 2, 1428, 15]], "row_count": 2936, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1719, 14], "distinct_count": 2936}, {"mcvs": [[1, 2, 1984, 13], [1, 2, 1720, 2], [1, 2, 1720, 3]], "row_count": 2729, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1984, 13], "distinct_count": 2729}, {"mcvs": [[1, 2, 2439, 6], [1, 2, 1985, 1], [1, 2, 1985, 2]], "row_count": 4538, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2439, 6], "distinct_count": 4538}, {"mcvs": [[1, 2, 2769, 6], [1, 2, 2440, 1], [1, 2, 2440, 2]], "row_count": 3311, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2769, 6], "distinct_count": 3311}, {"mcvs": [[1, 3, 177, 9], [1, 2, 2770, 1], [1, 2, 2770, 2]], "row_count": 6694, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 177, 9], "distinct_count": 6694}, {"mcvs": [[1, 3, 836, 7], [1, 3, 178, 1], [1, 3, 178, 2]], "row_count": 6510, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 836, 7], "distinct_count": 6510}, {"mcvs": [[1, 3, 1447, 7], [1, 3, 836, 9], [1, 3, 836, 10]], "row_count": 6063, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1447, 7], "distinct_count": 6063}, {"mcvs": [[1, 3, 1984, 14], [1, 3, 1447, 9], [1, 3, 1447, 10]], "row_count": 5376, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1984, 14], "distinct_count": 5376}, {"mcvs": [[1, 3, 2270, 5], [1, 3, 1985, 2], [1, 3, 1985, 3]], "row_count": 2851, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2270, 5], "distinct_count": 2851}, {"mcvs": [[1, 3, 2846, 9], [1, 3, 2270, 7], [1, 3, 2270, 8]], "row_count": 5659, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2846, 9], "distinct_count": 5659}, {"mcvs": [[1, 4, 283, 10], [1, 3, 2846, 11], [1, 3, 2846, 12]], "row_count": 6635, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 283, 10], "distinct_count": 6635}, {"mcvs": [[1, 4, 901, 4], [1, 4, 283, 12], [1, 4, 284, 1]], "row_count": 6121, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 901, 4], "distinct_count": 6121}, {"mcvs": [[1, 4, 1365, 10], [1, 4, 901, 6], [1, 4, 901, 7]], "row_count": 4686, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1365, 10], "distinct_count": 4686}, {"mcvs": [[1, 4, 1830, 10], [1, 4, 1366, 1], [1, 4, 1366, 2]], "row_count": 4609, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1830, 10], "distinct_count": 4609}, {"mcvs": [[1, 4, 2309, 4], [1, 4, 1831, 2], [1, 4, 1831, 3]], "row_count": 4865, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2309, 4], "distinct_count": 4865}, {"mcvs": [[1, 4, 2857, 3], [1, 4, 2309, 6], [1, 4, 2309, 7]], "row_count": 5426, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2857, 3], "distinct_count": 5426}, {"mcvs": [[1, 5, 161, 8], [1, 4, 2857, 5], [1, 4, 2857, 6]], "row_count": 5557, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 161, 8], "distinct_count": 5557}, {"mcvs": [[1, 5, 683, 4], [1, 5, 161, 10], [1, 5, 161, 11]], "row_count": 5173, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 683, 4], "distinct_count": 5173}, {"mcvs": [[1, 5, 1130, 8], [1, 5, 683, 6], [1, 5, 683, 7]], "row_count": 4554, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1130, 8], "distinct_count": 4554}, {"mcvs": [[1, 5, 1952, 3], [1, 5, 1130, 10], [1, 5, 1130, 11]], "row_count": 8341, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1952, 3], "distinct_count": 8341}, {"mcvs": [[1, 5, 2541, 5], [1, 5, 1952, 5], [1, 5, 1953, 1]], "row_count": 5820, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2541, 5], "distinct_count": 5820}, {"mcvs": [[1, 5, 2978, 1], [1, 5, 2541, 7], [1, 5, 2541, 8]], "row_count": 4526, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2978, 1], "distinct_count": 4526}, {"mcvs": [[1, 6, 292, 7], [1, 5, 2978, 3], [1, 5, 2978, 4]], "row_count": 5484, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 292, 7], "distinct_count": 5484}, {"mcvs": [[1, 6, 664, 4], [1, 6, 293, 1], [1, 6, 293, 2]], "row_count": 3721, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 664, 4], "distinct_count": 3721}, {"mcvs": [[1, 6, 1367, 4], [1, 6, 664, 6], [1, 6, 664, 7]], "row_count": 6919, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1367, 4], "distinct_count": 6919}, {"mcvs": [[1, 6, 2217, 1], [1, 6, 1367, 6], [1, 6, 1367, 7]], "row_count": 8396, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2217, 1], "distinct_count": 8396}, {"mcvs": [[1, 6, 2719, 1], [1, 6, 2217, 3], [1, 6, 2217, 4]], "row_count": 5109, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2719, 1], "distinct_count": 5109}, {"mcvs": [[1, 6, 3221, 11], [1, 6, 2719, 3], [1, 6, 2719, 4]], "row_count": 5114, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 3221, 11], "distinct_count": 5114}, {"mcvs": [[1, 7, 451, 1], [1, 6, 3222, 1], [1, 6, 3222, 2]], "row_count": 4498, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 451, 1], "distinct_count": 4498}, {"mcvs": [[1, 7, 1151, 8], [1, 7, 451, 3], [1, 7, 451, 4]], "row_count": 7055, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1151, 8], "distinct_count": 7055}, {"mcvs": [[1, 7, 1895, 6], [1, 7, 1151, 10], [1, 7, 1151, 11]], "row_count": 7450, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1895, 6], "distinct_count": 7450}, {"mcvs": [[1, 7, 2641, 8], [1, 7, 1895, 8], [1, 7, 1895, 9]], "row_count": 7392, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2641, 8], "distinct_count": 7392}, {"mcvs": [[1, 7, 3121, 7], [1, 7, 2641, 10], [1, 7, 2641, 11]], "row_count": 4798, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 3121, 7], "distinct_count": 4798}, {"mcvs": [[1, 8, 467, 8], [1, 7, 3122, 1], [1, 7, 3122, 2]], "row_count": 5474, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 467, 8], "distinct_count": 5474}, {"mcvs": [[1, 8, 890, 4], [1, 8, 468, 1], [1, 8, 468, 2]], "row_count": 4248, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 890, 4], "distinct_count": 4248}, {"mcvs": [[1, 8, 1391, 6], [1, 8, 890, 6], [1, 8, 890, 7]], "row_count": 4992, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1391, 6], "distinct_count": 4992}, {"mcvs": [[1, 8, 1859, 5], [1, 8, 1391, 8], [1, 8, 1391, 9]], "row_count": 4770, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1859, 5], "distinct_count": 4770}, {"mcvs": [[1, 8, 2189, 4], [1, 8, 1860, 2], [1, 8, 1860, 3]], "row_count": 3345, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2189, 4], "distinct_count": 3345}, {"mcvs": [[1, 8, 2768, 10], [1, 8, 2189, 6], [1, 8, 2189, 7]], "row_count": 5865, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2768, 10], "distinct_count": 5865}, {"mcvs": [[1, 8, 3170, 7], [1, 8, 2768, 12], [1, 8, 2769, 1]], "row_count": 4078, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 3170, 7], "distinct_count": 4078}, {"mcvs": [[1, 9, 677, 9], [1, 8, 3170, 9], [1, 8, 3170, 10]], "row_count": 7276, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 677, 9], "distinct_count": 7276}, {"mcvs": [[1, 9, 1244, 3], [1, 9, 677, 11], [1, 9, 677, 12]], "row_count": 5658, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1244, 3], "distinct_count": 5658}, {"mcvs": [[1, 9, 1756, 4], [1, 9, 1244, 5], [1, 9, 1244, 6]], "row_count": 5125, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1756, 4], "distinct_count": 5125}, {"mcvs": [[1, 9, 2218, 7], [1, 9, 1756, 6], [1, 9, 1756, 7]], "row_count": 4540, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2218, 7], "distinct_count": 4540}, {"mcvs": [[1, 9, 2758, 4], [1, 9, 2219, 1], [1, 9, 2219, 2]], "row_count": 5306, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2758, 4], "distinct_count": 5306}, {"mcvs": [[1, 9, 3117, 2], [1, 9, 2758, 6], [1, 9, 2758, 7]], "row_count": 3637, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 3117, 2], "distinct_count": 3637}, {"mcvs": [[1, 10, 500, 1], [1, 9, 3117, 4], [1, 9, 3117, 5]], "row_count": 5963, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 500, 1], "distinct_count": 5963}, {"mcvs": [[1, 10, 907, 9], [1, 10, 500, 3], [1, 10, 500, 4]], "row_count": 4176, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 907, 9], "distinct_count": 4176}, {"mcvs": [[1, 10, 1428, 12], [1, 10, 908, 1], [1, 10, 908, 2]], "row_count": 5252, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1428, 12], "distinct_count": 5252}, {"mcvs": [[1, 10, 1914, 1], [1, 10, 1429, 2], [1, 10, 1429, 3]], "row_count": 4887, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1914, 1], "distinct_count": 4887}, {"mcvs": [[1, 10, 2131, 4], [1, 10, 1914, 3], [1, 10, 1914, 4]], "row_count": 2218, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2131, 4], "distinct_count": 2218}, {"mcvs": [[1, 10, 2675, 3], [1, 10, 2131, 6], [1, 10, 2131, 7]], "row_count": 5482, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2675, 3], "distinct_count": 5482}, {"mcvs": [[1, 10, 3224, 5], [1, 10, 2675, 5], [1, 10, 2675, 6]], "row_count": 5343, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 3224, 5], "distinct_count": 5343}], "columns": ["ol_w_id", "ol_d_id", "ol_o_id", "ol_number"], "avg_size": 0, "qualifier": {"database": "sbt", "table": "order_line2", "index": "primary"}, "row_count": 323045, "created_at": "2023-11-10T15:06:17-08:00", "null_count": 323045, "distinct_count": 323045}';`,
`analyze table orders2 update histogram on (o_w_id,o_d_id,o_c_id,o_id) using data '{"types": ["smallint", "tinyint", "int", "int"], "buckets": [{"mcvs": [[1, 1, 203, 320], [1, 1, 2, 863], [1, 1, 3, 1532]], "row_count": 216, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 203, 320], "distinct_count": 216}, {"mcvs": [[1, 1, 321, 813], [1, 1, 205, 1954], [1, 1, 206, 33]], "row_count": 123, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 321, 813], "distinct_count": 123}, {"mcvs": [[1, 1, 567, 1873], [1, 1, 323, 19], [1, 1, 324, 240]], "row_count": 263, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 567, 1873], "distinct_count": 263}, {"mcvs": [[1, 1, 767, 2024], [1, 1, 569, 462], [1, 1, 570, 370]], "row_count": 218, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 767, 2024], "distinct_count": 218}, {"mcvs": [[1, 1, 907, 1152], [1, 1, 769, 2437], [1, 1, 770, 2017]], "row_count": 154, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 907, 1152], "distinct_count": 154}, {"mcvs": [[1, 1, 1116, 1938], [1, 1, 909, 2272], [1, 1, 909, 3070]], "row_count": 222, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1116, 1938], "distinct_count": 222}, {"mcvs": [[1, 1, 1204, 3122], [1, 1, 1118, 518], [1, 1, 1119, 615]], "row_count": 96, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1204, 3122], "distinct_count": 96}, {"mcvs": [[1, 1, 1364, 1895], [1, 1, 1206, 2283], [1, 1, 1207, 1337]], "row_count": 171, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1364, 1895], "distinct_count": 171}, {"mcvs": [[1, 1, 1544, 2827], [1, 1, 1365, 2614], [1, 1, 1366, 2228]], "row_count": 191, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1544, 2827], "distinct_count": 191}, {"mcvs": [[1, 1, 1664, 698], [1, 1, 1545, 993], [1, 1, 1546, 682]], "row_count": 131, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1664, 698], "distinct_count": 131}, {"mcvs": [[1, 1, 1852, 747], [1, 1, 1666, 2969], [1, 1, 1667, 2062]], "row_count": 206, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1852, 747], "distinct_count": 206}, {"mcvs": [[1, 1, 1958, 2151], [1, 1, 1854, 2355], [1, 1, 1855, 982]], "row_count": 114, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1958, 2151], "distinct_count": 114}, {"mcvs": [[1, 1, 2096, 2915], [1, 1, 1959, 3196], [1, 1, 1960, 1247]], "row_count": 147, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2096, 2915], "distinct_count": 147}, {"mcvs": [[1, 1, 2313, 2274], [1, 1, 2098, 2304], [1, 1, 2099, 1935]], "row_count": 233, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2313, 2274], "distinct_count": 233}, {"mcvs": [[1, 1, 2507, 260], [1, 1, 2314, 273], [1, 1, 2315, 1611]], "row_count": 216, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2507, 260], "distinct_count": 216}, {"mcvs": [[1, 1, 2620, 1846], [1, 1, 2509, 2646], [1, 1, 2509, 3226]], "row_count": 124, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2620, 1846], "distinct_count": 124}, {"mcvs": [[1, 1, 2768, 218], [1, 1, 2621, 1087], [1, 1, 2622, 200]], "row_count": 161, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2768, 218], "distinct_count": 161}, {"mcvs": [[1, 1, 2928, 1597], [1, 1, 2770, 1915], [1, 1, 2770, 3084]], "row_count": 178, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2928, 1597], "distinct_count": 178}, {"mcvs": [[1, 2, 202, 1519], [1, 1, 2930, 707], [1, 1, 2931, 1640]], "row_count": 290, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 202, 1519], "distinct_count": 290}, {"mcvs": [[1, 2, 344, 3246], [1, 2, 204, 1853], [1, 2, 205, 1954]], "row_count": 152, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 344, 3246], "distinct_count": 152}, {"mcvs": [[1, 2, 487, 1710], [1, 2, 346, 2183], [1, 2, 347, 2443]], "row_count": 153, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 487, 1710], "distinct_count": 153}, {"mcvs": [[1, 2, 625, 3183], [1, 2, 488, 1769], [1, 2, 489, 1866]], "row_count": 154, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 625, 3183], "distinct_count": 154}, {"mcvs": [[1, 2, 827, 1028], [1, 2, 627, 2479], [1, 2, 628, 2316]], "row_count": 217, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 827, 1028], "distinct_count": 217}, {"mcvs": [[1, 2, 923, 1399], [1, 2, 828, 160], [1, 2, 829, 398]], "row_count": 107, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 923, 1399], "distinct_count": 107}, {"mcvs": [[1, 2, 1092, 2], [1, 2, 925, 328], [1, 2, 926, 2471]], "row_count": 186, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1092, 2], "distinct_count": 186}, {"mcvs": [[1, 2, 1266, 115], [1, 2, 1093, 1942], [1, 2, 1093, 3135]], "row_count": 189, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1266, 115], "distinct_count": 189}, {"mcvs": [[1, 2, 1449, 163], [1, 2, 1268, 1662], [1, 2, 1269, 2531]], "row_count": 198, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1449, 163], "distinct_count": 198}, {"mcvs": [[1, 2, 1605, 2810], [1, 2, 1451, 2281], [1, 2, 1452, 1041]], "row_count": 167, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1605, 2810], "distinct_count": 167}, {"mcvs": [[1, 2, 1866, 2468], [1, 2, 1607, 894], [1, 2, 1608, 2688]], "row_count": 279, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1866, 2468], "distinct_count": 279}, {"mcvs": [[1, 2, 2112, 1742], [1, 2, 1868, 1745], [1, 2, 1869, 1128]], "row_count": 266, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2112, 1742], "distinct_count": 266}, {"mcvs": [[1, 2, 2243, 120], [1, 2, 2114, 1204], [1, 2, 2114, 3122]], "row_count": 145, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2243, 120], "distinct_count": 145}, {"mcvs": [[1, 2, 2414, 1899], [1, 2, 2245, 558], [1, 2, 2246, 1813]], "row_count": 186, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2414, 1899], "distinct_count": 186}, {"mcvs": [[1, 2, 2644, 3016], [1, 2, 2416, 1751], [1, 2, 2417, 1572]], "row_count": 255, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2644, 3016], "distinct_count": 255}, {"mcvs": [[1, 2, 2806, 262], [1, 2, 2646, 335], [1, 2, 2647, 2605]], "row_count": 174, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2806, 262], "distinct_count": 174}, {"mcvs": [[1, 2, 2981, 3257], [1, 2, 2807, 297], [1, 2, 2808, 1911]], "row_count": 195, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2981, 3257], "distinct_count": 195}, {"mcvs": [[1, 3, 146, 1008], [1, 2, 2983, 2782], [1, 2, 2984, 2663]], "row_count": 180, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 146, 1008], "distinct_count": 180}, {"mcvs": [[1, 3, 272, 2102], [1, 3, 148, 2256], [1, 3, 149, 316]], "row_count": 138, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 272, 2102], "distinct_count": 138}, {"mcvs": [[1, 3, 387, 235], [1, 3, 274, 2086], [1, 3, 275, 800]], "row_count": 124, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 387, 235], "distinct_count": 124}, {"mcvs": [[1, 3, 513, 1302], [1, 3, 389, 363], [1, 3, 390, 2792]], "row_count": 140, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 513, 1302], "distinct_count": 140}, {"mcvs": [[1, 3, 758, 2866], [1, 3, 515, 2816], [1, 3, 516, 1706]], "row_count": 259, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 758, 2866], "distinct_count": 259}, {"mcvs": [[1, 3, 928, 1056], [1, 3, 760, 1958], [1, 3, 761, 1506]], "row_count": 179, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 928, 1056], "distinct_count": 179}, {"mcvs": [[1, 3, 1100, 1284], [1, 3, 930, 946], [1, 3, 931, 2946]], "row_count": 186, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1100, 1284], "distinct_count": 186}, {"mcvs": [[1, 3, 1239, 2580], [1, 3, 1102, 2805], [1, 3, 1103, 2299]], "row_count": 148, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1239, 2580], "distinct_count": 148}, {"mcvs": [[1, 3, 1460, 1151], [1, 3, 1241, 2241], [1, 3, 1242, 1950]], "row_count": 236, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1460, 1151], "distinct_count": 236}, {"mcvs": [[1, 3, 1674, 1676], [1, 3, 1462, 1660], [1, 3, 1463, 2015]], "row_count": 238, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1674, 1676], "distinct_count": 238}, {"mcvs": [[1, 3, 1752, 1679], [1, 3, 1676, 15], [1, 3, 1677, 1163]], "row_count": 85, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1752, 1679], "distinct_count": 85}, {"mcvs": [[1, 3, 1855, 982], [1, 3, 1754, 2971], [1, 3, 1755, 2467]], "row_count": 114, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1855, 982], "distinct_count": 114}, {"mcvs": [[1, 3, 2023, 3160], [1, 3, 1857, 1123], [1, 3, 1857, 3100]], "row_count": 181, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2023, 3160], "distinct_count": 181}, {"mcvs": [[1, 3, 2150, 439], [1, 3, 2025, 2070], [1, 3, 2026, 1561]], "row_count": 133, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2150, 439], "distinct_count": 133}, {"mcvs": [[1, 3, 2263, 175], [1, 3, 2152, 2403], [1, 3, 2153, 1683]], "row_count": 118, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2263, 175], "distinct_count": 118}, {"mcvs": [[1, 3, 2464, 1370], [1, 3, 2265, 1023], [1, 3, 2266, 1383]], "row_count": 219, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2464, 1370], "distinct_count": 219}, {"mcvs": [[1, 3, 2588, 54], [1, 3, 2465, 3203], [1, 3, 2466, 678]], "row_count": 135, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2588, 54], "distinct_count": 135}, {"mcvs": [[1, 3, 2626, 227], [1, 3, 2590, 2382], [1, 3, 2591, 150]], "row_count": 40, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2626, 227], "distinct_count": 40}, {"mcvs": [[1, 3, 2815, 2300], [1, 3, 2628, 1469], [1, 3, 2629, 219]], "row_count": 203, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2815, 2300], "distinct_count": 203}, {"mcvs": [[1, 3, 2936, 251], [1, 3, 2817, 2761], [1, 3, 2818, 1584]], "row_count": 130, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2936, 251], "distinct_count": 130}, {"mcvs": [[1, 4, 54, 233], [1, 3, 2938, 2726], [1, 3, 2939, 2488]], "row_count": 128, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 54, 233], "distinct_count": 128}, {"mcvs": [[1, 4, 177, 2177], [1, 4, 56, 1747], [1, 4, 56, 3220]], "row_count": 136, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 177, 2177], "distinct_count": 136}, {"mcvs": [[1, 4, 258, 2619], [1, 4, 179, 2303], [1, 4, 180, 952]], "row_count": 91, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 258, 2619], "distinct_count": 91}, {"mcvs": [[1, 4, 509, 2293], [1, 4, 260, 918], [1, 4, 261, 1885]], "row_count": 268, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 509, 2293], "distinct_count": 268}, {"mcvs": [[1, 4, 674, 2567], [1, 4, 510, 3155], [1, 4, 511, 1073]], "row_count": 177, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 674, 2567], "distinct_count": 177}, {"mcvs": [[1, 4, 899, 259], [1, 4, 676, 851], [1, 4, 676, 3135]], "row_count": 245, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 899, 259], "distinct_count": 245}, {"mcvs": [[1, 4, 1085, 1894], [1, 4, 901, 1595], [1, 4, 902, 1675]], "row_count": 208, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1085, 1894], "distinct_count": 208}, {"mcvs": [[1, 4, 1237, 1964], [1, 4, 1087, 419], [1, 4, 1088, 424]], "row_count": 162, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1237, 1964], "distinct_count": 162}, {"mcvs": [[1, 4, 1362, 522], [1, 4, 1239, 2580], [1, 4, 1240, 271]], "row_count": 140, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1362, 522], "distinct_count": 140}, {"mcvs": [[1, 4, 1468, 1698], [1, 4, 1364, 1895], [1, 4, 1365, 2614]], "row_count": 114, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1468, 1698], "distinct_count": 114}, {"mcvs": [[1, 4, 1641, 2137], [1, 4, 1470, 1411], [1, 4, 1471, 1053]], "row_count": 185, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1641, 2137], "distinct_count": 185}, {"mcvs": [[1, 4, 1827, 3132], [1, 4, 1643, 2677], [1, 4, 1644, 625]], "row_count": 196, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1827, 3132], "distinct_count": 196}, {"mcvs": [[1, 4, 2080, 860], [1, 4, 1829, 1235], [1, 4, 1830, 1048]], "row_count": 273, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2080, 860], "distinct_count": 273}, {"mcvs": [[1, 4, 2169, 2924], [1, 4, 2081, 1667], [1, 4, 2081, 3151]], "row_count": 97, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2169, 2924], "distinct_count": 97}, {"mcvs": [[1, 4, 2349, 1614], [1, 4, 2170, 1926], [1, 4, 2171, 1910]], "row_count": 198, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2349, 1614], "distinct_count": 198}, {"mcvs": [[1, 4, 2534, 11], [1, 4, 2351, 420], [1, 4, 2352, 1205]], "row_count": 201, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2534, 11], "distinct_count": 201}, {"mcvs": [[1, 4, 2718, 1266], [1, 4, 2536, 1678], [1, 4, 2537, 2601]], "row_count": 197, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2718, 1266], "distinct_count": 197}, {"mcvs": [[1, 4, 2953, 463], [1, 4, 2720, 2973], [1, 4, 2721, 1691]], "row_count": 250, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2953, 463], "distinct_count": 250}, {"mcvs": [[1, 5, 130, 194], [1, 4, 2955, 791], [1, 4, 2956, 1492]], "row_count": 191, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 130, 194], "distinct_count": 191}, {"mcvs": [[1, 5, 306, 2164], [1, 5, 131, 1741], [1, 5, 132, 78]], "row_count": 193, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 306, 2164], "distinct_count": 193}, {"mcvs": [[1, 5, 499, 1903], [1, 5, 308, 596], [1, 5, 308, 3013]], "row_count": 205, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 499, 1903], "distinct_count": 205}, {"mcvs": [[1, 5, 654, 933], [1, 5, 501, 980], [1, 5, 502, 2181]], "row_count": 171, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 654, 933], "distinct_count": 171}, {"mcvs": [[1, 5, 850, 852], [1, 5, 655, 3073], [1, 5, 656, 382]], "row_count": 214, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 850, 852], "distinct_count": 214}, {"mcvs": [[1, 5, 1061, 1170], [1, 5, 851, 1839], [1, 5, 852, 1067]], "row_count": 224, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1061, 1170], "distinct_count": 224}, {"mcvs": [[1, 5, 1219, 640], [1, 5, 1063, 2815], [1, 5, 1064, 2153]], "row_count": 172, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1219, 640], "distinct_count": 172}, {"mcvs": [[1, 5, 1418, 841], [1, 5, 1221, 168], [1, 5, 1222, 404]], "row_count": 215, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1418, 841], "distinct_count": 215}, {"mcvs": [[1, 5, 1485, 1952], [1, 5, 1420, 1145], [1, 5, 1421, 2109]], "row_count": 72, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1485, 1952], "distinct_count": 72}, {"mcvs": [[1, 5, 1620, 2252], [1, 5, 1487, 2752], [1, 5, 1488, 1901]], "row_count": 147, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1620, 2252], "distinct_count": 147}, {"mcvs": [[1, 5, 1783, 2149], [1, 5, 1622, 2686], [1, 5, 1623, 2216]], "row_count": 170, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1783, 2149], "distinct_count": 170}, {"mcvs": [[1, 5, 1978, 2992], [1, 5, 1784, 2537], [1, 5, 1785, 1278]], "row_count": 204, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1978, 2992], "distinct_count": 204}, {"mcvs": [[1, 5, 2063, 556], [1, 5, 1979, 51], [1, 5, 1979, 3005]], "row_count": 92, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2063, 556], "distinct_count": 92}, {"mcvs": [[1, 5, 2227, 963], [1, 5, 2065, 1975], [1, 5, 2066, 387]], "row_count": 181, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2227, 963], "distinct_count": 181}, {"mcvs": [[1, 5, 2489, 1693], [1, 5, 2229, 2747], [1, 5, 2230, 2473]], "row_count": 272, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2489, 1693], "distinct_count": 272}, {"mcvs": [[1, 5, 2607, 2146], [1, 5, 2491, 449], [1, 5, 2492, 2757]], "row_count": 129, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2607, 2146], "distinct_count": 129}, {"mcvs": [[1, 5, 2779, 3035], [1, 5, 2609, 607], [1, 5, 2610, 1558]], "row_count": 189, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2779, 3035], "distinct_count": 189}, {"mcvs": [[1, 5, 2876, 397], [1, 5, 2780, 780], [1, 5, 2781, 1119]], "row_count": 103, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2876, 397], "distinct_count": 103}, {"mcvs": [[1, 6, 82, 1711], [1, 5, 2878, 211], [1, 5, 2879, 768]], "row_count": 223, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 82, 1711], "distinct_count": 223}, {"mcvs": [[1, 6, 239, 1737], [1, 6, 84, 29], [1, 6, 85, 777]], "row_count": 168, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 239, 1737], "distinct_count": 168}, {"mcvs": [[1, 6, 378, 2644], [1, 6, 240, 2203], [1, 6, 241, 2809]], "row_count": 153, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 378, 2644], "distinct_count": 153}, {"mcvs": [[1, 6, 626, 642], [1, 6, 380, 1426], [1, 6, 380, 3067]], "row_count": 268, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 626, 642], "distinct_count": 268}, {"mcvs": [[1, 6, 765, 3069], [1, 6, 628, 2316], [1, 6, 629, 2240]], "row_count": 148, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 765, 3069], "distinct_count": 148}, {"mcvs": [[1, 6, 909, 2272], [1, 6, 767, 2024], [1, 6, 768, 1438]], "row_count": 147, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 909, 2272], "distinct_count": 147}, {"mcvs": [[1, 6, 1034, 912], [1, 6, 911, 204], [1, 6, 912, 528]], "row_count": 137, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1034, 912], "distinct_count": 137}, {"mcvs": [[1, 6, 1224, 1002], [1, 6, 1036, 574], [1, 6, 1037, 2654]], "row_count": 205, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1224, 1002], "distinct_count": 205}, {"mcvs": [[1, 6, 1352, 1080], [1, 6, 1226, 2073], [1, 6, 1227, 2051]], "row_count": 135, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1352, 1080], "distinct_count": 135}, {"mcvs": [[1, 6, 1501, 63], [1, 6, 1354, 2975], [1, 6, 1355, 942]], "row_count": 164, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1501, 63], "distinct_count": 164}, {"mcvs": [[1, 6, 1684, 1290], [1, 6, 1503, 1291], [1, 6, 1504, 291]], "row_count": 202, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1684, 1290], "distinct_count": 202}, {"mcvs": [[1, 6, 1879, 828], [1, 6, 1686, 494], [1, 6, 1687, 2205]], "row_count": 206, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1879, 828], "distinct_count": 206}, {"mcvs": [[1, 6, 2002, 3002], [1, 6, 1881, 1064], [1, 6, 1882, 165]], "row_count": 137, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2002, 3002], "distinct_count": 137}, {"mcvs": [[1, 6, 2203, 511], [1, 6, 2003, 3163], [1, 6, 2004, 2523]], "row_count": 212, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2203, 511], "distinct_count": 212}, {"mcvs": [[1, 6, 2403, 1022], [1, 6, 2205, 727], [1, 6, 2206, 1774]], "row_count": 221, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2403, 1022], "distinct_count": 221}, {"mcvs": [[1, 6, 2554, 471], [1, 6, 2405, 2586], [1, 6, 2406, 1239]], "row_count": 163, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2554, 471], "distinct_count": 163}, {"mcvs": [[1, 6, 2709, 612], [1, 6, 2556, 2104], [1, 6, 2557, 2214]], "row_count": 167, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2709, 612], "distinct_count": 167}, {"mcvs": [[1, 6, 2894, 2693], [1, 6, 2711, 2524], [1, 6, 2712, 2379]], "row_count": 196, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2894, 2693], "distinct_count": 196}, {"mcvs": [[1, 7, 49, 58], [1, 6, 2896, 717], [1, 6, 2897, 414]], "row_count": 164, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 49, 58], "distinct_count": 164}, {"mcvs": [[1, 7, 179, 2303], [1, 7, 51, 2375], [1, 7, 52, 2308]], "row_count": 142, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 179, 2303], "distinct_count": 142}, {"mcvs": [[1, 7, 409, 985], [1, 7, 181, 1528], [1, 7, 182, 1955]], "row_count": 250, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 409, 985], "distinct_count": 250}, {"mcvs": [[1, 7, 631, 2090], [1, 7, 411, 1300], [1, 7, 412, 380]], "row_count": 242, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 631, 2090], "distinct_count": 242}, {"mcvs": [[1, 7, 716, 216], [1, 7, 632, 2029], [1, 7, 633, 2483]], "row_count": 90, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 716, 216], "distinct_count": 90}, {"mcvs": [[1, 7, 910, 1905], [1, 7, 718, 1530], [1, 7, 719, 2746]], "row_count": 205, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 910, 1905], "distinct_count": 205}, {"mcvs": [[1, 7, 1048, 352], [1, 7, 912, 528], [1, 7, 913, 887]], "row_count": 146, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1048, 352], "distinct_count": 146}, {"mcvs": [[1, 7, 1238, 10], [1, 7, 1050, 872], [1, 7, 1051, 360]], "row_count": 203, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1238, 10], "distinct_count": 203}, {"mcvs": [[1, 7, 1378, 1574], [1, 7, 1240, 271], [1, 7, 1241, 2241]], "row_count": 149, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1378, 1574], "distinct_count": 149}, {"mcvs": [[1, 7, 1526, 68], [1, 7, 1380, 274], [1, 7, 1381, 208]], "row_count": 156, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1526, 68], "distinct_count": 156}, {"mcvs": [[1, 7, 1760, 543], [1, 7, 1528, 1833], [1, 7, 1529, 401]], "row_count": 249, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1760, 543], "distinct_count": 249}, {"mcvs": [[1, 7, 1885, 470], [1, 7, 1762, 2487], [1, 7, 1763, 1449]], "row_count": 129, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1885, 470], "distinct_count": 129}, {"mcvs": [[1, 7, 2019, 1677], [1, 7, 1886, 2860], [1, 7, 1887, 2077]], "row_count": 142, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2019, 1677], "distinct_count": 142}, {"mcvs": [[1, 7, 2148, 1418], [1, 7, 2021, 2518], [1, 7, 2022, 122]], "row_count": 141, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2148, 1418], "distinct_count": 141}, {"mcvs": [[1, 7, 2403, 1022], [1, 7, 2150, 439], [1, 7, 2151, 1686]], "row_count": 279, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2403, 1022], "distinct_count": 279}, {"mcvs": [[1, 7, 2535, 1189], [1, 7, 2405, 2586], [1, 7, 2406, 1239]], "row_count": 138, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2535, 1189], "distinct_count": 138}, {"mcvs": [[1, 7, 2689, 1960], [1, 7, 2537, 2601], [1, 7, 2538, 2306]], "row_count": 165, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2689, 1960], "distinct_count": 165}, {"mcvs": [[1, 7, 2921, 2756], [1, 7, 2691, 1877], [1, 7, 2692, 797]], "row_count": 244, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2921, 2756], "distinct_count": 244}, {"mcvs": [[1, 8, 169, 2125], [1, 7, 2923, 837], [1, 7, 2924, 2368]], "row_count": 266, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 169, 2125], "distinct_count": 266}, {"mcvs": [[1, 8, 320, 2958], [1, 8, 171, 2295], [1, 8, 172, 2571]], "row_count": 164, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 320, 2958], "distinct_count": 164}, {"mcvs": [[1, 8, 550, 2943], [1, 8, 321, 813], [1, 8, 322, 1376]], "row_count": 243, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 550, 2943], "distinct_count": 243}, {"mcvs": [[1, 8, 683, 434], [1, 8, 551, 811], [1, 8, 552, 2055]], "row_count": 145, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 683, 434], "distinct_count": 145}, {"mcvs": [[1, 8, 849, 2771], [1, 8, 685, 1281], [1, 8, 686, 2902]], "row_count": 180, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 849, 2771], "distinct_count": 180}, {"mcvs": [[1, 8, 945, 1347], [1, 8, 851, 1839], [1, 8, 852, 1067]], "row_count": 103, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 945, 1347], "distinct_count": 103}, {"mcvs": [[1, 8, 1235, 1459], [1, 8, 947, 1196], [1, 8, 947, 3175]], "row_count": 311, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1235, 1459], "distinct_count": 311}, {"mcvs": [[1, 8, 1480, 2762], [1, 8, 1237, 1964], [1, 8, 1238, 10]], "row_count": 260, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1480, 2762], "distinct_count": 260}, {"mcvs": [[1, 8, 1651, 576], [1, 8, 1481, 104], [1, 8, 1482, 2776]], "row_count": 189, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1651, 576], "distinct_count": 189}, {"mcvs": [[1, 8, 1831, 2115], [1, 8, 1653, 236], [1, 8, 1654, 934]], "row_count": 187, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1831, 2115], "distinct_count": 187}, {"mcvs": [[1, 8, 1932, 1884], [1, 8, 1833, 1349], [1, 8, 1834, 844]], "row_count": 106, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1932, 1884], "distinct_count": 106}, {"mcvs": [[1, 8, 2142, 1395], [1, 8, 1934, 995], [1, 8, 1935, 1377]], "row_count": 224, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2142, 1395], "distinct_count": 224}, {"mcvs": [[1, 8, 2241, 2993], [1, 8, 2144, 1642], [1, 8, 2144, 3191]], "row_count": 111, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2241, 2993], "distinct_count": 111}, {"mcvs": [[1, 8, 2312, 1298], [1, 8, 2243, 120], [1, 8, 2244, 741]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2312, 1298], "distinct_count": 77}, {"mcvs": [[1, 8, 2412, 1575], [1, 8, 2314, 273], [1, 8, 2315, 1611]], "row_count": 109, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2412, 1575], "distinct_count": 109}, {"mcvs": [[1, 8, 2660, 1198], [1, 8, 2414, 1899], [1, 8, 2415, 2323]], "row_count": 266, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2660, 1198], "distinct_count": 266}, {"mcvs": [[1, 8, 2742, 1202], [1, 8, 2662, 430], [1, 8, 2663, 1366]], "row_count": 93, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2742, 1202], "distinct_count": 93}, {"mcvs": [[1, 8, 2944, 2212], [1, 8, 2744, 276], [1, 8, 2745, 1921]], "row_count": 212, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2944, 2212], "distinct_count": 212}, {"mcvs": [[1, 9, 141, 191], [1, 8, 2946, 1775], [1, 8, 2947, 77]], "row_count": 218, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 141, 191], "distinct_count": 218}, {"mcvs": [[1, 9, 223, 1455], [1, 9, 143, 748], [1, 9, 144, 460]], "row_count": 88, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 223, 1455], "distinct_count": 88}, {"mcvs": [[1, 9, 375, 2119], [1, 9, 225, 2728], [1, 9, 226, 1810]], "row_count": 164, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 375, 2119], "distinct_count": 164}, {"mcvs": [[1, 9, 567, 1873], [1, 9, 377, 26], [1, 9, 378, 2644]], "row_count": 207, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 567, 1873], "distinct_count": 207}, {"mcvs": [[1, 9, 644, 2460], [1, 9, 569, 462], [1, 9, 570, 370]], "row_count": 80, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 644, 2460], "distinct_count": 80}, {"mcvs": [[1, 9, 825, 1287], [1, 9, 646, 2929], [1, 9, 647, 2881]], "row_count": 196, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 825, 1287], "distinct_count": 196}, {"mcvs": [[1, 9, 1010, 2899], [1, 9, 827, 1028], [1, 9, 828, 160]], "row_count": 202, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1010, 2899], "distinct_count": 202}, {"mcvs": [[1, 9, 1166, 673], [1, 9, 1012, 2856], [1, 9, 1013, 1497]], "row_count": 167, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1166, 673], "distinct_count": 167}, {"mcvs": [[1, 9, 1399, 932], [1, 9, 1168, 2360], [1, 9, 1169, 1043]], "row_count": 250, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1399, 932], "distinct_count": 250}, {"mcvs": [[1, 9, 1620, 2252], [1, 9, 1401, 966], [1, 9, 1402, 399]], "row_count": 238, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1620, 2252], "distinct_count": 238}, {"mcvs": [[1, 9, 1772, 732], [1, 9, 1622, 2686], [1, 9, 1623, 2216]], "row_count": 163, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1772, 732], "distinct_count": 163}, {"mcvs": [[1, 9, 1877, 1641], [1, 9, 1774, 2662], [1, 9, 1775, 1309]], "row_count": 110, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1877, 1641], "distinct_count": 110}, {"mcvs": [[1, 9, 2038, 2802], [1, 9, 1879, 828], [1, 9, 1880, 1365]], "row_count": 171, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2038, 2802], "distinct_count": 171}, {"mcvs": [[1, 9, 2241, 2993], [1, 9, 2040, 412], [1, 9, 2041, 943]], "row_count": 213, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2241, 2993], "distinct_count": 213}, {"mcvs": [[1, 9, 2348, 927], [1, 9, 2243, 120], [1, 9, 2244, 741]], "row_count": 119, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2348, 927], "distinct_count": 119}, {"mcvs": [[1, 9, 2591, 150], [1, 9, 2350, 2422], [1, 9, 2351, 420]], "row_count": 255, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2591, 150], "distinct_count": 255}, {"mcvs": [[1, 9, 2675, 2098], [1, 9, 2593, 1018], [1, 9, 2594, 829]], "row_count": 91, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2675, 2098], "distinct_count": 91}, {"mcvs": [[1, 9, 2848, 1382], [1, 9, 2677, 2182], [1, 9, 2678, 2243]], "row_count": 183, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2848, 1382], "distinct_count": 183}, {"mcvs": [[1, 9, 2971, 2919], [1, 9, 2850, 654], [1, 9, 2851, 1931]], "row_count": 135, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2971, 2919], "distinct_count": 135}, {"mcvs": [[1, 10, 63, 1167], [1, 9, 2972, 1508], [1, 9, 2973, 2577]], "row_count": 101, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 63, 1167], "distinct_count": 101}, {"mcvs": [[1, 10, 261, 1885], [1, 10, 65, 705], [1, 10, 66, 2647]], "row_count": 208, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 261, 1885], "distinct_count": 208}, {"mcvs": [[1, 10, 436, 597], [1, 10, 263, 722], [1, 10, 264, 43]], "row_count": 191, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 436, 597], "distinct_count": 191}, {"mcvs": [[1, 10, 619, 835], [1, 10, 438, 2767], [1, 10, 439, 410]], "row_count": 193, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 619, 835], "distinct_count": 193}, {"mcvs": [[1, 10, 835, 326], [1, 10, 621, 1588], [1, 10, 622, 2822]], "row_count": 230, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 835, 326], "distinct_count": 230}, {"mcvs": [[1, 10, 1057, 2574], [1, 10, 837, 217], [1, 10, 838, 1430]], "row_count": 242, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1057, 2574], "distinct_count": 242}, {"mcvs": [[1, 10, 1204, 1154], [1, 10, 1059, 692], [1, 10, 1060, 177]], "row_count": 155, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1204, 1154], "distinct_count": 155}, {"mcvs": [[1, 10, 1334, 106], [1, 10, 1206, 2283], [1, 10, 1206, 3143]], "row_count": 140, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1334, 106], "distinct_count": 140}, {"mcvs": [[1, 10, 1472, 1338], [1, 10, 1335, 3078], [1, 10, 1336, 999]], "row_count": 149, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1472, 1338], "distinct_count": 149}, {"mcvs": [[1, 10, 1614, 2430], [1, 10, 1474, 515], [1, 10, 1475, 391]], "row_count": 154, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1614, 2430], "distinct_count": 154}, {"mcvs": [[1, 10, 1840, 1086], [1, 10, 1615, 1757], [1, 10, 1616, 1317]], "row_count": 245, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1840, 1086], "distinct_count": 245}, {"mcvs": [[1, 10, 1950, 2914], [1, 10, 1842, 2664], [1, 10, 1842, 3212]], "row_count": 121, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1950, 2914], "distinct_count": 121}, {"mcvs": [[1, 10, 2106, 868], [1, 10, 1952, 2208], [1, 10, 1953, 2597]], "row_count": 170, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2106, 868], "distinct_count": 170}, {"mcvs": [[1, 10, 2215, 1417], [1, 10, 2108, 2678], [1, 10, 2109, 2781]], "row_count": 117, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2215, 1417], "distinct_count": 117}, {"mcvs": [[1, 10, 2423, 2999], [1, 10, 2217, 221], [1, 10, 2218, 504]], "row_count": 220, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2423, 2999], "distinct_count": 220}, {"mcvs": [[1, 10, 2655, 2564], [1, 10, 2425, 2013], [1, 10, 2426, 253]], "row_count": 249, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2655, 2564], "distinct_count": 249}, {"mcvs": [[1, 10, 2864, 1482], [1, 10, 2657, 1524], [1, 10, 2658, 2994]], "row_count": 224, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2864, 1482], "distinct_count": 224}, {"mcvs": [[1, 10, 3000, 990], [1, 10, 2866, 879], [1, 10, 2867, 1033]], "row_count": 148, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 3000, 990], "distinct_count": 148}], "columns": ["o_w_id", "o_d_id", "o_c_id", "o_id"], "avg_size": 0, "qualifier": {"database": "sbt", "table": "orders2", "index": "idx_orders2"}, "row_count": 32312, "created_at": "2023-11-10T15:06:18-08:00", "null_count": 32312, "distinct_count": 32312}';`,
`analyze table orders2 update histogram on (o_w_id,o_d_id,o_id) using data '{"types": ["smallint", "tinyint", "int"], "buckets": [{"mcvs": [[1, 1, 115], [1, 1, 2], [1, 1, 3]], "row_count": 115, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 115], "distinct_count": 115}, {"mcvs": [[1, 1, 214], [1, 1, 117], [1, 1, 118]], "row_count": 99, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 214], "distinct_count": 99}, {"mcvs": [[1, 1, 285], [1, 1, 216], [1, 1, 217]], "row_count": 71, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 285], "distinct_count": 71}, {"mcvs": [[1, 1, 380], [1, 1, 287], [1, 1, 288]], "row_count": 95, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 380], "distinct_count": 95}, {"mcvs": [[1, 1, 517], [1, 1, 382], [1, 1, 383]], "row_count": 137, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 517], "distinct_count": 137}, {"mcvs": [[1, 1, 687], [1, 1, 519], [1, 1, 520]], "row_count": 170, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 687], "distinct_count": 170}, {"mcvs": [[1, 1, 780], [1, 1, 689], [1, 1, 690]], "row_count": 93, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 780], "distinct_count": 93}, {"mcvs": [[1, 1, 884], [1, 1, 782], [1, 1, 783]], "row_count": 104, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 884], "distinct_count": 104}, {"mcvs": [[1, 1, 964], [1, 1, 886], [1, 1, 887]], "row_count": 80, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 964], "distinct_count": 80}, {"mcvs": [[1, 1, 1034], [1, 1, 966], [1, 1, 967]], "row_count": 70, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1034], "distinct_count": 70}, {"mcvs": [[1, 1, 1095], [1, 1, 1036], [1, 1, 1037]], "row_count": 61, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1095], "distinct_count": 61}, {"mcvs": [[1, 1, 1248], [1, 1, 1097], [1, 1, 1098]], "row_count": 153, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1248], "distinct_count": 153}, {"mcvs": [[1, 1, 1304], [1, 1, 1250], [1, 1, 1251]], "row_count": 56, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1304], "distinct_count": 56}, {"mcvs": [[1, 1, 1415], [1, 1, 1306], [1, 1, 1307]], "row_count": 111, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1415], "distinct_count": 111}, {"mcvs": [[1, 1, 1504], [1, 1, 1417], [1, 1, 1418]], "row_count": 89, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1504], "distinct_count": 89}, {"mcvs": [[1, 1, 1609], [1, 1, 1506], [1, 1, 1507]], "row_count": 105, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1609], "distinct_count": 105}, {"mcvs": [[1, 1, 1696], [1, 1, 1611], [1, 1, 1612]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1696], "distinct_count": 87}, {"mcvs": [[1, 1, 1797], [1, 1, 1698], [1, 1, 1699]], "row_count": 101, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1797], "distinct_count": 101}, {"mcvs": [[1, 1, 1902], [1, 1, 1799], [1, 1, 1800]], "row_count": 105, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1902], "distinct_count": 105}, {"mcvs": [[1, 1, 1992], [1, 1, 1904], [1, 1, 1905]], "row_count": 90, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 1992], "distinct_count": 90}, {"mcvs": [[1, 1, 2071], [1, 1, 1994], [1, 1, 1995]], "row_count": 79, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2071], "distinct_count": 79}, {"mcvs": [[1, 1, 2129], [1, 1, 2073], [1, 1, 2074]], "row_count": 58, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2129], "distinct_count": 58}, {"mcvs": [[1, 1, 2210], [1, 1, 2131], [1, 1, 2132]], "row_count": 81, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2210], "distinct_count": 81}, {"mcvs": [[1, 1, 2260], [1, 1, 2212], [1, 1, 2213]], "row_count": 50, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2260], "distinct_count": 50}, {"mcvs": [[1, 1, 2360], [1, 1, 2262], [1, 1, 2263]], "row_count": 100, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2360], "distinct_count": 100}, {"mcvs": [[1, 1, 2487], [1, 1, 2362], [1, 1, 2363]], "row_count": 127, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2487], "distinct_count": 127}, {"mcvs": [[1, 1, 2583], [1, 1, 2489], [1, 1, 2490]], "row_count": 96, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2583], "distinct_count": 96}, {"mcvs": [[1, 1, 2670], [1, 1, 2585], [1, 1, 2586]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2670], "distinct_count": 87}, {"mcvs": [[1, 1, 2767], [1, 1, 2672], [1, 1, 2673]], "row_count": 97, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2767], "distinct_count": 97}, {"mcvs": [[1, 1, 2896], [1, 1, 2769], [1, 1, 2770]], "row_count": 129, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2896], "distinct_count": 129}, {"mcvs": [[1, 1, 3005], [1, 1, 2898], [1, 1, 2899]], "row_count": 109, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 3005], "distinct_count": 109}, {"mcvs": [[1, 1, 3095], [1, 1, 3007], [1, 1, 3008]], "row_count": 90, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 3095], "distinct_count": 90}, {"mcvs": [[1, 1, 3163], [1, 1, 3097], [1, 1, 3098]], "row_count": 68, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 3163], "distinct_count": 68}, {"mcvs": [[1, 2, 73], [1, 1, 3165], [1, 1, 3166]], "row_count": 149, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 73], "distinct_count": 149}, {"mcvs": [[1, 2, 156], [1, 2, 75], [1, 2, 76]], "row_count": 83, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 156], "distinct_count": 83}, {"mcvs": [[1, 2, 261], [1, 2, 158], [1, 2, 159]], "row_count": 105, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 261], "distinct_count": 105}, {"mcvs": [[1, 2, 382], [1, 2, 263], [1, 2, 264]], "row_count": 121, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 382], "distinct_count": 121}, {"mcvs": [[1, 2, 440], [1, 2, 384], [1, 2, 385]], "row_count": 58, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 440], "distinct_count": 58}, {"mcvs": [[1, 2, 575], [1, 2, 442], [1, 2, 443]], "row_count": 135, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 575], "distinct_count": 135}, {"mcvs": [[1, 2, 642], [1, 2, 577], [1, 2, 578]], "row_count": 67, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 642], "distinct_count": 67}, {"mcvs": [[1, 2, 744], [1, 2, 644], [1, 2, 645]], "row_count": 102, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 744], "distinct_count": 102}, {"mcvs": [[1, 2, 847], [1, 2, 746], [1, 2, 747]], "row_count": 103, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 847], "distinct_count": 103}, {"mcvs": [[1, 2, 935], [1, 2, 849], [1, 2, 850]], "row_count": 88, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 935], "distinct_count": 88}, {"mcvs": [[1, 2, 996], [1, 2, 937], [1, 2, 938]], "row_count": 61, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 996], "distinct_count": 61}, {"mcvs": [[1, 2, 1089], [1, 2, 998], [1, 2, 999]], "row_count": 93, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1089], "distinct_count": 93}, {"mcvs": [[1, 2, 1159], [1, 2, 1091], [1, 2, 1092]], "row_count": 70, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1159], "distinct_count": 70}, {"mcvs": [[1, 2, 1282], [1, 2, 1161], [1, 2, 1162]], "row_count": 123, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1282], "distinct_count": 123}, {"mcvs": [[1, 2, 1388], [1, 2, 1284], [1, 2, 1285]], "row_count": 106, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1388], "distinct_count": 106}, {"mcvs": [[1, 2, 1504], [1, 2, 1390], [1, 2, 1391]], "row_count": 116, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1504], "distinct_count": 116}, {"mcvs": [[1, 2, 1591], [1, 2, 1506], [1, 2, 1507]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1591], "distinct_count": 87}, {"mcvs": [[1, 2, 1766], [1, 2, 1593], [1, 2, 1594]], "row_count": 175, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1766], "distinct_count": 175}, {"mcvs": [[1, 2, 1897], [1, 2, 1768], [1, 2, 1769]], "row_count": 131, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1897], "distinct_count": 131}, {"mcvs": [[1, 2, 1990], [1, 2, 1899], [1, 2, 1900]], "row_count": 93, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 1990], "distinct_count": 93}, {"mcvs": [[1, 2, 2073], [1, 2, 1992], [1, 2, 1993]], "row_count": 83, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2073], "distinct_count": 83}, {"mcvs": [[1, 2, 2118], [1, 2, 2075], [1, 2, 2076]], "row_count": 45, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2118], "distinct_count": 45}, {"mcvs": [[1, 2, 2212], [1, 2, 2120], [1, 2, 2121]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2212], "distinct_count": 94}, {"mcvs": [[1, 2, 2373], [1, 2, 2214], [1, 2, 2215]], "row_count": 161, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2373], "distinct_count": 161}, {"mcvs": [[1, 2, 2461], [1, 2, 2375], [1, 2, 2376]], "row_count": 88, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2461], "distinct_count": 88}, {"mcvs": [[1, 2, 2575], [1, 2, 2463], [1, 2, 2464]], "row_count": 114, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2575], "distinct_count": 114}, {"mcvs": [[1, 2, 2642], [1, 2, 2577], [1, 2, 2578]], "row_count": 67, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2642], "distinct_count": 67}, {"mcvs": [[1, 2, 2757], [1, 2, 2644], [1, 2, 2645]], "row_count": 115, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2757], "distinct_count": 115}, {"mcvs": [[1, 2, 2902], [1, 2, 2759], [1, 2, 2760]], "row_count": 145, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2902], "distinct_count": 145}, {"mcvs": [[1, 2, 3012], [1, 2, 2904], [1, 2, 2905]], "row_count": 110, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 3012], "distinct_count": 110}, {"mcvs": [[1, 2, 3086], [1, 2, 3014], [1, 2, 3015]], "row_count": 74, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 3086], "distinct_count": 74}, {"mcvs": [[1, 2, 3218], [1, 2, 3088], [1, 2, 3089]], "row_count": 132, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 3218], "distinct_count": 132}, {"mcvs": [[1, 3, 94], [1, 2, 3220], [1, 2, 3221]], "row_count": 139, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 94], "distinct_count": 139}, {"mcvs": [[1, 3, 176], [1, 3, 96], [1, 3, 97]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 176], "distinct_count": 82}, {"mcvs": [[1, 3, 286], [1, 3, 178], [1, 3, 179]], "row_count": 110, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 286], "distinct_count": 110}, {"mcvs": [[1, 3, 374], [1, 3, 288], [1, 3, 289]], "row_count": 88, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 374], "distinct_count": 88}, {"mcvs": [[1, 3, 461], [1, 3, 376], [1, 3, 377]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 461], "distinct_count": 87}, {"mcvs": [[1, 3, 512], [1, 3, 463], [1, 3, 464]], "row_count": 51, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 512], "distinct_count": 51}, {"mcvs": [[1, 3, 650], [1, 3, 514], [1, 3, 515]], "row_count": 138, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 650], "distinct_count": 138}, {"mcvs": [[1, 3, 758], [1, 3, 652], [1, 3, 653]], "row_count": 108, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 758], "distinct_count": 108}, {"mcvs": [[1, 3, 856], [1, 3, 760], [1, 3, 761]], "row_count": 98, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 856], "distinct_count": 98}, {"mcvs": [[1, 3, 915], [1, 3, 858], [1, 3, 859]], "row_count": 59, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 915], "distinct_count": 59}, {"mcvs": [[1, 3, 1024], [1, 3, 917], [1, 3, 918]], "row_count": 109, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1024], "distinct_count": 109}, {"mcvs": [[1, 3, 1120], [1, 3, 1026], [1, 3, 1027]], "row_count": 96, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1120], "distinct_count": 96}, {"mcvs": [[1, 3, 1218], [1, 3, 1122], [1, 3, 1123]], "row_count": 98, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1218], "distinct_count": 98}, {"mcvs": [[1, 3, 1312], [1, 3, 1220], [1, 3, 1221]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1312], "distinct_count": 94}, {"mcvs": [[1, 3, 1398], [1, 3, 1314], [1, 3, 1315]], "row_count": 86, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1398], "distinct_count": 86}, {"mcvs": [[1, 3, 1489], [1, 3, 1400], [1, 3, 1401]], "row_count": 91, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1489], "distinct_count": 91}, {"mcvs": [[1, 3, 1620], [1, 3, 1491], [1, 3, 1492]], "row_count": 131, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1620], "distinct_count": 131}, {"mcvs": [[1, 3, 1699], [1, 3, 1622], [1, 3, 1623]], "row_count": 79, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1699], "distinct_count": 79}, {"mcvs": [[1, 3, 1768], [1, 3, 1701], [1, 3, 1702]], "row_count": 69, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1768], "distinct_count": 69}, {"mcvs": [[1, 3, 1907], [1, 3, 1770], [1, 3, 1771]], "row_count": 139, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 1907], "distinct_count": 139}, {"mcvs": [[1, 3, 2005], [1, 3, 1909], [1, 3, 1910]], "row_count": 98, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2005], "distinct_count": 98}, {"mcvs": [[1, 3, 2155], [1, 3, 2007], [1, 3, 2008]], "row_count": 150, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2155], "distinct_count": 150}, {"mcvs": [[1, 3, 2212], [1, 3, 2157], [1, 3, 2158]], "row_count": 57, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2212], "distinct_count": 57}, {"mcvs": [[1, 3, 2341], [1, 3, 2214], [1, 3, 2215]], "row_count": 129, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2341], "distinct_count": 129}, {"mcvs": [[1, 3, 2408], [1, 3, 2343], [1, 3, 2344]], "row_count": 67, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2408], "distinct_count": 67}, {"mcvs": [[1, 3, 2537], [1, 3, 2410], [1, 3, 2411]], "row_count": 129, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2537], "distinct_count": 129}, {"mcvs": [[1, 3, 2628], [1, 3, 2539], [1, 3, 2540]], "row_count": 91, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2628], "distinct_count": 91}, {"mcvs": [[1, 3, 2710], [1, 3, 2630], [1, 3, 2631]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2710], "distinct_count": 82}, {"mcvs": [[1, 3, 2811], [1, 3, 2712], [1, 3, 2713]], "row_count": 101, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2811], "distinct_count": 101}, {"mcvs": [[1, 3, 2936], [1, 3, 2813], [1, 3, 2814]], "row_count": 125, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2936], "distinct_count": 125}, {"mcvs": [[1, 3, 3038], [1, 3, 2938], [1, 3, 2939]], "row_count": 102, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 3038], "distinct_count": 102}, {"mcvs": [[1, 3, 3168], [1, 3, 3040], [1, 3, 3041]], "row_count": 130, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 3168], "distinct_count": 130}, {"mcvs": [[1, 4, 4], [1, 3, 3170], [1, 3, 3171]], "row_count": 69, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 4], "distinct_count": 69}, {"mcvs": [[1, 4, 99], [1, 4, 6], [1, 4, 7]], "row_count": 95, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 99], "distinct_count": 95}, {"mcvs": [[1, 4, 185], [1, 4, 101], [1, 4, 102]], "row_count": 86, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 185], "distinct_count": 86}, {"mcvs": [[1, 4, 321], [1, 4, 187], [1, 4, 188]], "row_count": 136, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 321], "distinct_count": 136}, {"mcvs": [[1, 4, 396], [1, 4, 323], [1, 4, 324]], "row_count": 75, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 396], "distinct_count": 75}, {"mcvs": [[1, 4, 494], [1, 4, 398], [1, 4, 399]], "row_count": 98, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 494], "distinct_count": 98}, {"mcvs": [[1, 4, 600], [1, 4, 496], [1, 4, 497]], "row_count": 106, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 600], "distinct_count": 106}, {"mcvs": [[1, 4, 669], [1, 4, 602], [1, 4, 603]], "row_count": 69, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 669], "distinct_count": 69}, {"mcvs": [[1, 4, 751], [1, 4, 671], [1, 4, 672]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 751], "distinct_count": 82}, {"mcvs": [[1, 4, 812], [1, 4, 753], [1, 4, 754]], "row_count": 61, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 812], "distinct_count": 61}, {"mcvs": [[1, 4, 907], [1, 4, 814], [1, 4, 815]], "row_count": 95, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 907], "distinct_count": 95}, {"mcvs": [[1, 4, 1045], [1, 4, 909], [1, 4, 910]], "row_count": 138, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1045], "distinct_count": 138}, {"mcvs": [[1, 4, 1151], [1, 4, 1047], [1, 4, 1048]], "row_count": 106, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1151], "distinct_count": 106}, {"mcvs": [[1, 4, 1233], [1, 4, 1153], [1, 4, 1154]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1233], "distinct_count": 82}, {"mcvs": [[1, 4, 1365], [1, 4, 1235], [1, 4, 1236]], "row_count": 132, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1365], "distinct_count": 132}, {"mcvs": [[1, 4, 1482], [1, 4, 1367], [1, 4, 1368]], "row_count": 117, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1482], "distinct_count": 117}, {"mcvs": [[1, 4, 1592], [1, 4, 1484], [1, 4, 1485]], "row_count": 110, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1592], "distinct_count": 110}, {"mcvs": [[1, 4, 1670], [1, 4, 1594], [1, 4, 1595]], "row_count": 78, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1670], "distinct_count": 78}, {"mcvs": [[1, 4, 1787], [1, 4, 1672], [1, 4, 1673]], "row_count": 117, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1787], "distinct_count": 117}, {"mcvs": [[1, 4, 1856], [1, 4, 1789], [1, 4, 1790]], "row_count": 69, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1856], "distinct_count": 69}, {"mcvs": [[1, 4, 1938], [1, 4, 1858], [1, 4, 1859]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 1938], "distinct_count": 82}, {"mcvs": [[1, 4, 2037], [1, 4, 1940], [1, 4, 1941]], "row_count": 99, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2037], "distinct_count": 99}, {"mcvs": [[1, 4, 2137], [1, 4, 2039], [1, 4, 2040]], "row_count": 100, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2137], "distinct_count": 100}, {"mcvs": [[1, 4, 2186], [1, 4, 2139], [1, 4, 2140]], "row_count": 49, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2186], "distinct_count": 49}, {"mcvs": [[1, 4, 2315], [1, 4, 2188], [1, 4, 2189]], "row_count": 129, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2315], "distinct_count": 129}, {"mcvs": [[1, 4, 2369], [1, 4, 2317], [1, 4, 2318]], "row_count": 54, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2369], "distinct_count": 54}, {"mcvs": [[1, 4, 2473], [1, 4, 2371], [1, 4, 2372]], "row_count": 104, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2473], "distinct_count": 104}, {"mcvs": [[1, 4, 2582], [1, 4, 2475], [1, 4, 2476]], "row_count": 109, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2582], "distinct_count": 109}, {"mcvs": [[1, 4, 2637], [1, 4, 2584], [1, 4, 2585]], "row_count": 55, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2637], "distinct_count": 55}, {"mcvs": [[1, 4, 2771], [1, 4, 2639], [1, 4, 2640]], "row_count": 134, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2771], "distinct_count": 134}, {"mcvs": [[1, 4, 2880], [1, 4, 2773], [1, 4, 2774]], "row_count": 109, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2880], "distinct_count": 109}, {"mcvs": [[1, 4, 2951], [1, 4, 2882], [1, 4, 2883]], "row_count": 71, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2951], "distinct_count": 71}, {"mcvs": [[1, 4, 3066], [1, 4, 2953], [1, 4, 2954]], "row_count": 115, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 3066], "distinct_count": 115}, {"mcvs": [[1, 4, 3187], [1, 4, 3068], [1, 4, 3069]], "row_count": 121, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 3187], "distinct_count": 121}, {"mcvs": [[1, 5, 40], [1, 4, 3189], [1, 4, 3190]], "row_count": 98, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 40], "distinct_count": 98}, {"mcvs": [[1, 5, 100], [1, 5, 42], [1, 5, 43]], "row_count": 60, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 100], "distinct_count": 60}, {"mcvs": [[1, 5, 193], [1, 5, 102], [1, 5, 103]], "row_count": 93, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 193], "distinct_count": 93}, {"mcvs": [[1, 5, 282], [1, 5, 195], [1, 5, 196]], "row_count": 89, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 282], "distinct_count": 89}, {"mcvs": [[1, 5, 382], [1, 5, 284], [1, 5, 285]], "row_count": 100, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 382], "distinct_count": 100}, {"mcvs": [[1, 5, 504], [1, 5, 384], [1, 5, 385]], "row_count": 122, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 504], "distinct_count": 122}, {"mcvs": [[1, 5, 589], [1, 5, 506], [1, 5, 507]], "row_count": 85, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 589], "distinct_count": 85}, {"mcvs": [[1, 5, 691], [1, 5, 591], [1, 5, 592]], "row_count": 102, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 691], "distinct_count": 102}, {"mcvs": [[1, 5, 811], [1, 5, 693], [1, 5, 694]], "row_count": 120, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 811], "distinct_count": 120}, {"mcvs": [[1, 5, 931], [1, 5, 813], [1, 5, 814]], "row_count": 120, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 931], "distinct_count": 120}, {"mcvs": [[1, 5, 1022], [1, 5, 933], [1, 5, 934]], "row_count": 91, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1022], "distinct_count": 91}, {"mcvs": [[1, 5, 1123], [1, 5, 1024], [1, 5, 1025]], "row_count": 101, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1123], "distinct_count": 101}, {"mcvs": [[1, 5, 1176], [1, 5, 1125], [1, 5, 1126]], "row_count": 53, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1176], "distinct_count": 53}, {"mcvs": [[1, 5, 1273], [1, 5, 1178], [1, 5, 1179]], "row_count": 97, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1273], "distinct_count": 97}, {"mcvs": [[1, 5, 1358], [1, 5, 1275], [1, 5, 1276]], "row_count": 85, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1358], "distinct_count": 85}, {"mcvs": [[1, 5, 1445], [1, 5, 1360], [1, 5, 1361]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1445], "distinct_count": 87}, {"mcvs": [[1, 5, 1521], [1, 5, 1447], [1, 5, 1448]], "row_count": 76, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1521], "distinct_count": 76}, {"mcvs": [[1, 5, 1616], [1, 5, 1523], [1, 5, 1524]], "row_count": 95, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1616], "distinct_count": 95}, {"mcvs": [[1, 5, 1714], [1, 5, 1618], [1, 5, 1619]], "row_count": 98, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1714], "distinct_count": 98}, {"mcvs": [[1, 5, 1795], [1, 5, 1716], [1, 5, 1717]], "row_count": 81, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1795], "distinct_count": 81}, {"mcvs": [[1, 5, 1851], [1, 5, 1797], [1, 5, 1798]], "row_count": 56, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1851], "distinct_count": 56}, {"mcvs": [[1, 5, 1979], [1, 5, 1853], [1, 5, 1854]], "row_count": 128, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 1979], "distinct_count": 128}, {"mcvs": [[1, 5, 2035], [1, 5, 1981], [1, 5, 1982]], "row_count": 56, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2035], "distinct_count": 56}, {"mcvs": [[1, 5, 2082], [1, 5, 2037], [1, 5, 2038]], "row_count": 47, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2082], "distinct_count": 47}, {"mcvs": [[1, 5, 2194], [1, 5, 2084], [1, 5, 2085]], "row_count": 112, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2194], "distinct_count": 112}, {"mcvs": [[1, 5, 2269], [1, 5, 2196], [1, 5, 2197]], "row_count": 75, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2269], "distinct_count": 75}, {"mcvs": [[1, 5, 2352], [1, 5, 2271], [1, 5, 2272]], "row_count": 83, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2352], "distinct_count": 83}, {"mcvs": [[1, 5, 2483], [1, 5, 2354], [1, 5, 2355]], "row_count": 131, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2483], "distinct_count": 131}, {"mcvs": [[1, 5, 2571], [1, 5, 2485], [1, 5, 2486]], "row_count": 88, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2571], "distinct_count": 88}, {"mcvs": [[1, 5, 2678], [1, 5, 2573], [1, 5, 2574]], "row_count": 107, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2678], "distinct_count": 107}, {"mcvs": [[1, 5, 2761], [1, 5, 2680], [1, 5, 2681]], "row_count": 83, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2761], "distinct_count": 83}, {"mcvs": [[1, 5, 2818], [1, 5, 2763], [1, 5, 2764]], "row_count": 57, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2818], "distinct_count": 57}, {"mcvs": [[1, 5, 2896], [1, 5, 2820], [1, 5, 2821]], "row_count": 78, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2896], "distinct_count": 78}, {"mcvs": [[1, 5, 2981], [1, 5, 2898], [1, 5, 2899]], "row_count": 85, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2981], "distinct_count": 85}, {"mcvs": [[1, 5, 3052], [1, 5, 2983], [1, 5, 2984]], "row_count": 71, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 3052], "distinct_count": 71}, {"mcvs": [[1, 5, 3174], [1, 5, 3054], [1, 5, 3055]], "row_count": 122, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 3174], "distinct_count": 122}, {"mcvs": [[1, 6, 70], [1, 5, 3176], [1, 5, 3177]], "row_count": 122, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 70], "distinct_count": 122}, {"mcvs": [[1, 6, 211], [1, 6, 72], [1, 6, 73]], "row_count": 141, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 211], "distinct_count": 141}, {"mcvs": [[1, 6, 291], [1, 6, 213], [1, 6, 214]], "row_count": 80, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 291], "distinct_count": 80}, {"mcvs": [[1, 6, 356], [1, 6, 293], [1, 6, 294]], "row_count": 65, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 356], "distinct_count": 65}, {"mcvs": [[1, 6, 467], [1, 6, 358], [1, 6, 359]], "row_count": 111, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 467], "distinct_count": 111}, {"mcvs": [[1, 6, 587], [1, 6, 469], [1, 6, 470]], "row_count": 120, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 587], "distinct_count": 120}, {"mcvs": [[1, 6, 682], [1, 6, 589], [1, 6, 590]], "row_count": 95, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 682], "distinct_count": 95}, {"mcvs": [[1, 6, 828], [1, 6, 684], [1, 6, 685]], "row_count": 146, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 828], "distinct_count": 146}, {"mcvs": [[1, 6, 936], [1, 6, 830], [1, 6, 831]], "row_count": 108, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 936], "distinct_count": 108}, {"mcvs": [[1, 6, 1023], [1, 6, 938], [1, 6, 939]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1023], "distinct_count": 87}, {"mcvs": [[1, 6, 1122], [1, 6, 1025], [1, 6, 1026]], "row_count": 99, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1122], "distinct_count": 99}, {"mcvs": [[1, 6, 1176], [1, 6, 1124], [1, 6, 1125]], "row_count": 54, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1176], "distinct_count": 54}, {"mcvs": [[1, 6, 1288], [1, 6, 1178], [1, 6, 1179]], "row_count": 112, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1288], "distinct_count": 112}, {"mcvs": [[1, 6, 1398], [1, 6, 1290], [1, 6, 1291]], "row_count": 110, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1398], "distinct_count": 110}, {"mcvs": [[1, 6, 1493], [1, 6, 1400], [1, 6, 1401]], "row_count": 95, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1493], "distinct_count": 95}, {"mcvs": [[1, 6, 1664], [1, 6, 1495], [1, 6, 1496]], "row_count": 171, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1664], "distinct_count": 171}, {"mcvs": [[1, 6, 1741], [1, 6, 1666], [1, 6, 1667]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1741], "distinct_count": 77}, {"mcvs": [[1, 6, 1849], [1, 6, 1743], [1, 6, 1744]], "row_count": 108, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1849], "distinct_count": 108}, {"mcvs": [[1, 6, 1931], [1, 6, 1851], [1, 6, 1852]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 1931], "distinct_count": 82}, {"mcvs": [[1, 6, 2029], [1, 6, 1933], [1, 6, 1934]], "row_count": 98, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2029], "distinct_count": 98}, {"mcvs": [[1, 6, 2126], [1, 6, 2031], [1, 6, 2032]], "row_count": 97, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2126], "distinct_count": 97}, {"mcvs": [[1, 6, 2189], [1, 6, 2128], [1, 6, 2129]], "row_count": 63, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2189], "distinct_count": 63}, {"mcvs": [[1, 6, 2295], [1, 6, 2191], [1, 6, 2192]], "row_count": 106, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2295], "distinct_count": 106}, {"mcvs": [[1, 6, 2389], [1, 6, 2297], [1, 6, 2298]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2389], "distinct_count": 94}, {"mcvs": [[1, 6, 2530], [1, 6, 2391], [1, 6, 2392]], "row_count": 141, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2530], "distinct_count": 141}, {"mcvs": [[1, 6, 2607], [1, 6, 2532], [1, 6, 2533]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2607], "distinct_count": 77}, {"mcvs": [[1, 6, 2688], [1, 6, 2609], [1, 6, 2610]], "row_count": 81, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2688], "distinct_count": 81}, {"mcvs": [[1, 6, 2764], [1, 6, 2690], [1, 6, 2691]], "row_count": 76, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2764], "distinct_count": 76}, {"mcvs": [[1, 6, 2867], [1, 6, 2766], [1, 6, 2767]], "row_count": 103, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2867], "distinct_count": 103}, {"mcvs": [[1, 6, 2961], [1, 6, 2869], [1, 6, 2870]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2961], "distinct_count": 94}, {"mcvs": [[1, 6, 3037], [1, 6, 2963], [1, 6, 2964]], "row_count": 76, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 3037], "distinct_count": 76}, {"mcvs": [[1, 6, 3160], [1, 6, 3039], [1, 6, 3040]], "row_count": 123, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 3160], "distinct_count": 123}, {"mcvs": [[1, 6, 3219], [1, 6, 3162], [1, 6, 3163]], "row_count": 59, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 3219], "distinct_count": 59}, {"mcvs": [[1, 7, 89], [1, 6, 3221], [1, 6, 3222]], "row_count": 103, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 89], "distinct_count": 103}, {"mcvs": [[1, 7, 166], [1, 7, 91], [1, 7, 92]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 166], "distinct_count": 77}, {"mcvs": [[1, 7, 283], [1, 7, 168], [1, 7, 169]], "row_count": 117, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 283], "distinct_count": 117}, {"mcvs": [[1, 7, 412], [1, 7, 285], [1, 7, 286]], "row_count": 129, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 412], "distinct_count": 129}, {"mcvs": [[1, 7, 497], [1, 7, 414], [1, 7, 415]], "row_count": 85, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 497], "distinct_count": 85}, {"mcvs": [[1, 7, 623], [1, 7, 499], [1, 7, 500]], "row_count": 126, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 623], "distinct_count": 126}, {"mcvs": [[1, 7, 764], [1, 7, 625], [1, 7, 626]], "row_count": 141, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 764], "distinct_count": 141}, {"mcvs": [[1, 7, 892], [1, 7, 766], [1, 7, 767]], "row_count": 128, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 892], "distinct_count": 128}, {"mcvs": [[1, 7, 985], [1, 7, 894], [1, 7, 895]], "row_count": 93, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 985], "distinct_count": 93}, {"mcvs": [[1, 7, 1077], [1, 7, 987], [1, 7, 988]], "row_count": 92, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1077], "distinct_count": 92}, {"mcvs": [[1, 7, 1204], [1, 7, 1079], [1, 7, 1080]], "row_count": 127, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1204], "distinct_count": 127}, {"mcvs": [[1, 7, 1275], [1, 7, 1206], [1, 7, 1207]], "row_count": 71, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1275], "distinct_count": 71}, {"mcvs": [[1, 7, 1403], [1, 7, 1277], [1, 7, 1278]], "row_count": 128, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1403], "distinct_count": 128}, {"mcvs": [[1, 7, 1438], [1, 7, 1405], [1, 7, 1406]], "row_count": 35, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1438], "distinct_count": 35}, {"mcvs": [[1, 7, 1513], [1, 7, 1440], [1, 7, 1441]], "row_count": 75, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1513], "distinct_count": 75}, {"mcvs": [[1, 7, 1590], [1, 7, 1515], [1, 7, 1516]], "row_count": 77, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1590], "distinct_count": 77}, {"mcvs": [[1, 7, 1661], [1, 7, 1592], [1, 7, 1593]], "row_count": 71, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1661], "distinct_count": 71}, {"mcvs": [[1, 7, 1770], [1, 7, 1663], [1, 7, 1664]], "row_count": 109, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1770], "distinct_count": 109}, {"mcvs": [[1, 7, 1840], [1, 7, 1772], [1, 7, 1773]], "row_count": 70, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1840], "distinct_count": 70}, {"mcvs": [[1, 7, 1952], [1, 7, 1842], [1, 7, 1843]], "row_count": 112, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 1952], "distinct_count": 112}, {"mcvs": [[1, 7, 2061], [1, 7, 1954], [1, 7, 1955]], "row_count": 109, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2061], "distinct_count": 109}, {"mcvs": [[1, 7, 2204], [1, 7, 2063], [1, 7, 2064]], "row_count": 143, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2204], "distinct_count": 143}, {"mcvs": [[1, 7, 2312], [1, 7, 2206], [1, 7, 2207]], "row_count": 108, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2312], "distinct_count": 108}, {"mcvs": [[1, 7, 2398], [1, 7, 2314], [1, 7, 2315]], "row_count": 86, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2398], "distinct_count": 86}, {"mcvs": [[1, 7, 2544], [1, 7, 2400], [1, 7, 2401]], "row_count": 146, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2544], "distinct_count": 146}, {"mcvs": [[1, 7, 2642], [1, 7, 2546], [1, 7, 2547]], "row_count": 98, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2642], "distinct_count": 98}, {"mcvs": [[1, 7, 2762], [1, 7, 2644], [1, 7, 2645]], "row_count": 120, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2762], "distinct_count": 120}, {"mcvs": [[1, 7, 2856], [1, 7, 2764], [1, 7, 2765]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2856], "distinct_count": 94}, {"mcvs": [[1, 7, 2972], [1, 7, 2858], [1, 7, 2859]], "row_count": 116, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2972], "distinct_count": 116}, {"mcvs": [[1, 7, 3085], [1, 7, 2974], [1, 7, 2975]], "row_count": 113, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 3085], "distinct_count": 113}, {"mcvs": [[1, 7, 3143], [1, 7, 3087], [1, 7, 3088]], "row_count": 58, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 3143], "distinct_count": 58}, {"mcvs": [[1, 7, 3204], [1, 7, 3145], [1, 7, 3146]], "row_count": 61, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 3204], "distinct_count": 61}, {"mcvs": [[1, 8, 81], [1, 7, 3206], [1, 7, 3207]], "row_count": 85, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 81], "distinct_count": 85}, {"mcvs": [[1, 8, 167], [1, 8, 83], [1, 8, 84]], "row_count": 86, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 167], "distinct_count": 86}, {"mcvs": [[1, 8, 280], [1, 8, 169], [1, 8, 170]], "row_count": 113, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 280], "distinct_count": 113}, {"mcvs": [[1, 8, 337], [1, 8, 282], [1, 8, 283]], "row_count": 57, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 337], "distinct_count": 57}, {"mcvs": [[1, 8, 436], [1, 8, 339], [1, 8, 340]], "row_count": 99, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 436], "distinct_count": 99}, {"mcvs": [[1, 8, 518], [1, 8, 438], [1, 8, 439]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 518], "distinct_count": 82}, {"mcvs": [[1, 8, 606], [1, 8, 520], [1, 8, 521]], "row_count": 88, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 606], "distinct_count": 88}, {"mcvs": [[1, 8, 723], [1, 8, 608], [1, 8, 609]], "row_count": 117, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 723], "distinct_count": 117}, {"mcvs": [[1, 8, 864], [1, 8, 725], [1, 8, 726]], "row_count": 141, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 864], "distinct_count": 141}, {"mcvs": [[1, 8, 973], [1, 8, 866], [1, 8, 867]], "row_count": 109, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 973], "distinct_count": 109}, {"mcvs": [[1, 8, 1058], [1, 8, 975], [1, 8, 976]], "row_count": 85, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1058], "distinct_count": 85}, {"mcvs": [[1, 8, 1169], [1, 8, 1060], [1, 8, 1061]], "row_count": 111, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1169], "distinct_count": 111}, {"mcvs": [[1, 8, 1259], [1, 8, 1171], [1, 8, 1172]], "row_count": 90, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1259], "distinct_count": 90}, {"mcvs": [[1, 8, 1364], [1, 8, 1261], [1, 8, 1262]], "row_count": 105, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1364], "distinct_count": 105}, {"mcvs": [[1, 8, 1451], [1, 8, 1366], [1, 8, 1367]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1451], "distinct_count": 87}, {"mcvs": [[1, 8, 1517], [1, 8, 1453], [1, 8, 1454]], "row_count": 66, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1517], "distinct_count": 66}, {"mcvs": [[1, 8, 1637], [1, 8, 1519], [1, 8, 1520]], "row_count": 120, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1637], "distinct_count": 120}, {"mcvs": [[1, 8, 1758], [1, 8, 1639], [1, 8, 1640]], "row_count": 121, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1758], "distinct_count": 121}, {"mcvs": [[1, 8, 1870], [1, 8, 1760], [1, 8, 1761]], "row_count": 112, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1870], "distinct_count": 112}, {"mcvs": [[1, 8, 1940], [1, 8, 1872], [1, 8, 1873]], "row_count": 70, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 1940], "distinct_count": 70}, {"mcvs": [[1, 8, 2005], [1, 8, 1942], [1, 8, 1943]], "row_count": 65, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2005], "distinct_count": 65}, {"mcvs": [[1, 8, 2106], [1, 8, 2007], [1, 8, 2008]], "row_count": 101, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2106], "distinct_count": 101}, {"mcvs": [[1, 8, 2200], [1, 8, 2108], [1, 8, 2109]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2200], "distinct_count": 94}, {"mcvs": [[1, 8, 2326], [1, 8, 2202], [1, 8, 2203]], "row_count": 126, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2326], "distinct_count": 126}, {"mcvs": [[1, 8, 2428], [1, 8, 2328], [1, 8, 2329]], "row_count": 102, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2428], "distinct_count": 102}, {"mcvs": [[1, 8, 2476], [1, 8, 2430], [1, 8, 2431]], "row_count": 48, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2476], "distinct_count": 48}, {"mcvs": [[1, 8, 2570], [1, 8, 2478], [1, 8, 2479]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2570], "distinct_count": 94}, {"mcvs": [[1, 8, 2649], [1, 8, 2572], [1, 8, 2573]], "row_count": 79, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2649], "distinct_count": 79}, {"mcvs": [[1, 8, 2736], [1, 8, 2651], [1, 8, 2652]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2736], "distinct_count": 87}, {"mcvs": [[1, 8, 2814], [1, 8, 2738], [1, 8, 2739]], "row_count": 78, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2814], "distinct_count": 78}, {"mcvs": [[1, 8, 2926], [1, 8, 2816], [1, 8, 2817]], "row_count": 112, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2926], "distinct_count": 112}, {"mcvs": [[1, 8, 3097], [1, 8, 2928], [1, 8, 2929]], "row_count": 171, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 3097], "distinct_count": 171}, {"mcvs": [[1, 8, 3212], [1, 8, 3099], [1, 8, 3100]], "row_count": 115, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 3212], "distinct_count": 115}, {"mcvs": [[1, 9, 76], [1, 8, 3214], [1, 8, 3215]], "row_count": 84, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 76], "distinct_count": 84}, {"mcvs": [[1, 9, 172], [1, 9, 78], [1, 9, 79]], "row_count": 96, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 172], "distinct_count": 96}, {"mcvs": [[1, 9, 291], [1, 9, 174], [1, 9, 175]], "row_count": 119, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 291], "distinct_count": 119}, {"mcvs": [[1, 9, 435], [1, 9, 293], [1, 9, 294]], "row_count": 144, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 435], "distinct_count": 144}, {"mcvs": [[1, 9, 518], [1, 9, 437], [1, 9, 438]], "row_count": 83, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 518], "distinct_count": 83}, {"mcvs": [[1, 9, 653], [1, 9, 520], [1, 9, 521]], "row_count": 135, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 653], "distinct_count": 135}, {"mcvs": [[1, 9, 773], [1, 9, 655], [1, 9, 656]], "row_count": 120, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 773], "distinct_count": 120}, {"mcvs": [[1, 9, 894], [1, 9, 775], [1, 9, 776]], "row_count": 121, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 894], "distinct_count": 121}, {"mcvs": [[1, 9, 981], [1, 9, 896], [1, 9, 897]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 981], "distinct_count": 87}, {"mcvs": [[1, 9, 1092], [1, 9, 983], [1, 9, 984]], "row_count": 111, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1092], "distinct_count": 111}, {"mcvs": [[1, 9, 1209], [1, 9, 1094], [1, 9, 1095]], "row_count": 117, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1209], "distinct_count": 117}, {"mcvs": [[1, 9, 1320], [1, 9, 1211], [1, 9, 1212]], "row_count": 111, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1320], "distinct_count": 111}, {"mcvs": [[1, 9, 1407], [1, 9, 1322], [1, 9, 1323]], "row_count": 87, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1407], "distinct_count": 87}, {"mcvs": [[1, 9, 1530], [1, 9, 1409], [1, 9, 1410]], "row_count": 123, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1530], "distinct_count": 123}, {"mcvs": [[1, 9, 1652], [1, 9, 1532], [1, 9, 1533]], "row_count": 122, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1652], "distinct_count": 122}, {"mcvs": [[1, 9, 1778], [1, 9, 1654], [1, 9, 1655]], "row_count": 126, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1778], "distinct_count": 126}, {"mcvs": [[1, 9, 1870], [1, 9, 1780], [1, 9, 1781]], "row_count": 92, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1870], "distinct_count": 92}, {"mcvs": [[1, 9, 1951], [1, 9, 1872], [1, 9, 1873]], "row_count": 81, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 1951], "distinct_count": 81}, {"mcvs": [[1, 9, 2034], [1, 9, 1953], [1, 9, 1954]], "row_count": 83, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2034], "distinct_count": 83}, {"mcvs": [[1, 9, 2085], [1, 9, 2036], [1, 9, 2037]], "row_count": 51, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2085], "distinct_count": 51}, {"mcvs": [[1, 9, 2209], [1, 9, 2087], [1, 9, 2088]], "row_count": 124, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2209], "distinct_count": 124}, {"mcvs": [[1, 9, 2313], [1, 9, 2211], [1, 9, 2212]], "row_count": 104, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2313], "distinct_count": 104}, {"mcvs": [[1, 9, 2427], [1, 9, 2315], [1, 9, 2316]], "row_count": 114, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2427], "distinct_count": 114}, {"mcvs": [[1, 9, 2506], [1, 9, 2429], [1, 9, 2430]], "row_count": 79, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2506], "distinct_count": 79}, {"mcvs": [[1, 9, 2559], [1, 9, 2508], [1, 9, 2509]], "row_count": 53, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2559], "distinct_count": 53}, {"mcvs": [[1, 9, 2610], [1, 9, 2561], [1, 9, 2562]], "row_count": 51, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2610], "distinct_count": 51}, {"mcvs": [[1, 9, 2721], [1, 9, 2612], [1, 9, 2613]], "row_count": 111, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2721], "distinct_count": 111}, {"mcvs": [[1, 9, 2863], [1, 9, 2723], [1, 9, 2724]], "row_count": 142, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2863], "distinct_count": 142}, {"mcvs": [[1, 9, 2956], [1, 9, 2865], [1, 9, 2866]], "row_count": 93, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2956], "distinct_count": 93}, {"mcvs": [[1, 9, 3024], [1, 9, 2958], [1, 9, 2959]], "row_count": 68, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 3024], "distinct_count": 68}, {"mcvs": [[1, 9, 3157], [1, 9, 3026], [1, 9, 3027]], "row_count": 133, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 3157], "distinct_count": 133}, {"mcvs": [[1, 10, 17], [1, 9, 3159], [1, 9, 3160]], "row_count": 81, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 17], "distinct_count": 81}, {"mcvs": [[1, 10, 75], [1, 10, 19], [1, 10, 20]], "row_count": 58, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 75], "distinct_count": 58}, {"mcvs": [[1, 10, 143], [1, 10, 77], [1, 10, 78]], "row_count": 68, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 143], "distinct_count": 68}, {"mcvs": [[1, 10, 208], [1, 10, 145], [1, 10, 146]], "row_count": 65, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 208], "distinct_count": 65}, {"mcvs": [[1, 10, 330], [1, 10, 210], [1, 10, 211]], "row_count": 122, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 330], "distinct_count": 122}, {"mcvs": [[1, 10, 447], [1, 10, 332], [1, 10, 333]], "row_count": 117, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 447], "distinct_count": 117}, {"mcvs": [[1, 10, 537], [1, 10, 449], [1, 10, 450]], "row_count": 90, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 537], "distinct_count": 90}, {"mcvs": [[1, 10, 637], [1, 10, 539], [1, 10, 540]], "row_count": 100, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 637], "distinct_count": 100}, {"mcvs": [[1, 10, 762], [1, 10, 639], [1, 10, 640]], "row_count": 125, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 762], "distinct_count": 125}, {"mcvs": [[1, 10, 851], [1, 10, 764], [1, 10, 765]], "row_count": 89, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 851], "distinct_count": 89}, {"mcvs": [[1, 10, 959], [1, 10, 853], [1, 10, 854]], "row_count": 108, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 959], "distinct_count": 108}, {"mcvs": [[1, 10, 1061], [1, 10, 961], [1, 10, 962]], "row_count": 102, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1061], "distinct_count": 102}, {"mcvs": [[1, 10, 1202], [1, 10, 1063], [1, 10, 1064]], "row_count": 141, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1202], "distinct_count": 141}, {"mcvs": [[1, 10, 1282], [1, 10, 1204], [1, 10, 1205]], "row_count": 80, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1282], "distinct_count": 80}, {"mcvs": [[1, 10, 1354], [1, 10, 1284], [1, 10, 1285]], "row_count": 72, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1354], "distinct_count": 72}, {"mcvs": [[1, 10, 1422], [1, 10, 1356], [1, 10, 1357]], "row_count": 68, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1422], "distinct_count": 68}, {"mcvs": [[1, 10, 1522], [1, 10, 1424], [1, 10, 1425]], "row_count": 100, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1522], "distinct_count": 100}, {"mcvs": [[1, 10, 1632], [1, 10, 1524], [1, 10, 1525]], "row_count": 110, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1632], "distinct_count": 110}, {"mcvs": [[1, 10, 1694], [1, 10, 1634], [1, 10, 1635]], "row_count": 62, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1694], "distinct_count": 62}, {"mcvs": [[1, 10, 1797], [1, 10, 1696], [1, 10, 1697]], "row_count": 103, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1797], "distinct_count": 103}, {"mcvs": [[1, 10, 1903], [1, 10, 1799], [1, 10, 1800]], "row_count": 106, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1903], "distinct_count": 106}, {"mcvs": [[1, 10, 1997], [1, 10, 1905], [1, 10, 1906]], "row_count": 94, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 1997], "distinct_count": 94}, {"mcvs": [[1, 10, 2129], [1, 10, 1999], [1, 10, 2000]], "row_count": 132, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2129], "distinct_count": 132}, {"mcvs": [[1, 10, 2167], [1, 10, 2131], [1, 10, 2132]], "row_count": 38, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2167], "distinct_count": 38}, {"mcvs": [[1, 10, 2273], [1, 10, 2169], [1, 10, 2170]], "row_count": 106, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2273], "distinct_count": 106}, {"mcvs": [[1, 10, 2337], [1, 10, 2275], [1, 10, 2276]], "row_count": 64, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2337], "distinct_count": 64}, {"mcvs": [[1, 10, 2437], [1, 10, 2339], [1, 10, 2340]], "row_count": 100, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2437], "distinct_count": 100}, {"mcvs": [[1, 10, 2530], [1, 10, 2439], [1, 10, 2440]], "row_count": 93, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2530], "distinct_count": 93}, {"mcvs": [[1, 10, 2608], [1, 10, 2532], [1, 10, 2533]], "row_count": 78, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2608], "distinct_count": 78}, {"mcvs": [[1, 10, 2723], [1, 10, 2610], [1, 10, 2611]], "row_count": 115, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2723], "distinct_count": 115}, {"mcvs": [[1, 10, 2854], [1, 10, 2725], [1, 10, 2726]], "row_count": 131, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2854], "distinct_count": 131}, {"mcvs": [[1, 10, 2960], [1, 10, 2856], [1, 10, 2857]], "row_count": 106, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2960], "distinct_count": 106}, {"mcvs": [[1, 10, 3092], [1, 10, 2962], [1, 10, 2963]], "row_count": 132, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 3092], "distinct_count": 132}, {"mcvs": [[1, 10, 3213], [1, 10, 3094], [1, 10, 3095]], "row_count": 121, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 3213], "distinct_count": 121}, {"mcvs": [[1, 10, 3224], [1, 10, 3215], [1, 10, 3216]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 3224], "distinct_count": 11}], "columns": ["o_w_id", "o_d_id", "o_id"], "avg_size": 0, "qualifier": {"database": "sbt", "table": "orders2", "index": "primary"}, "row_count": 32312, "created_at": "2023-11-10T15:06:18-08:00", "null_count": 32312, "distinct_count": 32312}';`,
`analyze table new_orders2 update histogram on (no_w_id,no_d_id,no_o_id) using data '{"types": ["smallint", "tinyint", "int"], "buckets": [{"mcvs": [[1, 1, 2583], [1, 1, 2326], [1, 1, 2327]], "row_count": 259, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2583], "distinct_count": 259}, {"mcvs": [[1, 1, 2896], [1, 1, 2585], [1, 1, 2586]], "row_count": 313, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 2896], "distinct_count": 313}, {"mcvs": [[1, 1, 3118], [1, 1, 2898], [1, 1, 2899]], "row_count": 222, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1, 3118], "distinct_count": 222}, {"mcvs": [[1, 2, 2575], [1, 1, 3120], [1, 1, 3121]], "row_count": 372, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2575], "distinct_count": 372}, {"mcvs": [[1, 2, 2910], [1, 2, 2577], [1, 2, 2578]], "row_count": 335, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 2910], "distinct_count": 335}, {"mcvs": [[1, 2, 3245], [1, 2, 2912], [1, 2, 2913]], "row_count": 335, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 2, 3245], "distinct_count": 335}, {"mcvs": [[1, 3, 2628], [1, 2, 3247], [1, 2, 3248]], "row_count": 322, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2628], "distinct_count": 322}, {"mcvs": [[1, 3, 2936], [1, 3, 2630], [1, 3, 2631]], "row_count": 308, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 2936], "distinct_count": 308}, {"mcvs": [[1, 3, 3180], [1, 3, 2938], [1, 3, 2939]], "row_count": 244, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3, 3180], "distinct_count": 244}, {"mcvs": [[1, 4, 2582], [1, 3, 3182], [1, 3, 3183]], "row_count": 311, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2582], "distinct_count": 311}, {"mcvs": [[1, 4, 2880], [1, 4, 2584], [1, 4, 2585]], "row_count": 298, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 2880], "distinct_count": 298}, {"mcvs": [[1, 4, 3218], [1, 4, 2882], [1, 4, 2883]], "row_count": 338, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4, 3218], "distinct_count": 338}, {"mcvs": [[1, 5, 2571], [1, 4, 3220], [1, 4, 3221]], "row_count": 274, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2571], "distinct_count": 274}, {"mcvs": [[1, 5, 2818], [1, 5, 2573], [1, 5, 2574]], "row_count": 247, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2818], "distinct_count": 247}, {"mcvs": [[1, 5, 2981], [1, 5, 2820], [1, 5, 2821]], "row_count": 163, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 2981], "distinct_count": 163}, {"mcvs": [[1, 5, 3052], [1, 5, 2983], [1, 5, 2984]], "row_count": 71, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5, 3052], "distinct_count": 71}, {"mcvs": [[1, 6, 2389], [1, 5, 3054], [1, 5, 3055]], "row_count": 239, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2389], "distinct_count": 239}, {"mcvs": [[1, 6, 2541], [1, 6, 2391], [1, 6, 2392]], "row_count": 152, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2541], "distinct_count": 152}, {"mcvs": [[1, 6, 2785], [1, 6, 2543], [1, 6, 2544]], "row_count": 244, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 2785], "distinct_count": 244}, {"mcvs": [[1, 6, 3037], [1, 6, 2787], [1, 6, 2788]], "row_count": 252, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 3037], "distinct_count": 252}, {"mcvs": [[1, 6, 3219], [1, 6, 3039], [1, 6, 3040]], "row_count": 182, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 6, 3219], "distinct_count": 182}, {"mcvs": [[1, 7, 2631], [1, 6, 3221], [1, 6, 3222]], "row_count": 321, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2631], "distinct_count": 321}, {"mcvs": [[1, 7, 2789], [1, 7, 2633], [1, 7, 2634]], "row_count": 158, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 2789], "distinct_count": 158}, {"mcvs": [[1, 7, 3020], [1, 7, 2791], [1, 7, 2792]], "row_count": 231, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7, 3020], "distinct_count": 231}, {"mcvs": [[1, 8, 2428], [1, 7, 3022], [1, 7, 3023]], "row_count": 292, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2428], "distinct_count": 292}, {"mcvs": [[1, 8, 2649], [1, 8, 2430], [1, 8, 2431]], "row_count": 221, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2649], "distinct_count": 221}, {"mcvs": [[1, 8, 2847], [1, 8, 2651], [1, 8, 2652]], "row_count": 198, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 2847], "distinct_count": 198}, {"mcvs": [[1, 8, 3102], [1, 8, 2849], [1, 8, 2850]], "row_count": 255, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8, 3102], "distinct_count": 255}, {"mcvs": [[1, 9, 2506], [1, 8, 3104], [1, 8, 3105]], "row_count": 301, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2506], "distinct_count": 301}, {"mcvs": [[1, 9, 2721], [1, 9, 2508], [1, 9, 2509]], "row_count": 215, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2721], "distinct_count": 215}, {"mcvs": [[1, 9, 2956], [1, 9, 2723], [1, 9, 2724]], "row_count": 235, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 2956], "distinct_count": 235}, {"mcvs": [[1, 9, 3024], [1, 9, 2958], [1, 9, 2959]], "row_count": 68, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 9, 3024], "distinct_count": 68}, {"mcvs": [[1, 10, 2337], [1, 9, 3026], [1, 9, 3027]], "row_count": 210, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2337], "distinct_count": 210}, {"mcvs": [[1, 10, 2608], [1, 10, 2339], [1, 10, 2340]], "row_count": 271, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2608], "distinct_count": 271}, {"mcvs": [[1, 10, 2918], [1, 10, 2610], [1, 10, 2611]], "row_count": 310, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 2918], "distinct_count": 310}, {"mcvs": [[1, 10, 3213], [1, 10, 2920], [1, 10, 2921]], "row_count": 295, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 3213], "distinct_count": 295}, {"mcvs": [[1, 10, 3224], [1, 10, 3215], [1, 10, 3216]], "row_count": 11, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10, 3224], "distinct_count": 11}], "columns": ["no_w_id", "no_d_id", "no_o_id"], "avg_size": 0, "qualifier": {"database": "sbt", "table": "new_orders2", "index": "primary"}, "row_count": 9073, "created_at": "2023-11-10T15:06:17-08:00", "null_count": 9073, "distinct_count": 9073}';`,
`analyze table stock2 update histogram on (s_w_id,s_i_id) using data '{"types": ["smallint", "int"], "buckets": [{"mcvs": [[1, 1222], [1, 2], [1, 3]], "row_count": 1222, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 1222], "distinct_count": 1222}, {"mcvs": [[1, 3190], [1, 1224], [1, 1225]], "row_count": 1968, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 3190], "distinct_count": 1968}, {"mcvs": [[1, 4665], [1, 3192], [1, 3193]], "row_count": 1475, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 4665], "distinct_count": 1475}, {"mcvs": [[1, 5681], [1, 4667], [1, 4668]], "row_count": 1016, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 5681], "distinct_count": 1016}, {"mcvs": [[1, 7402], [1, 5683], [1, 5684]], "row_count": 1721, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 7402], "distinct_count": 1721}, {"mcvs": [[1, 8946], [1, 7404], [1, 7405]], "row_count": 1544, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 8946], "distinct_count": 1544}, {"mcvs": [[1, 10268], [1, 8948], [1, 8949]], "row_count": 1322, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 10268], "distinct_count": 1322}, {"mcvs": [[1, 11761], [1, 10270], [1, 10271]], "row_count": 1493, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 11761], "distinct_count": 1493}, {"mcvs": [[1, 13169], [1, 11763], [1, 11764]], "row_count": 1408, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 13169], "distinct_count": 1408}, {"mcvs": [[1, 14906], [1, 13171], [1, 13172]], "row_count": 1737, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 14906], "distinct_count": 1737}, {"mcvs": [[1, 16603], [1, 14908], [1, 14909]], "row_count": 1697, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 16603], "distinct_count": 1697}, {"mcvs": [[1, 18553], [1, 16605], [1, 16606]], "row_count": 1950, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 18553], "distinct_count": 1950}, {"mcvs": [[1, 19724], [1, 18555], [1, 18556]], "row_count": 1171, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 19724], "distinct_count": 1171}, {"mcvs": [[1, 21815], [1, 19726], [1, 19727]], "row_count": 2091, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 21815], "distinct_count": 2091}, {"mcvs": [[1, 23234], [1, 21817], [1, 21818]], "row_count": 1419, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 23234], "distinct_count": 1419}, {"mcvs": [[1, 24437], [1, 23236], [1, 23237]], "row_count": 1203, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 24437], "distinct_count": 1203}, {"mcvs": [[1, 26541], [1, 24439], [1, 24440]], "row_count": 2104, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 26541], "distinct_count": 2104}, {"mcvs": [[1, 28186], [1, 26543], [1, 26544]], "row_count": 1645, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 28186], "distinct_count": 1645}, {"mcvs": [[1, 28460], [1, 28188], [1, 28189]], "row_count": 274, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 28460], "distinct_count": 274}, {"mcvs": [[1, 29648], [1, 28462], [1, 28463]], "row_count": 1188, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 29648], "distinct_count": 1188}, {"mcvs": [[1, 31727], [1, 29650], [1, 29651]], "row_count": 2079, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 31727], "distinct_count": 2079}, {"mcvs": [[1, 33526], [1, 31729], [1, 31730]], "row_count": 1799, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 33526], "distinct_count": 1799}, {"mcvs": [[1, 35118], [1, 33528], [1, 33529]], "row_count": 1592, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 35118], "distinct_count": 1592}, {"mcvs": [[1, 36339], [1, 35120], [1, 35121]], "row_count": 1221, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 36339], "distinct_count": 1221}, {"mcvs": [[1, 37948], [1, 36341], [1, 36342]], "row_count": 1609, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 37948], "distinct_count": 1609}, {"mcvs": [[1, 39885], [1, 37950], [1, 37951]], "row_count": 1937, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 39885], "distinct_count": 1937}, {"mcvs": [[1, 41326], [1, 39887], [1, 39888]], "row_count": 1441, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 41326], "distinct_count": 1441}, {"mcvs": [[1, 43557], [1, 41328], [1, 41329]], "row_count": 2231, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 43557], "distinct_count": 2231}, {"mcvs": [[1, 45088], [1, 43559], [1, 43560]], "row_count": 1531, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 45088], "distinct_count": 1531}, {"mcvs": [[1, 46097], [1, 45090], [1, 45091]], "row_count": 1009, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 46097], "distinct_count": 1009}, {"mcvs": [[1, 47303], [1, 46099], [1, 46100]], "row_count": 1206, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 47303], "distinct_count": 1206}, {"mcvs": [[1, 49013], [1, 47305], [1, 47306]], "row_count": 1710, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 49013], "distinct_count": 1710}, {"mcvs": [[1, 50767], [1, 49015], [1, 49016]], "row_count": 1754, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 50767], "distinct_count": 1754}, {"mcvs": [[1, 51862], [1, 50769], [1, 50770]], "row_count": 1095, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 51862], "distinct_count": 1095}, {"mcvs": [[1, 53771], [1, 51864], [1, 51865]], "row_count": 1909, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 53771], "distinct_count": 1909}, {"mcvs": [[1, 54748], [1, 53773], [1, 53774]], "row_count": 977, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 54748], "distinct_count": 977}, {"mcvs": [[1, 56784], [1, 54750], [1, 54751]], "row_count": 2036, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 56784], "distinct_count": 2036}, {"mcvs": [[1, 58275], [1, 56786], [1, 56787]], "row_count": 1491, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 58275], "distinct_count": 1491}, {"mcvs": [[1, 59611], [1, 58277], [1, 58278]], "row_count": 1336, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 59611], "distinct_count": 1336}, {"mcvs": [[1, 60726], [1, 59613], [1, 59614]], "row_count": 1115, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 60726], "distinct_count": 1115}, {"mcvs": [[1, 62165], [1, 60728], [1, 60729]], "row_count": 1439, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 62165], "distinct_count": 1439}, {"mcvs": [[1, 63413], [1, 62167], [1, 62168]], "row_count": 1248, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 63413], "distinct_count": 1248}, {"mcvs": [[1, 64427], [1, 63415], [1, 63416]], "row_count": 1014, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 64427], "distinct_count": 1014}, {"mcvs": [[1, 66562], [1, 64429], [1, 64430]], "row_count": 2135, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 66562], "distinct_count": 2135}, {"mcvs": [[1, 67616], [1, 66564], [1, 66565]], "row_count": 1054, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 67616], "distinct_count": 1054}, {"mcvs": [[1, 69181], [1, 67618], [1, 67619]], "row_count": 1565, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 69181], "distinct_count": 1565}, {"mcvs": [[1, 70544], [1, 69183], [1, 69184]], "row_count": 1363, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 70544], "distinct_count": 1363}, {"mcvs": [[1, 72167], [1, 70546], [1, 70547]], "row_count": 1623, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 72167], "distinct_count": 1623}, {"mcvs": [[1, 73281], [1, 72169], [1, 72170]], "row_count": 1114, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 73281], "distinct_count": 1114}, {"mcvs": [[1, 74792], [1, 73283], [1, 73284]], "row_count": 1511, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 74792], "distinct_count": 1511}, {"mcvs": [[1, 76666], [1, 74794], [1, 74795]], "row_count": 1874, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 76666], "distinct_count": 1874}, {"mcvs": [[1, 77861], [1, 76668], [1, 76669]], "row_count": 1195, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 77861], "distinct_count": 1195}, {"mcvs": [[1, 78331], [1, 77863], [1, 77864]], "row_count": 470, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 78331], "distinct_count": 470}, {"mcvs": [[1, 79833], [1, 78333], [1, 78334]], "row_count": 1502, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 79833], "distinct_count": 1502}, {"mcvs": [[1, 81323], [1, 79835], [1, 79836]], "row_count": 1490, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 81323], "distinct_count": 1490}, {"mcvs": [[1, 82213], [1, 81325], [1, 81326]], "row_count": 890, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 82213], "distinct_count": 890}, {"mcvs": [[1, 84765], [1, 82215], [1, 82216]], "row_count": 2552, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 84765], "distinct_count": 2552}, {"mcvs": [[1, 86303], [1, 84767], [1, 84768]], "row_count": 1538, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 86303], "distinct_count": 1538}, {"mcvs": [[1, 87677], [1, 86305], [1, 86306]], "row_count": 1374, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 87677], "distinct_count": 1374}, {"mcvs": [[1, 89527], [1, 87679], [1, 87680]], "row_count": 1850, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 89527], "distinct_count": 1850}, {"mcvs": [[1, 91488], [1, 89529], [1, 89530]], "row_count": 1961, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 91488], "distinct_count": 1961}, {"mcvs": [[1, 93456], [1, 91490], [1, 91491]], "row_count": 1968, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 93456], "distinct_count": 1968}, {"mcvs": [[1, 95025], [1, 93458], [1, 93459]], "row_count": 1569, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 95025], "distinct_count": 1569}, {"mcvs": [[1, 96515], [1, 95027], [1, 95028]], "row_count": 1490, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 96515], "distinct_count": 1490}, {"mcvs": [[1, 98120], [1, 96517], [1, 96518]], "row_count": 1605, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 98120], "distinct_count": 1605}, {"mcvs": [[1, 99303], [1, 98122], [1, 98123]], "row_count": 1183, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 99303], "distinct_count": 1183}, {"mcvs": [[1, 100000], [1, 99305], [1, 99306]], "row_count": 697, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1, 100000], "distinct_count": 697}], "columns": ["s_w_id", "s_i_id"], "avg_size": 0, "qualifier": {"database": "sbt", "table": "stock2", "index": "primary"}, "row_count": 100000, "created_at": "2023-11-10T15:06:18-08:00", "null_count": 100000, "distinct_count": 100000}';`,
`analyze table stock2 update histogram on (s_i_id) using data '{"types": ["int"], "buckets": [{"mcvs": [[263], [2], [3]], "row_count": 263, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [263], "distinct_count": 263}, {"mcvs": [[562], [265], [266]], "row_count": 299, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [562], "distinct_count": 299}, {"mcvs": [[848], [564], [565]], "row_count": 286, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [848], "distinct_count": 286}, {"mcvs": [[1112], [850], [851]], "row_count": 264, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1112], "distinct_count": 264}, {"mcvs": [[1473], [1114], [1115]], "row_count": 361, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1473], "distinct_count": 361}, {"mcvs": [[1913], [1475], [1476]], "row_count": 440, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [1913], "distinct_count": 440}, {"mcvs": [[2068], [1915], [1916]], "row_count": 155, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [2068], "distinct_count": 155}, {"mcvs": [[2438], [2070], [2071]], "row_count": 370, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [2438], "distinct_count": 370}, {"mcvs": [[2820], [2440], [2441]], "row_count": 382, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [2820], "distinct_count": 382}, {"mcvs": [[3299], [2822], [2823]], "row_count": 479, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [3299], "distinct_count": 479}, {"mcvs": [[3815], [3301], [3302]], "row_count": 516, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [3815], "distinct_count": 516}, {"mcvs": [[4121], [3817], [3818]], "row_count": 306, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [4121], "distinct_count": 306}, {"mcvs": [[4430], [4123], [4124]], "row_count": 309, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [4430], "distinct_count": 309}, {"mcvs": [[4733], [4432], [4433]], "row_count": 303, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [4733], "distinct_count": 303}, {"mcvs": [[4822], [4735], [4736]], "row_count": 89, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [4822], "distinct_count": 89}, {"mcvs": [[5008], [4824], [4825]], "row_count": 186, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [5008], "distinct_count": 186}, {"mcvs": [[5246], [5010], [5011]], "row_count": 238, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [5246], "distinct_count": 238}, {"mcvs": [[5535], [5248], [5249]], "row_count": 289, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [5535], "distinct_count": 289}, {"mcvs": [[5915], [5537], [5538]], "row_count": 380, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [5915], "distinct_count": 380}, {"mcvs": [[6038], [5917], [5918]], "row_count": 123, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [6038], "distinct_count": 123}, {"mcvs": [[6438], [6040], [6041]], "row_count": 400, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [6438], "distinct_count": 400}, {"mcvs": [[6672], [6440], [6441]], "row_count": 234, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [6672], "distinct_count": 234}, {"mcvs": [[7054], [6674], [6675]], "row_count": 382, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [7054], "distinct_count": 382}, {"mcvs": [[7316], [7056], [7057]], "row_count": 262, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [7316], "distinct_count": 262}, {"mcvs": [[7573], [7318], [7319]], "row_count": 257, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [7573], "distinct_count": 257}, {"mcvs": [[7761], [7575], [7576]], "row_count": 188, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [7761], "distinct_count": 188}, {"mcvs": [[8086], [7763], [7764]], "row_count": 325, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [8086], "distinct_count": 325}, {"mcvs": [[8301], [8088], [8089]], "row_count": 215, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [8301], "distinct_count": 215}, {"mcvs": [[8513], [8303], [8304]], "row_count": 212, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [8513], "distinct_count": 212}, {"mcvs": [[8811], [8515], [8516]], "row_count": 298, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [8811], "distinct_count": 298}, {"mcvs": [[9142], [8813], [8814]], "row_count": 331, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [9142], "distinct_count": 331}, {"mcvs": [[9559], [9144], [9145]], "row_count": 417, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [9559], "distinct_count": 417}, {"mcvs": [[9804], [9561], [9562]], "row_count": 245, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [9804], "distinct_count": 245}, {"mcvs": [[10266], [9806], [9807]], "row_count": 462, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [10266], "distinct_count": 462}, {"mcvs": [[10711], [10268], [10269]], "row_count": 445, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [10711], "distinct_count": 445}, {"mcvs": [[11001], [10713], [10714]], "row_count": 290, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [11001], "distinct_count": 290}, {"mcvs": [[11426], [11003], [11004]], "row_count": 425, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [11426], "distinct_count": 425}, {"mcvs": [[11740], [11428], [11429]], "row_count": 314, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [11740], "distinct_count": 314}, {"mcvs": [[12166], [11742], [11743]], "row_count": 426, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [12166], "distinct_count": 426}, {"mcvs": [[12389], [12168], [12169]], "row_count": 223, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [12389], "distinct_count": 223}, {"mcvs": [[12739], [12391], [12392]], "row_count": 350, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [12739], "distinct_count": 350}, {"mcvs": [[13087], [12741], [12742]], "row_count": 348, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [13087], "distinct_count": 348}, {"mcvs": [[13221], [13089], [13090]], "row_count": 134, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [13221], "distinct_count": 134}, {"mcvs": [[13492], [13223], [13224]], "row_count": 271, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [13492], "distinct_count": 271}, {"mcvs": [[13874], [13494], [13495]], "row_count": 382, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [13874], "distinct_count": 382}, {"mcvs": [[14172], [13876], [13877]], "row_count": 298, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [14172], "distinct_count": 298}, {"mcvs": [[14591], [14174], [14175]], "row_count": 419, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [14591], "distinct_count": 419}, {"mcvs": [[14859], [14593], [14594]], "row_count": 268, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [14859], "distinct_count": 268}, {"mcvs": [[15267], [14861], [14862]], "row_count": 408, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [15267], "distinct_count": 408}, {"mcvs": [[15532], [15269], [15270]], "row_count": 265, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [15532], "distinct_count": 265}, {"mcvs": [[15873], [15534], [15535]], "row_count": 341, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [15873], "distinct_count": 341}, {"mcvs": [[16137], [15875], [15876]], "row_count": 264, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [16137], "distinct_count": 264}, {"mcvs": [[16423], [16139], [16140]], "row_count": 286, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [16423], "distinct_count": 286}, {"mcvs": [[16742], [16425], [16426]], "row_count": 319, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [16742], "distinct_count": 319}, {"mcvs": [[17010], [16744], [16745]], "row_count": 268, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [17010], "distinct_count": 268}, {"mcvs": [[17328], [17012], [17013]], "row_count": 318, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [17328], "distinct_count": 318}, {"mcvs": [[17484], [17330], [17331]], "row_count": 156, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [17484], "distinct_count": 156}, {"mcvs": [[17819], [17486], [17487]], "row_count": 335, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [17819], "distinct_count": 335}, {"mcvs": [[18003], [17821], [17822]], "row_count": 184, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [18003], "distinct_count": 184}, {"mcvs": [[18254], [18005], [18006]], "row_count": 251, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [18254], "distinct_count": 251}, {"mcvs": [[18579], [18256], [18257]], "row_count": 325, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [18579], "distinct_count": 325}, {"mcvs": [[18889], [18581], [18582]], "row_count": 310, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [18889], "distinct_count": 310}, {"mcvs": [[19277], [18891], [18892]], "row_count": 388, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [19277], "distinct_count": 388}, {"mcvs": [[19638], [19279], [19280]], "row_count": 361, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [19638], "distinct_count": 361}, {"mcvs": [[19923], [19640], [19641]], "row_count": 285, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [19923], "distinct_count": 285}, {"mcvs": [[20150], [19925], [19926]], "row_count": 227, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [20150], "distinct_count": 227}, {"mcvs": [[20467], [20152], [20153]], "row_count": 317, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [20467], "distinct_count": 317}, {"mcvs": [[20552], [20469], [20470]], "row_count": 85, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [20552], "distinct_count": 85}, {"mcvs": [[20634], [20554], [20555]], "row_count": 82, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [20634], "distinct_count": 82}, {"mcvs": [[20848], [20636], [20637]], "row_count": 214, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [20848], "distinct_count": 214}, {"mcvs": [[21132], [20850], [20851]], "row_count": 284, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [21132], "distinct_count": 284}, {"mcvs": [[21319], [21134], [21135]], "row_count": 187, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [21319], "distinct_count": 187}, {"mcvs": [[21779], [21321], [21322]], "row_count": 460, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [21779], "distinct_count": 460}, {"mcvs": [[22000], [21781], [21782]], "row_count": 221, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [22000], "distinct_count": 221}, {"mcvs": [[22387], [22002], [22003]], "row_count": 387, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [22387], "distinct_count": 387}, {"mcvs": [[22662], [22389], [22390]], "row_count": 275, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [22662], "distinct_count": 275}, {"mcvs": [[23169], [22664], [22665]], "row_count": 507, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [23169], "distinct_count": 507}, {"mcvs": [[23581], [23171], [23172]], "row_count": 412, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [23581], "distinct_count": 412}, {"mcvs": [[23929], [23583], [23584]], "row_count": 348, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [23929], "distinct_count": 348}, {"mcvs": [[24283], [23931], [23932]], "row_count": 354, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [24283], "distinct_count": 354}, {"mcvs": [[24573], [24285], [24286]], "row_count": 290, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [24573], "distinct_count": 290}, {"mcvs": [[24863], [24575], [24576]], "row_count": 290, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [24863], "distinct_count": 290}, {"mcvs": [[25365], [24865], [24866]], "row_count": 502, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [25365], "distinct_count": 502}, {"mcvs": [[25476], [25367], [25368]], "row_count": 111, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [25476], "distinct_count": 111}, {"mcvs": [[25908], [25478], [25479]], "row_count": 432, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [25908], "distinct_count": 432}, {"mcvs": [[26360], [25910], [25911]], "row_count": 452, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [26360], "distinct_count": 452}, {"mcvs": [[26783], [26362], [26363]], "row_count": 423, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [26783], "distinct_count": 423}, {"mcvs": [[27033], [26785], [26786]], "row_count": 250, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [27033], "distinct_count": 250}, {"mcvs": [[27346], [27035], [27036]], "row_count": 313, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [27346], "distinct_count": 313}, {"mcvs": [[27564], [27348], [27349]], "row_count": 218, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [27564], "distinct_count": 218}, {"mcvs": [[27850], [27566], [27567]], "row_count": 286, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [27850], "distinct_count": 286}, {"mcvs": [[28268], [27852], [27853]], "row_count": 418, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [28268], "distinct_count": 418}, {"mcvs": [[28501], [28270], [28271]], "row_count": 233, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [28501], "distinct_count": 233}, {"mcvs": [[28601], [28503], [28504]], "row_count": 100, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [28601], "distinct_count": 100}, {"mcvs": [[28800], [28603], [28604]], "row_count": 199, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [28800], "distinct_count": 199}, {"mcvs": [[29069], [28802], [28803]], "row_count": 269, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [29069], "distinct_count": 269}, {"mcvs": [[29456], [29071], [29072]], "row_count": 387, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [29456], "distinct_count": 387}, {"mcvs": [[29856], [29458], [29459]], "row_count": 400, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [29856], "distinct_count": 400}, {"mcvs": [[30240], [29858], [29859]], "row_count": 384, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [30240], "distinct_count": 384}, {"mcvs": [[30615], [30242], [30243]], "row_count": 375, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [30615], "distinct_count": 375}, {"mcvs": [[31004], [30617], [30618]], "row_count": 389, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [31004], "distinct_count": 389}, {"mcvs": [[31317], [31006], [31007]], "row_count": 313, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [31317], "distinct_count": 313}, {"mcvs": [[31631], [31319], [31320]], "row_count": 314, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [31631], "distinct_count": 314}, {"mcvs": [[31812], [31633], [31634]], "row_count": 181, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [31812], "distinct_count": 181}, {"mcvs": [[31994], [31814], [31815]], "row_count": 182, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [31994], "distinct_count": 182}, {"mcvs": [[32179], [31996], [31997]], "row_count": 185, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [32179], "distinct_count": 185}, {"mcvs": [[32448], [32181], [32182]], "row_count": 269, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [32448], "distinct_count": 269}, {"mcvs": [[32919], [32450], [32451]], "row_count": 471, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [32919], "distinct_count": 471}, {"mcvs": [[33303], [32921], [32922]], "row_count": 384, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [33303], "distinct_count": 384}, {"mcvs": [[33565], [33305], [33306]], "row_count": 262, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [33565], "distinct_count": 262}, {"mcvs": [[33892], [33567], [33568]], "row_count": 327, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [33892], "distinct_count": 327}, {"mcvs": [[34310], [33894], [33895]], "row_count": 418, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [34310], "distinct_count": 418}, {"mcvs": [[34653], [34312], [34313]], "row_count": 343, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [34653], "distinct_count": 343}, {"mcvs": [[35143], [34655], [34656]], "row_count": 490, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [35143], "distinct_count": 490}, {"mcvs": [[35504], [35145], [35146]], "row_count": 361, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [35504], "distinct_count": 361}, {"mcvs": [[35770], [35506], [35507]], "row_count": 266, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [35770], "distinct_count": 266}, {"mcvs": [[35984], [35772], [35773]], "row_count": 214, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [35984], "distinct_count": 214}, {"mcvs": [[36468], [35986], [35987]], "row_count": 484, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [36468], "distinct_count": 484}, {"mcvs": [[36708], [36470], [36471]], "row_count": 240, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [36708], "distinct_count": 240}, {"mcvs": [[37135], [36710], [36711]], "row_count": 427, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [37135], "distinct_count": 427}, {"mcvs": [[37485], [37137], [37138]], "row_count": 350, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [37485], "distinct_count": 350}, {"mcvs": [[37613], [37487], [37488]], "row_count": 128, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [37613], "distinct_count": 128}, {"mcvs": [[37874], [37615], [37616]], "row_count": 261, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [37874], "distinct_count": 261}, {"mcvs": [[38179], [37876], [37877]], "row_count": 305, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [38179], "distinct_count": 305}, {"mcvs": [[38645], [38181], [38182]], "row_count": 466, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [38645], "distinct_count": 466}, {"mcvs": [[38877], [38647], [38648]], "row_count": 232, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [38877], "distinct_count": 232}, {"mcvs": [[39102], [38879], [38880]], "row_count": 225, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [39102], "distinct_count": 225}, {"mcvs": [[39264], [39104], [39105]], "row_count": 162, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [39264], "distinct_count": 162}, {"mcvs": [[39678], [39266], [39267]], "row_count": 414, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [39678], "distinct_count": 414}, {"mcvs": [[39880], [39680], [39681]], "row_count": 202, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [39880], "distinct_count": 202}, {"mcvs": [[40135], [39882], [39883]], "row_count": 255, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [40135], "distinct_count": 255}, {"mcvs": [[40502], [40137], [40138]], "row_count": 367, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [40502], "distinct_count": 367}, {"mcvs": [[40770], [40504], [40505]], "row_count": 268, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [40770], "distinct_count": 268}, {"mcvs": [[40956], [40772], [40773]], "row_count": 186, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [40956], "distinct_count": 186}, {"mcvs": [[41406], [40958], [40959]], "row_count": 450, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [41406], "distinct_count": 450}, {"mcvs": [[41824], [41408], [41409]], "row_count": 418, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [41824], "distinct_count": 418}, {"mcvs": [[41986], [41826], [41827]], "row_count": 162, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [41986], "distinct_count": 162}, {"mcvs": [[42339], [41988], [41989]], "row_count": 353, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [42339], "distinct_count": 353}, {"mcvs": [[42709], [42341], [42342]], "row_count": 370, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [42709], "distinct_count": 370}, {"mcvs": [[42848], [42711], [42712]], "row_count": 139, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [42848], "distinct_count": 139}, {"mcvs": [[43136], [42850], [42851]], "row_count": 288, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [43136], "distinct_count": 288}, {"mcvs": [[43328], [43138], [43139]], "row_count": 192, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [43328], "distinct_count": 192}, {"mcvs": [[43487], [43330], [43331]], "row_count": 159, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [43487], "distinct_count": 159}, {"mcvs": [[43715], [43489], [43490]], "row_count": 228, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [43715], "distinct_count": 228}, {"mcvs": [[44058], [43717], [43718]], "row_count": 343, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [44058], "distinct_count": 343}, {"mcvs": [[44514], [44060], [44061]], "row_count": 456, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [44514], "distinct_count": 456}, {"mcvs": [[44760], [44516], [44517]], "row_count": 246, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [44760], "distinct_count": 246}, {"mcvs": [[45128], [44762], [44763]], "row_count": 368, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [45128], "distinct_count": 368}, {"mcvs": [[45469], [45130], [45131]], "row_count": 341, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [45469], "distinct_count": 341}, {"mcvs": [[45731], [45471], [45472]], "row_count": 262, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [45731], "distinct_count": 262}, {"mcvs": [[45853], [45733], [45734]], "row_count": 122, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [45853], "distinct_count": 122}, {"mcvs": [[46175], [45855], [45856]], "row_count": 322, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [46175], "distinct_count": 322}, {"mcvs": [[46403], [46177], [46178]], "row_count": 228, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [46403], "distinct_count": 228}, {"mcvs": [[46814], [46405], [46406]], "row_count": 411, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [46814], "distinct_count": 411}, {"mcvs": [[47031], [46816], [46817]], "row_count": 217, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [47031], "distinct_count": 217}, {"mcvs": [[47455], [47033], [47034]], "row_count": 424, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [47455], "distinct_count": 424}, {"mcvs": [[47923], [47457], [47458]], "row_count": 468, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [47923], "distinct_count": 468}, {"mcvs": [[48150], [47925], [47926]], "row_count": 227, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [48150], "distinct_count": 227}, {"mcvs": [[48514], [48152], [48153]], "row_count": 364, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [48514], "distinct_count": 364}, {"mcvs": [[48739], [48516], [48517]], "row_count": 225, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [48739], "distinct_count": 225}, {"mcvs": [[48933], [48741], [48742]], "row_count": 194, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [48933], "distinct_count": 194}, {"mcvs": [[49270], [48935], [48936]], "row_count": 337, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [49270], "distinct_count": 337}, {"mcvs": [[49570], [49272], [49273]], "row_count": 300, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [49570], "distinct_count": 300}, {"mcvs": [[49993], [49572], [49573]], "row_count": 423, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [49993], "distinct_count": 423}, {"mcvs": [[50422], [49995], [49996]], "row_count": 429, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [50422], "distinct_count": 429}, {"mcvs": [[50714], [50424], [50425]], "row_count": 292, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [50714], "distinct_count": 292}, {"mcvs": [[50958], [50716], [50717]], "row_count": 244, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [50958], "distinct_count": 244}, {"mcvs": [[51342], [50960], [50961]], "row_count": 384, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [51342], "distinct_count": 384}, {"mcvs": [[51577], [51344], [51345]], "row_count": 235, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [51577], "distinct_count": 235}, {"mcvs": [[51826], [51579], [51580]], "row_count": 249, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [51826], "distinct_count": 249}, {"mcvs": [[52243], [51828], [51829]], "row_count": 417, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [52243], "distinct_count": 417}, {"mcvs": [[52543], [52245], [52246]], "row_count": 300, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [52543], "distinct_count": 300}, {"mcvs": [[52826], [52545], [52546]], "row_count": 283, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [52826], "distinct_count": 283}, {"mcvs": [[53080], [52828], [52829]], "row_count": 254, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [53080], "distinct_count": 254}, {"mcvs": [[53269], [53082], [53083]], "row_count": 189, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [53269], "distinct_count": 189}, {"mcvs": [[53593], [53271], [53272]], "row_count": 324, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [53593], "distinct_count": 324}, {"mcvs": [[54028], [53595], [53596]], "row_count": 435, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [54028], "distinct_count": 435}, {"mcvs": [[54297], [54030], [54031]], "row_count": 269, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [54297], "distinct_count": 269}, {"mcvs": [[54633], [54299], [54300]], "row_count": 336, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [54633], "distinct_count": 336}, {"mcvs": [[54869], [54635], [54636]], "row_count": 236, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [54869], "distinct_count": 236}, {"mcvs": [[55158], [54871], [54872]], "row_count": 289, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [55158], "distinct_count": 289}, {"mcvs": [[55480], [55160], [55161]], "row_count": 322, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [55480], "distinct_count": 322}, {"mcvs": [[55863], [55482], [55483]], "row_count": 383, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [55863], "distinct_count": 383}, {"mcvs": [[56235], [55865], [55866]], "row_count": 372, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [56235], "distinct_count": 372}, {"mcvs": [[56479], [56237], [56238]], "row_count": 244, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [56479], "distinct_count": 244}, {"mcvs": [[56588], [56481], [56482]], "row_count": 109, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [56588], "distinct_count": 109}, {"mcvs": [[56874], [56590], [56591]], "row_count": 286, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [56874], "distinct_count": 286}, {"mcvs": [[57290], [56876], [56877]], "row_count": 416, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [57290], "distinct_count": 416}, {"mcvs": [[57782], [57292], [57293]], "row_count": 492, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [57782], "distinct_count": 492}, {"mcvs": [[58148], [57784], [57785]], "row_count": 366, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [58148], "distinct_count": 366}, {"mcvs": [[58461], [58150], [58151]], "row_count": 313, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [58461], "distinct_count": 313}, {"mcvs": [[58764], [58463], [58464]], "row_count": 303, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [58764], "distinct_count": 303}, {"mcvs": [[58984], [58766], [58767]], "row_count": 220, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [58984], "distinct_count": 220}, {"mcvs": [[59333], [58986], [58987]], "row_count": 349, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [59333], "distinct_count": 349}, {"mcvs": [[59608], [59335], [59336]], "row_count": 275, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [59608], "distinct_count": 275}, {"mcvs": [[59921], [59610], [59611]], "row_count": 313, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [59921], "distinct_count": 313}, {"mcvs": [[60236], [59923], [59924]], "row_count": 315, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [60236], "distinct_count": 315}, {"mcvs": [[60586], [60238], [60239]], "row_count": 350, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [60586], "distinct_count": 350}, {"mcvs": [[60922], [60588], [60589]], "row_count": 336, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [60922], "distinct_count": 336}, {"mcvs": [[61386], [60924], [60925]], "row_count": 464, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [61386], "distinct_count": 464}, {"mcvs": [[61687], [61388], [61389]], "row_count": 301, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [61687], "distinct_count": 301}, {"mcvs": [[62025], [61689], [61690]], "row_count": 338, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [62025], "distinct_count": 338}, {"mcvs": [[62242], [62027], [62028]], "row_count": 217, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [62242], "distinct_count": 217}, {"mcvs": [[62520], [62244], [62245]], "row_count": 278, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [62520], "distinct_count": 278}, {"mcvs": [[62828], [62522], [62523]], "row_count": 308, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [62828], "distinct_count": 308}, {"mcvs": [[63235], [62830], [62831]], "row_count": 407, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [63235], "distinct_count": 407}, {"mcvs": [[63534], [63237], [63238]], "row_count": 299, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [63534], "distinct_count": 299}, {"mcvs": [[63732], [63536], [63537]], "row_count": 198, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [63732], "distinct_count": 198}, {"mcvs": [[64032], [63734], [63735]], "row_count": 300, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [64032], "distinct_count": 300}, {"mcvs": [[64441], [64034], [64035]], "row_count": 409, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [64441], "distinct_count": 409}, {"mcvs": [[64784], [64443], [64444]], "row_count": 343, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [64784], "distinct_count": 343}, {"mcvs": [[65070], [64786], [64787]], "row_count": 286, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [65070], "distinct_count": 286}, {"mcvs": [[65450], [65072], [65073]], "row_count": 380, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [65450], "distinct_count": 380}, {"mcvs": [[65743], [65452], [65453]], "row_count": 293, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [65743], "distinct_count": 293}, {"mcvs": [[65968], [65745], [65746]], "row_count": 225, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [65968], "distinct_count": 225}, {"mcvs": [[66083], [65970], [65971]], "row_count": 115, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [66083], "distinct_count": 115}, {"mcvs": [[66438], [66085], [66086]], "row_count": 355, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [66438], "distinct_count": 355}, {"mcvs": [[66929], [66440], [66441]], "row_count": 491, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [66929], "distinct_count": 491}, {"mcvs": [[67206], [66931], [66932]], "row_count": 277, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [67206], "distinct_count": 277}, {"mcvs": [[67561], [67208], [67209]], "row_count": 355, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [67561], "distinct_count": 355}, {"mcvs": [[67835], [67563], [67564]], "row_count": 274, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [67835], "distinct_count": 274}, {"mcvs": [[68142], [67837], [67838]], "row_count": 307, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [68142], "distinct_count": 307}, {"mcvs": [[68491], [68144], [68145]], "row_count": 349, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [68491], "distinct_count": 349}, {"mcvs": [[68801], [68493], [68494]], "row_count": 310, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [68801], "distinct_count": 310}, {"mcvs": [[69201], [68803], [68804]], "row_count": 400, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [69201], "distinct_count": 400}, {"mcvs": [[69542], [69203], [69204]], "row_count": 341, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [69542], "distinct_count": 341}, {"mcvs": [[69697], [69544], [69545]], "row_count": 155, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [69697], "distinct_count": 155}, {"mcvs": [[69888], [69699], [69700]], "row_count": 191, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [69888], "distinct_count": 191}, {"mcvs": [[70257], [69890], [69891]], "row_count": 369, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [70257], "distinct_count": 369}, {"mcvs": [[70597], [70259], [70260]], "row_count": 340, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [70597], "distinct_count": 340}, {"mcvs": [[70858], [70599], [70600]], "row_count": 261, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [70858], "distinct_count": 261}, {"mcvs": [[71273], [70860], [70861]], "row_count": 415, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [71273], "distinct_count": 415}, {"mcvs": [[71565], [71275], [71276]], "row_count": 292, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [71565], "distinct_count": 292}, {"mcvs": [[72187], [71567], [71568]], "row_count": 622, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [72187], "distinct_count": 622}, {"mcvs": [[72606], [72189], [72190]], "row_count": 419, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [72606], "distinct_count": 419}, {"mcvs": [[73042], [72608], [72609]], "row_count": 436, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [73042], "distinct_count": 436}, {"mcvs": [[73434], [73044], [73045]], "row_count": 392, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [73434], "distinct_count": 392}, {"mcvs": [[73909], [73436], [73437]], "row_count": 475, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [73909], "distinct_count": 475}, {"mcvs": [[74202], [73911], [73912]], "row_count": 293, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [74202], "distinct_count": 293}, {"mcvs": [[74533], [74204], [74205]], "row_count": 331, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [74533], "distinct_count": 331}, {"mcvs": [[74708], [74535], [74536]], "row_count": 175, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [74708], "distinct_count": 175}, {"mcvs": [[75113], [74710], [74711]], "row_count": 405, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [75113], "distinct_count": 405}, {"mcvs": [[75386], [75115], [75116]], "row_count": 273, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [75386], "distinct_count": 273}, {"mcvs": [[75808], [75388], [75389]], "row_count": 422, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [75808], "distinct_count": 422}, {"mcvs": [[76037], [75810], [75811]], "row_count": 229, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [76037], "distinct_count": 229}, {"mcvs": [[76389], [76039], [76040]], "row_count": 352, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [76389], "distinct_count": 352}, {"mcvs": [[76610], [76391], [76392]], "row_count": 221, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [76610], "distinct_count": 221}, {"mcvs": [[76924], [76612], [76613]], "row_count": 314, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [76924], "distinct_count": 314}, {"mcvs": [[77299], [76926], [76927]], "row_count": 375, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [77299], "distinct_count": 375}, {"mcvs": [[77631], [77301], [77302]], "row_count": 332, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [77631], "distinct_count": 332}, {"mcvs": [[77898], [77633], [77634]], "row_count": 267, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [77898], "distinct_count": 267}, {"mcvs": [[78244], [77900], [77901]], "row_count": 346, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [78244], "distinct_count": 346}, {"mcvs": [[78565], [78246], [78247]], "row_count": 321, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [78565], "distinct_count": 321}, {"mcvs": [[78883], [78567], [78568]], "row_count": 318, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [78883], "distinct_count": 318}, {"mcvs": [[79122], [78885], [78886]], "row_count": 239, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [79122], "distinct_count": 239}, {"mcvs": [[79534], [79124], [79125]], "row_count": 412, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [79534], "distinct_count": 412}, {"mcvs": [[79853], [79536], [79537]], "row_count": 319, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [79853], "distinct_count": 319}, {"mcvs": [[80230], [79855], [79856]], "row_count": 377, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [80230], "distinct_count": 377}, {"mcvs": [[80504], [80232], [80233]], "row_count": 274, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [80504], "distinct_count": 274}, {"mcvs": [[80731], [80506], [80507]], "row_count": 227, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [80731], "distinct_count": 227}, {"mcvs": [[81120], [80733], [80734]], "row_count": 389, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [81120], "distinct_count": 389}, {"mcvs": [[81258], [81122], [81123]], "row_count": 138, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [81258], "distinct_count": 138}, {"mcvs": [[81408], [81260], [81261]], "row_count": 150, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [81408], "distinct_count": 150}, {"mcvs": [[81821], [81410], [81411]], "row_count": 413, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [81821], "distinct_count": 413}, {"mcvs": [[82069], [81823], [81824]], "row_count": 248, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [82069], "distinct_count": 248}, {"mcvs": [[82190], [82071], [82072]], "row_count": 121, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [82190], "distinct_count": 121}, {"mcvs": [[82419], [82192], [82193]], "row_count": 229, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [82419], "distinct_count": 229}, {"mcvs": [[82595], [82421], [82422]], "row_count": 176, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [82595], "distinct_count": 176}, {"mcvs": [[82982], [82597], [82598]], "row_count": 387, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [82982], "distinct_count": 387}, {"mcvs": [[83302], [82984], [82985]], "row_count": 320, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [83302], "distinct_count": 320}, {"mcvs": [[83601], [83304], [83305]], "row_count": 299, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [83601], "distinct_count": 299}, {"mcvs": [[83847], [83603], [83604]], "row_count": 246, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [83847], "distinct_count": 246}, {"mcvs": [[84156], [83849], [83850]], "row_count": 309, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [84156], "distinct_count": 309}, {"mcvs": [[84242], [84158], [84159]], "row_count": 86, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [84242], "distinct_count": 86}, {"mcvs": [[84426], [84244], [84245]], "row_count": 184, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [84426], "distinct_count": 184}, {"mcvs": [[84615], [84428], [84429]], "row_count": 189, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [84615], "distinct_count": 189}, {"mcvs": [[84881], [84617], [84618]], "row_count": 266, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [84881], "distinct_count": 266}, {"mcvs": [[85148], [84883], [84884]], "row_count": 267, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [85148], "distinct_count": 267}, {"mcvs": [[85366], [85150], [85151]], "row_count": 218, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [85366], "distinct_count": 218}, {"mcvs": [[85671], [85368], [85369]], "row_count": 305, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [85671], "distinct_count": 305}, {"mcvs": [[85874], [85673], [85674]], "row_count": 203, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [85874], "distinct_count": 203}, {"mcvs": [[86015], [85876], [85877]], "row_count": 141, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [86015], "distinct_count": 141}, {"mcvs": [[86507], [86017], [86018]], "row_count": 492, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [86507], "distinct_count": 492}, {"mcvs": [[86807], [86509], [86510]], "row_count": 300, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [86807], "distinct_count": 300}, {"mcvs": [[87302], [86809], [86810]], "row_count": 495, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [87302], "distinct_count": 495}, {"mcvs": [[87716], [87304], [87305]], "row_count": 414, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [87716], "distinct_count": 414}, {"mcvs": [[88034], [87718], [87719]], "row_count": 318, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [88034], "distinct_count": 318}, {"mcvs": [[88349], [88036], [88037]], "row_count": 315, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [88349], "distinct_count": 315}, {"mcvs": [[88679], [88351], [88352]], "row_count": 330, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [88679], "distinct_count": 330}, {"mcvs": [[89016], [88681], [88682]], "row_count": 337, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [89016], "distinct_count": 337}, {"mcvs": [[89280], [89018], [89019]], "row_count": 264, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [89280], "distinct_count": 264}, {"mcvs": [[89667], [89282], [89283]], "row_count": 387, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [89667], "distinct_count": 387}, {"mcvs": [[90007], [89669], [89670]], "row_count": 340, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [90007], "distinct_count": 340}, {"mcvs": [[90221], [90009], [90010]], "row_count": 214, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [90221], "distinct_count": 214}, {"mcvs": [[90592], [90223], [90224]], "row_count": 371, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [90592], "distinct_count": 371}, {"mcvs": [[90937], [90594], [90595]], "row_count": 345, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [90937], "distinct_count": 345}, {"mcvs": [[91214], [90939], [90940]], "row_count": 277, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [91214], "distinct_count": 277}, {"mcvs": [[91591], [91216], [91217]], "row_count": 377, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [91591], "distinct_count": 377}, {"mcvs": [[91870], [91593], [91594]], "row_count": 279, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [91870], "distinct_count": 279}, {"mcvs": [[92256], [91872], [91873]], "row_count": 386, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [92256], "distinct_count": 386}, {"mcvs": [[92667], [92258], [92259]], "row_count": 411, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [92667], "distinct_count": 411}, {"mcvs": [[92916], [92669], [92670]], "row_count": 249, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [92916], "distinct_count": 249}, {"mcvs": [[93134], [92918], [92919]], "row_count": 218, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [93134], "distinct_count": 218}, {"mcvs": [[93568], [93136], [93137]], "row_count": 434, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [93568], "distinct_count": 434}, {"mcvs": [[93873], [93570], [93571]], "row_count": 305, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [93873], "distinct_count": 305}, {"mcvs": [[94103], [93875], [93876]], "row_count": 230, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [94103], "distinct_count": 230}, {"mcvs": [[94344], [94105], [94106]], "row_count": 241, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [94344], "distinct_count": 241}, {"mcvs": [[94577], [94346], [94347]], "row_count": 233, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [94577], "distinct_count": 233}, {"mcvs": [[94956], [94579], [94580]], "row_count": 379, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [94956], "distinct_count": 379}, {"mcvs": [[95191], [94958], [94959]], "row_count": 235, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [95191], "distinct_count": 235}, {"mcvs": [[95525], [95193], [95194]], "row_count": 334, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [95525], "distinct_count": 334}, {"mcvs": [[95892], [95527], [95528]], "row_count": 367, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [95892], "distinct_count": 367}, {"mcvs": [[96178], [95894], [95895]], "row_count": 286, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [96178], "distinct_count": 286}, {"mcvs": [[96501], [96180], [96181]], "row_count": 323, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [96501], "distinct_count": 323}, {"mcvs": [[96913], [96503], [96504]], "row_count": 412, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [96913], "distinct_count": 412}, {"mcvs": [[97192], [96915], [96916]], "row_count": 279, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [97192], "distinct_count": 279}, {"mcvs": [[97513], [97194], [97195]], "row_count": 321, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [97513], "distinct_count": 321}, {"mcvs": [[97826], [97515], [97516]], "row_count": 313, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [97826], "distinct_count": 313}, {"mcvs": [[98130], [97828], [97829]], "row_count": 304, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [98130], "distinct_count": 304}, {"mcvs": [[98405], [98132], [98133]], "row_count": 275, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [98405], "distinct_count": 275}, {"mcvs": [[98642], [98407], [98408]], "row_count": 237, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [98642], "distinct_count": 237}, {"mcvs": [[98836], [98644], [98645]], "row_count": 194, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [98836], "distinct_count": 194}, {"mcvs": [[99139], [98838], [98839]], "row_count": 303, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [99139], "distinct_count": 303}, {"mcvs": [[99323], [99141], [99142]], "row_count": 184, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [99323], "distinct_count": 184}, {"mcvs": [[99608], [99325], [99326]], "row_count": 285, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [99608], "distinct_count": 285}, {"mcvs": [[99948], [99610], [99611]], "row_count": 340, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [99948], "distinct_count": 340}, {"mcvs": [[100000], [99950], [99951]], "row_count": 52, "mcv_counts": [1, 1, 1], "null_count": 0, "bound_count": 1, "upper_bound": [100000], "distinct_count": 52}], "columns": ["s_i_id"], "avg_size": 0, "qualifier": {"database": "sbt", "table": "stock2", "index": "fkey_stock_22"}, "row_count": 100000, "created_at": "2023-11-10T15:06:20-08:00", "null_count": 100000, "distinct_count": 100000}';`,
`analyze table warehouse2 update histogram on w_id using data '{"types": ["smallint"], "buckets": [{"mcvs": [[1]], "row_count": 1, "mcv_counts": [1], "null_count": 0, "bound_count": 1, "upper_bound": [1], "distinct_count": 1}], "columns": ["w_id"], "avg_size": 0, "qualifier": {"database": "sbt", "table": "warehouse2", "index": "primary"}, "row_count": 1, "created_at": "2023-11-10T15:06:21-08:00", "null_count": 1, "distinct_count": 1}';`,
}}
View Source
var TpcdsData = []SetupScript{{
`create table catalog_returns (
cr_returned_date_sk bigint,
cr_returned_time_sk bigint,
cr_item_sk bigint not null,
cr_refunded_customer_sk bigint,
cr_refunded_cdemo_sk bigint,
cr_refunded_hdemo_sk bigint,
cr_refunded_addr_sk bigint,
cr_returning_customer_sk bigint,
cr_returning_cdemo_sk bigint,
cr_returning_hdemo_sk bigint,
cr_returning_addr_sk bigint,
cr_call_center_sk bigint,
cr_catalog_page_sk bigint ,
cr_ship_mode_sk bigint ,
cr_warehouse_sk bigint ,
cr_reason_sk bigint ,
cr_order_number bigint not null primary key,
cr_return_quantity int,
cr_return_amount decimal(7,2),
cr_return_tax decimal(7,2),
cr_return_amt_inc_tax decimal(7,2),
cr_fee decimal(7,2),
cr_return_ship_cost decimal(7,2),
cr_refunded_cash decimal(7,2),
cr_reversed_charge decimal(7,2),
cr_store_credit decimal(7,2),
cr_net_loss decimal(7,2)
);`,
`create table catalog_sales (
cs_sold_date_sk bigint,
cs_sold_time_sk bigint,
cs_ship_date_sk bigint,
cs_bill_customer_sk bigint,
cs_bill_cdemo_sk bigint,
cs_bill_hdemo_sk bigint,
cs_bill_addr_sk bigint,
cs_ship_customer_sk bigint,
cs_ship_cdemo_sk bigint,
cs_ship_hdemo_sk bigint,
cs_ship_addr_sk bigint,
cs_call_center_sk bigint,
cs_catalog_page_sk bigint,
cs_ship_mode_sk bigint,
cs_warehouse_sk bigint,
cs_item_sk bigint not null,
cs_promo_sk bigint,
cs_order_number bigint not null primary key,
cs_quantity int,
cs_wholesale_cost decimal(7,2),
cs_list_price decimal(7,2),
cs_sales_price decimal(7,2),
cs_ext_discount_amt decimal(7,2),
cs_ext_sales_price decimal(7,2),
cs_ext_wholesale_cost decimal(7,2),
cs_ext_list_price decimal(7,2),
cs_ext_tax decimal(7,2),
cs_coupon_amt decimal(7,2),
cs_ext_ship_cost decimal(7,2),
cs_net_paid decimal(7,2),
cs_net_paid_inc_tax decimal(7,2),
cs_net_paid_inc_ship decimal(7,2),
cs_net_paid_inc_ship_tax decimal(7,2),
cs_net_profit decimal(7,2)
);`,
`create table inventory (
inv_date_sk bigint not null,
inv_item_sk bigint not null,
inv_warehouse_sk bigint not null,
inv_quantity_on_hand int,
primary key (inv_date_sk, inv_item_sk, inv_warehouse_sk)
);`,
`create table store_returns (
sr_returned_date_sk bigint,
sr_return_time_sk bigint,
sr_item_sk bigint not null,
sr_customer_sk bigint,
sr_cdemo_sk bigint,
sr_hdemo_sk bigint,
sr_addr_sk bigint,
sr_store_sk bigint,
sr_reason_sk bigint,
sr_ticket_number bigint not null primary key,
sr_return_quantity int,
sr_return_amt decimal(7,2),
sr_return_tax decimal(7,2),
sr_return_amt_inc_tax decimal(7,2),
sr_fee decimal(7,2),
sr_return_ship_cost decimal(7,2),
sr_refunded_cash decimal(7,2),
sr_reversed_charge decimal(7,2),
sr_store_credit decimal(7,2),
sr_net_loss decimal(7,2)
);`,
`create table store_sales (
ss_sold_date_sk bigint,
ss_sold_time_sk bigint,
ss_item_sk bigint not null,
ss_customer_sk bigint,
ss_cdemo_sk bigint,
ss_hdemo_sk bigint,
ss_addr_sk bigint,
ss_store_sk bigint,
ss_promo_sk bigint,
ss_ticket_number bigint not null primary key,
ss_quantity int,
ss_wholesale_cost decimal(7,2),
ss_list_price decimal(7,2),
ss_sales_price decimal(7,2),
ss_ext_discount_amt decimal(7,2),
ss_ext_sales_price decimal(7,2),
ss_ext_wholesale_cost decimal(7,2),
ss_ext_list_price decimal(7,2),
ss_ext_tax decimal(7,2),
ss_coupon_amt decimal(7,2),
ss_net_paid decimal(7,2),
ss_net_paid_inc_tax decimal(7,2),
ss_net_profit decimal(7,2)
);`,
`create table web_returns (
wr_returned_date_sk bigint,
wr_returned_time_sk bigint,
wr_item_sk bigint not null,
wr_refunded_customer_sk bigint,
wr_refunded_cdemo_sk bigint,
wr_refunded_hdemo_sk bigint,
wr_refunded_addr_sk bigint,
wr_returning_customer_sk bigint,
wr_returning_cdemo_sk bigint,
wr_returning_hdemo_sk bigint,
wr_returning_addr_sk bigint,
wr_web_page_sk bigint,
wr_reason_sk bigint,
wr_order_number bigint not null,
wr_return_quantity int,
wr_return_amt decimal(7,2),
wr_return_tax decimal(7,2),
wr_return_amt_inc_tax decimal(7,2),
wr_fee decimal(7,2),
wr_return_ship_cost decimal(7,2),
wr_refunded_cash decimal(7,2),
wr_reversed_charge decimal(7,2),
wr_account_credit decimal(7,2),
wr_net_loss decimal(7,2)
);`,
`create table web_sales (
ws_sold_date_sk bigint,
ws_sold_time_sk bigint,
ws_ship_date_sk bigint,
ws_item_sk bigint not null,
ws_bill_customer_sk bigint,
ws_bill_cdemo_sk bigint,
ws_bill_hdemo_sk bigint,
ws_bill_addr_sk bigint,
ws_ship_customer_sk bigint,
ws_ship_cdemo_sk bigint,
ws_ship_hdemo_sk bigint,
ws_ship_addr_sk bigint,
ws_web_page_sk bigint,
ws_web_site_sk bigint,
ws_ship_mode_sk bigint,
ws_warehouse_sk bigint,
ws_promo_sk bigint,
ws_order_number bigint not null,
ws_quantity int,
ws_wholesale_cost decimal(7,2),
ws_list_price decimal(7,2),
ws_sales_price decimal(7,2),
ws_ext_discount_amt decimal(7,2),
ws_ext_sales_price decimal(7,2),
ws_ext_wholesale_cost decimal(7,2),
ws_ext_list_price decimal(7,2),
ws_ext_tax decimal(7,2),
ws_coupon_amt decimal(7,2),
ws_ext_ship_cost decimal(7,2),
ws_net_paid decimal(7,2),
ws_net_paid_inc_tax decimal(7,2),
ws_net_paid_inc_ship decimal(7,2),
ws_net_paid_inc_ship_tax decimal(7,2),
ws_net_profit decimal(7,2),
primary key (ws_order_number)
);`,
`create table call_center (
cc_call_center_sk bigint not null,
cc_call_center_id char(16) not null,
cc_rec_start_date date,
cc_rec_end_date date,
cc_closed_date_sk bigint,
cc_open_date_sk bigint,
cc_name varchar(50),
cc_class varchar(50),
cc_employees int,
cc_sq_ft int,
cc_hours char(20),
cc_manager varchar(40),
cc_mkt_id int,
cc_mkt_class char(50),
cc_mkt_desc varchar(100),
cc_market_manager varchar(40),
cc_division int,
cc_division_name varchar(50),
cc_company int,
cc_company_name char(50),
cc_street_number char(10),
cc_street_name varchar(60),
cc_street_type char(15),
cc_suite_number char(10),
cc_city varchar(60),
cc_county varchar(30),
cc_state char(2),
cc_zip char(10),
cc_country varchar(20),
cc_gmt_offset decimal(5,2),
cc_tax_percentage decimal(5,2),
PRIMARY key(cc_call_center_sk)
);`,
`create table catalog_page
(
cp_catalog_page_sk bigint not null,
cp_catalog_page_id varchar(16) not null,
cp_start_date_sk bigint,
cp_end_date_sk bigint,
cp_department varchar(50),
cp_catalog_number int,
cp_catalog_page_number int,
cp_description varchar(100),
cp_type varchar(100),
primary key(cp_catalog_page_sk)
);`,
`CREATE TABLE customer (
c_customer_sk bigint NOT NULL,
c_customer_id char(16) NOT NULL,
c_current_cdemo_sk bigint,
c_current_hdemo_sk bigint,
c_current_addr_sk bigint,
c_first_shipto_date_sk bigint,
c_first_sales_date_sk bigint,
c_salutation char(10),
c_first_name char(20),
c_last_name char(30),
c_preferred_cust_flag char(1),
c_birth_day int,
c_birth_month int,
c_birth_year int,
c_birth_country varchar(20),
c_login char(13),
c_email_address char(50),
c_last_review_date_sk bigint,
PRIMARY key(c_customer_sk)
);`,
`CREATE TABLE customer_address
(
ca_address_sk bigint NOT NULL,
ca_address_id varchar(16) NOT NULL,
ca_street_number varchar(10),
ca_street_name varchar(60),
ca_street_type varchar(15),
ca_suite_number varchar(10),
ca_city varchar(60),
ca_county varchar(30),
ca_state varchar(2),
ca_zip varchar(10),
ca_country varchar(20),
ca_gmt_offset decimal(5,2),
ca_location_type varchar(20),
primary key(ca_address_sk)
);`,
`create table customer_demographics (
cd_demo_sk bigint not null,
cd_gender char(1),
cd_marital_status char(1),
cd_education_status char(20),
cd_purchase_estimate int,
cd_credit_rating char(10),
cd_dep_count int,
cd_dep_employed_count int,
cd_dep_college_count int,
primary key(cd_demo_sk)
);`,
`create table date_dim (
d_date_sk bigint not null,
d_date_id char(16) not null,
d_date date,
d_month_seq int,
d_week_seq int,
d_quarter_seq int,
d_year int,
d_dow int,
d_moy int,
d_dom int,
d_qoy int,
d_fy_year int,
d_fy_quarter_seq int,
d_fy_week_seq int,
d_day_name char(9),
d_quarter_name char(6),
d_holiday char(1),
d_weekend char(1),
d_following_holiday char(1),
d_first_dom int,
d_last_dom int,
d_same_day_ly int,
d_same_day_lq int,
d_current_day char(1),
d_current_week char(1),
d_current_month char(1),
d_current_quarter char(1),
d_current_year char(1),
primary key(d_date_sk)
);`,
`create table household_demographics (
hd_demo_sk bigint not null,
hd_income_band_sk bigint,
hd_buy_potential char(15),
hd_dep_count int,
hd_vehicle_count int,
PRIMARY key(hd_demo_sk)
);`,
`create table income_band (
ib_income_band_sk bigint not null,
ib_lower_bound int,
ib_upper_bound int,
PRIMARY key(ib_income_band_sk)
);`,
`create table item (
i_item_sk bigint not null,
i_item_id char(16) not null,
i_rec_start_date date,
i_rec_end_date date,
i_item_desc varchar(200),
i_current_price decimal(7,2),
i_wholesale_cost decimal(7,2),
i_brand_id int,
i_brand char(50),
i_class_id int,
i_class char(50),
i_category_id int,
i_category char(50),
i_manufact_id int,
i_manufact char(50),
i_size char(20),
i_formulation char(20),
i_color char(20),
i_units char(10),
i_container char(10),
i_manager_id int,
i_product_name char(50),
PRIMARY key(i_item_sk)
);`,
`create table promotion (
p_promo_sk bigint not null,
p_promo_id char(16) not null,
p_start_date_sk bigint,
p_end_date_sk bigint,
p_item_sk bigint,
p_cost decimal(15,2),
p_response_target int,
p_promo_name char(50),
p_channel_dmail char(1),
p_channel_email char(1),
p_channel_catalog char(1),
p_channel_tv char(1),
p_channel_radio char(1),
p_channel_press char(1),
p_channel_event char(1),
p_channel_demo char(1),
p_channel_details varchar(100),
p_purpose char(15),
p_discount_active char(1),
PRIMARY key(p_promo_sk)
);`,
`create table reason (
r_reason_sk bigint not null,
r_reason_id char(16) not null,
r_reason_desc char(100),
PRIMARY key(r_reason_sk)
);`,
`create table ship_mode (
sm_ship_mode_sk bigint,
sm_ship_mode_id char(16) not null,
sm_type char(30),
sm_code char(10),
sm_carrier char(20),
sm_contract char(20),
primary key(sm_ship_mode_sk)
);`,
`create table store (
s_store_sk bigint not null,
s_store_id char(16) not null,
s_rec_start_date date,
s_rec_end_date date,
s_closed_date_sk bigint,
s_store_name varchar(50),
s_number_employees int,
s_floor_space int,
s_hours char(20),
s_manager varchar(40),
s_market_id int,
s_geography_class varchar(100),
s_market_desc varchar(100),
s_market_manager varchar(40),
s_division_id int,
s_division_name varchar(50),
s_company_id int,
s_company_name varchar(50),
s_street_number varchar(10),
s_street_name varchar(60),
s_street_type char(15),
s_suite_number char(10),
s_city varchar(60),
s_county varchar(30),
s_state char(2),
s_zip char(10),
s_country varchar(20),
s_gmt_offset decimal(5,2),
s_tax_percentage decimal(5,2),
PRIMARY key(s_store_sk)
);`,
`create table time_dim (
t_time_sk bigint not null,
t_time_id char(16) not null,
t_time int,
t_hour int,
t_minute int,
t_second int,
t_am_pm char(2),
t_shift char(20),
t_sub_shift char(20),
t_meal_time char(20),
primary key(t_time_sk)
);`,
`create table warehouse (
w_warehouse_sk bigint not null,
w_warehouse_id char(16) not null,
w_warehouse_name varchar(20),
w_warehouse_sq_ft int,
w_street_number char(10),
w_street_name varchar(60),
w_street_type char(15),
w_suite_number char(10),
w_city varchar(60),
w_county varchar(30),
w_state char(2),
w_zip char(10),
w_country varchar(20),
w_gmt_offset decimal(5,2),
primary key(w_warehouse_sk)
);`,
`create table web_page (
wp_web_page_sk bigint not null,
wp_web_page_id char(16) not null,
wp_rec_start_date date,
wp_rec_end_date date,
wp_creation_date_sk bigint,
wp_access_date_sk bigint,
wp_autogen_flag char(1),
wp_customer_sk bigint,
wp_url varchar(100),
wp_type char(50),
wp_char_count int,
wp_link_count int,
wp_image_count int,
wp_max_ad_count int,
PRIMARY key(wp_web_page_sk)
);`,
`create table web_site (
web_site_sk bigint not null,
web_site_id char(16) not null,
web_rec_start_date date,
web_rec_end_date date,
web_name varchar(50),
web_open_date_sk bigint,
web_close_date_sk bigint,
web_class varchar(50),
web_manager varchar(40),
web_mkt_id int,
web_mkt_class varchar(50),
web_mkt_desc varchar(100),
web_market_manager varchar(40),
web_company_id int,
web_company_name char(50),
web_street_number char(10),
web_street_name varchar(60),
web_street_type char(15),
web_suite_number char(10),
web_city varchar(60),
web_county varchar(30),
web_state char(2),
web_zip char(10),
web_country varchar(20),
web_gmt_offset decimal(5,2),
web_tax_percentage decimal(5,2),
PRIMARY key(web_site_sk)
);`,
`analyze table call_center update histogram on (cc_call_center_sk) using data '{"row_count": 6}';`,
}}
View Source
var TpchData = []SetupScript{{
`CREATE DATABASE tpch character set utf8mb4;`,
`USE tpch;`,
`CREATE TABLE nation ( N_NATIONKEY INTEGER primary key,
N_NAME CHAR(25) NOT NULL,
N_REGIONKEY INTEGER NOT NULL,
N_COMMENT VARCHAR(152));`,
`CREATE TABLE region ( R_REGIONKEY INTEGER primary key,
R_NAME CHAR(25) NOT NULL,
R_COMMENT VARCHAR(152));`,
`CREATE TABLE part ( P_PARTKEY INTEGER primary key,
P_NAME VARCHAR(55) NOT NULL,
P_MFGR CHAR(25) NOT NULL,
P_BRAND CHAR(10) NOT NULL,
P_TYPE VARCHAR(25) NOT NULL,
P_SIZE INTEGER NOT NULL,
P_CONTAINER CHAR(10) NOT NULL,
P_RETAILPRICE DECIMAL(15,2) NOT NULL,
P_COMMENT VARCHAR(23) NOT NULL );`,
`CREATE TABLE supplier ( S_SUPPKEY INTEGER primary key,
S_NAME CHAR(25) NOT NULL,
S_ADDRESS VARCHAR(40) NOT NULL,
S_NATIONKEY INTEGER NOT NULL,
S_PHONE CHAR(15) NOT NULL,
S_ACCTBAL DECIMAL(15,2) NOT NULL,
S_COMMENT VARCHAR(101) NOT NULL);`,
`CREATE TABLE partsupp ( PS_PARTKEY INTEGER NOT NULL,
PS_SUPPKEY INTEGER NOT NULL,
PS_AVAILQTY INTEGER NOT NULL,
PS_SUPPLYCOST DECIMAL(15,2) NOT NULL,
PS_COMMENT VARCHAR(199) NOT NULL, primary key (ps_partkey, ps_suppkey) );`,
`CREATE TABLE customer ( C_CUSTKEY INTEGER primary key,
C_NAME VARCHAR(25) NOT NULL,
C_ADDRESS VARCHAR(40) NOT NULL,
C_NATIONKEY INTEGER NOT NULL,
C_PHONE CHAR(15) NOT NULL,
C_ACCTBAL DECIMAL(15,2) NOT NULL,
C_MKTSEGMENT CHAR(10) NOT NULL,
C_COMMENT VARCHAR(117) NOT NULL);`,
`CREATE TABLE orders ( O_ORDERKEY INTEGER primary key,
O_CUSTKEY INTEGER NOT NULL,
O_ORDERSTATUS CHAR(1) NOT NULL,
O_TOTALPRICE DECIMAL(15,2) NOT NULL,
O_ORDERDATE DATE NOT NULL,
O_ORDERPRIORITY CHAR(15) NOT NULL,
O_CLERK CHAR(15) NOT NULL,
O_SHIPPRIORITY INTEGER NOT NULL,
O_COMMENT VARCHAR(79) NOT NULL);`,
`CREATE TABLE lineitem ( L_ORDERKEY INTEGER NOT NULL,
L_PARTKEY INTEGER NOT NULL,
L_SUPPKEY INTEGER NOT NULL,
L_LINENUMBER INTEGER NOT NULL,
L_QUANTITY DECIMAL(15,2) NOT NULL,
L_EXTENDEDPRICE DECIMAL(15,2) NOT NULL,
L_DISCOUNT DECIMAL(15,2) NOT NULL,
L_TAX DECIMAL(15,2) NOT NULL,
L_RETURNFLAG CHAR(1) NOT NULL,
L_LINESTATUS CHAR(1) NOT NULL,
L_SHIPDATE DATE NOT NULL,
L_COMMITDATE DATE NOT NULL,
L_RECEIPTDATE DATE NOT NULL,
L_SHIPINSTRUCT CHAR(25) NOT NULL,
L_SHIPMODE CHAR(10) NOT NULL,
L_COMMENT VARCHAR(44) NOT NULL,
primary key(L_ORDERKEY,L_LINENUMBER));`,
`analyze table customer update histogram on (C_CUSTKEY) using data '{"row_count": 1000}';`,
`analyze table orders update histogram on (O_ORDERKEY) using data '{"row_count": 1000}';`,
`analyze table lineitem update histogram on (L_ORDERKEY) using data '{"row_count": 1000}';`,
`analyze table nation update histogram on (N_NATIONKEY) using data '{"row_count": 1000}';`,
`analyze table part update histogram on (P_PARTKEY) using data '{"row_count": 1000}';`,
`analyze table partsupp update histogram on (PS_PARTKEY) using data '{"row_count": 1000}';`,
`analyze table region update histogram on (R_REGIONKEY) using data '{"row_count": 1000}';`,
`analyze table supplier update histogram on (S_SUPPKEY) using data '{"row_count": 1000}';`,
}}
View Source
var TypestableData = []SetupScript{{
"CREATE TABLE `typestable` ( `id` bigint NOT NULL, `i8` tinyint, `i16` smallint, `i32` int, `i64` bigint, `u8` tinyint unsigned, `u16` smallint unsigned, `u32` int unsigned, `u64` bigint unsigned, `f32` float, `f64` double, `ti` timestamp, `da` date, `te` varchar(20), `bo` tinyint, `js` json, `bl` blob, `e1` enum('', 'v1', 'v2'), `s1` set('', 'v1', 'v2'), PRIMARY KEY (`id`) )",
`insert into typestable values
(1,2,3,4,5,6,7,8,9,10.0,11.0,'2019-12-31T12:00:00Z','2019-12-31T00:00:00Z','fourteen', 0,null,null, '', '')`,
}}
View Source
var ViewsData = []SetupScript{{
`CREATE VIEW myview1 AS SELECT * FROM myhistorytable`,
`CREATE VIEW myview2 AS SELECT * FROM myview WHERE i = 1`,
}}
View Source
var XyData = []SetupScript{{
`CREATE table xy (x int primary key, y int, unique index y_idx(y));`,
`CREATE table uv (u int primary key, v int);`,
`CREATE table ab (a int primary key, b int);`,
`CREATE table pq (p int primary key, q int);`,
`CREATE table mn (m int primary key, n int);`,
`create table rs (r int primary key, s int, index s_idx(s));`,
`CREATE table xy_hasnull (x int primary key, y int);`,
`CREATE table ab_hasnull (a int primary key, b int);`,
`CREATE table xy_hasnull_idx (x int primary key, y int, index y_idx(y));`,
`insert into xy_hasnull values
(1,0),
(2,1),
(0,2),
(3,NULL);`,
`insert into ab_hasnull values
(0,2),
(1,2),
(2,NULL),
(3,1);`,
`insert into xy_hasnull_idx values
(1,0),
(2,1),
(0,2),
(3,NULL);`,
`insert into xy values
(1,0),
(2,1),
(0,2),
(3,3);`,
`insert into uv values
(0,1),
(1,1),
(2,2),
(3,2);`,
`insert into ab values
(0,2),
(1,2),
(2,2),
(3,1);`,
`insert into pq values
(0,0),
(1,1),
(2,2),
(3,3);`,
`insert into mn values
(2,0),
(3,1),
(4,2),
(5,3);`,
`insert into rs values
(0,0),
(1,0),
(2,0),
(4,4),
(5,4);`,
`analyze table ab update histogram on (a) using data '{"row_count": 1000}';`,
`analyze table ab_hasnull update histogram on (a) using data '{"row_count": 1000}';`,
`analyze table xy update histogram on (x) using data '{"row_count": 1000}';`,
`analyze table xy_hasnull update histogram on (x) using data '{"row_count": 1000}';`,
`analyze table rs update histogram on (r) using data '{"row_count": 1000}'`,
}}
Functions ¶
func NewFileSetup ¶
func NewStringSetup ¶
func NewStringSetup(s ...string) []setupSource
Types ¶
type SetupScript ¶
type SetupScript []string
Click to show internal directories.
Click to hide internal directories.